Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1974)

Unified Diff: chrome/browser/extensions/shared_module_apitest.cc

Issue 13971005: Basic multi-module support (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix copyright for presubmit Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/shared_module_apitest.cc
diff --git a/chrome/browser/extensions/shared_module_apitest.cc b/chrome/browser/extensions/shared_module_apitest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..e10a46704e060025178a1ae033a52abba9dcb673
--- /dev/null
+++ b/chrome/browser/extensions/shared_module_apitest.cc
@@ -0,0 +1,26 @@
+// Copyright (c) 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/extensions/extension_apitest.h"
+
+using extensions::Extension;
+
+IN_PROC_BROWSER_TEST_F(ExtensionApiTest, SharedModule) {
+ // import_pass depends on this shared module.
+ // NB: We use LoadExtension instead of InstallExtension here so the public-key
+ // in 'shared' is used to generate the extension ID so it can be imported
+ // correctly. We use InstallExtension otherwise so the loads happen through
+ // the CRX installer which validates imports.
+ ASSERT_TRUE(LoadExtension(
+ test_data_dir_.AppendASCII("shared_module").AppendASCII("shared")));
+
+ EXPECT_TRUE(RunExtensionTest("shared_module/import_pass"));
+
+ EXPECT_FALSE(InstallExtension(
+ test_data_dir_.AppendASCII("shared_module")
+ .AppendASCII("import_wrong_version"), 0));
+ EXPECT_FALSE(InstallExtension(
+ test_data_dir_.AppendASCII("shared_module")
+ .AppendASCII("import_non_existent"), 0));
+}
« no previous file with comments | « chrome/browser/extensions/extension_protocols.cc ('k') | chrome/browser/renderer_host/chrome_render_view_host_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698