OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
| 5 #include "base/macros.h" |
5 #include "chrome/common/extensions/manifest_tests/chrome_manifest_test.h" | 6 #include "chrome/common/extensions/manifest_tests/chrome_manifest_test.h" |
6 #include "extensions/common/manifest_constants.h" | 7 #include "extensions/common/manifest_constants.h" |
7 #include "extensions/common/manifest_url_handlers.h" | 8 #include "extensions/common/manifest_url_handlers.h" |
8 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
9 | 10 |
10 namespace errors = extensions::manifest_errors; | 11 namespace errors = extensions::manifest_errors; |
11 | 12 |
12 class AboutPageManifestTest : public ChromeManifestTest {}; | 13 class AboutPageManifestTest : public ChromeManifestTest {}; |
13 | 14 |
14 TEST_F(AboutPageManifestTest, AboutPageInSharedModules) { | 15 TEST_F(AboutPageManifestTest, AboutPageInSharedModules) { |
15 scoped_refptr<extensions::Extension> extension; | 16 scoped_refptr<extensions::Extension> extension; |
16 extension = LoadAndExpectSuccess("shared_module_about.json"); | 17 extension = LoadAndExpectSuccess("shared_module_about.json"); |
17 EXPECT_EQ(GURL("chrome-extension://" + extension->id() + "/about.html"), | 18 EXPECT_EQ(GURL("chrome-extension://" + extension->id() + "/about.html"), |
18 extensions::ManifestURL::GetAboutPage(extension.get())); | 19 extensions::ManifestURL::GetAboutPage(extension.get())); |
19 | 20 |
20 Testcase testcases[] = { | 21 Testcase testcases[] = { |
21 // Forbid data types other than strings. | 22 // Forbid data types other than strings. |
22 Testcase("shared_module_about_invalid_type.json", | 23 Testcase("shared_module_about_invalid_type.json", |
23 errors::kInvalidAboutPage), | 24 errors::kInvalidAboutPage), |
24 | 25 |
25 // Forbid absolute URLs. | 26 // Forbid absolute URLs. |
26 Testcase("shared_module_about_absolute.json", | 27 Testcase("shared_module_about_absolute.json", |
27 errors::kInvalidAboutPageExpectRelativePath)}; | 28 errors::kInvalidAboutPageExpectRelativePath)}; |
28 RunTestcases(testcases, arraysize(testcases), EXPECT_TYPE_ERROR); | 29 RunTestcases(testcases, arraysize(testcases), EXPECT_TYPE_ERROR); |
29 } | 30 } |
OLD | NEW |