OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/strings/stringprintf.h" |
5 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h" | 6 #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h" |
6 #include "chrome/common/extensions/manifest_url_handler.h" | 7 #include "extensions/common/error_utils.h" |
| 8 #include "extensions/common/feature_switch.h" |
7 #include "extensions/common/manifest_constants.h" | 9 #include "extensions/common/manifest_constants.h" |
| 10 #include "extensions/common/manifest_handlers/options_page_info.h" |
8 #include "testing/gtest/include/gtest/gtest.h" | 11 #include "testing/gtest/include/gtest/gtest.h" |
9 | 12 |
10 namespace errors = extensions::manifest_errors; | 13 namespace errors = extensions::manifest_errors; |
11 | 14 |
| 15 using extensions::FeatureSwitch; |
| 16 using extensions::OptionsPageInfo; |
| 17 |
12 class OptionsPageManifestTest : public ExtensionManifestTest { | 18 class OptionsPageManifestTest : public ExtensionManifestTest { |
13 }; | 19 }; |
14 | 20 |
15 TEST_F(OptionsPageManifestTest, OptionsPageInApps) { | 21 TEST_F(OptionsPageManifestTest, OptionsPageInApps) { |
16 scoped_refptr<extensions::Extension> extension; | 22 scoped_refptr<extensions::Extension> extension; |
17 | |
18 // Allow options page with absolute URL in hosted apps. | 23 // Allow options page with absolute URL in hosted apps. |
19 extension = LoadAndExpectSuccess("hosted_app_absolute_options.json"); | 24 extension = LoadAndExpectSuccess("hosted_app_absolute_options.json"); |
20 EXPECT_STREQ("http", | 25 EXPECT_EQ("http://example.com/options.html", |
21 extensions::ManifestURL::GetOptionsPage(extension.get()) | 26 OptionsPageInfo::GetOptionsPage(extension.get()).spec()); |
22 .scheme().c_str()); | |
23 EXPECT_STREQ( | |
24 "example.com", | |
25 extensions::ManifestURL::GetOptionsPage(extension.get()).host().c_str()); | |
26 EXPECT_STREQ("options.html", | |
27 extensions::ManifestURL::GetOptionsPage(extension.get()) | |
28 .ExtractFileName().c_str()); | |
29 | 27 |
30 extension = LoadAndExpectSuccess("platform_app_with_options_page.json"); | 28 extension = LoadAndExpectSuccess("platform_app_with_options_page.json"); |
31 EXPECT_TRUE(extensions::ManifestURL::GetOptionsPage(extension.get()) | 29 EXPECT_TRUE(OptionsPageInfo::GetOptionsPage(extension.get()).is_empty()); |
32 .is_empty()); | |
33 | 30 |
34 Testcase testcases[] = { | 31 Testcase testcases[] = { |
35 // Forbid options page with relative URL in hosted apps. | 32 // Forbid options page with relative URL in hosted apps. |
36 Testcase("hosted_app_relative_options.json", | 33 Testcase("hosted_app_relative_options.json", |
37 errors::kInvalidOptionsPageInHostedApp), | 34 errors::kInvalidOptionsPageInHostedApp), |
38 | 35 |
39 // Forbid options page with non-(http|https) scheme in hosted app. | 36 // Forbid options page with non-(http|https) scheme in hosted app. |
40 Testcase("hosted_app_file_options.json", | 37 Testcase("hosted_app_file_options.json", |
41 errors::kInvalidOptionsPageInHostedApp), | 38 errors::kInvalidOptionsPageInHostedApp), |
42 | 39 |
43 // Forbid absolute URL for options page in packaged apps. | 40 // Forbid absolute URL for options page in packaged apps. |
44 Testcase("packaged_app_absolute_options.json", | 41 Testcase("packaged_app_absolute_options.json", |
45 errors::kInvalidOptionsPageExpectUrlInPackage) | 42 errors::kInvalidOptionsPageExpectUrlInPackage) |
46 }; | 43 }; |
47 RunTestcases(testcases, arraysize(testcases), | 44 RunTestcases(testcases, arraysize(testcases), |
48 EXPECT_TYPE_ERROR); | 45 EXPECT_TYPE_ERROR); |
49 } | 46 } |
| 47 |
| 48 // Tests for the options_ui.page manifest field |
| 49 TEST_F(OptionsPageManifestTest, OptionsUIPage) { |
| 50 scoped_ptr<FeatureSwitch::ScopedOverride> enable_flag( |
| 51 new FeatureSwitch::ScopedOverride( |
| 52 FeatureSwitch::embedded_extension_options(), true)); |
| 53 |
| 54 scoped_refptr<extensions::Extension> extension; |
| 55 |
| 56 extension = LoadAndExpectSuccess("options_ui_page_basic.json"); |
| 57 EXPECT_EQ(base::StringPrintf("chrome-extension://%s/options.html", |
| 58 extension.get()->id().c_str()), |
| 59 OptionsPageInfo::GetOptionsPage(extension.get()).spec()); |
| 60 |
| 61 extension = LoadAndExpectSuccess("options_ui_page_with_legacy_page.json"); |
| 62 EXPECT_EQ(base::StringPrintf("chrome-extension://%s/newoptions.html", |
| 63 extension.get()->id().c_str()), |
| 64 OptionsPageInfo::GetOptionsPage(extension.get()).spec()); |
| 65 |
| 66 Testcase testcases[] = {Testcase("options_ui_page_bad_url.json", |
| 67 "'page': expected page, got null")}; |
| 68 RunTestcases(testcases, arraysize(testcases), EXPECT_TYPE_WARNING); |
| 69 } |
| 70 |
| 71 // Tests for the options_ui.chrome_style and options_ui.open_in_tab fields |
| 72 TEST_F(OptionsPageManifestTest, OptionsUIChromeStyleAndOpenInTab) { |
| 73 scoped_ptr<FeatureSwitch::ScopedOverride> enable_flag( |
| 74 new FeatureSwitch::ScopedOverride( |
| 75 FeatureSwitch::embedded_extension_options(), true)); |
| 76 |
| 77 scoped_refptr<extensions::Extension> extension; |
| 78 |
| 79 extension = LoadAndExpectSuccess("options_ui_flags_true.json"); |
| 80 EXPECT_TRUE(OptionsPageInfo::ShouldUseChromeStyle(extension.get())); |
| 81 EXPECT_TRUE(OptionsPageInfo::ShouldOpenInTab(extension.get())); |
| 82 |
| 83 extension = LoadAndExpectSuccess("options_ui_flags_false.json"); |
| 84 EXPECT_FALSE(OptionsPageInfo::ShouldUseChromeStyle(extension.get())); |
| 85 EXPECT_FALSE(OptionsPageInfo::ShouldOpenInTab(extension.get())); |
| 86 |
| 87 // If chrome_style and open_in_tab are not set, they should be false |
| 88 extension = LoadAndExpectSuccess("options_ui_page_basic.json"); |
| 89 EXPECT_FALSE(OptionsPageInfo::ShouldUseChromeStyle(extension.get())); |
| 90 EXPECT_FALSE(OptionsPageInfo::ShouldOpenInTab(extension.get())); |
| 91 } |
| 92 |
| 93 // Tests for the options_ui.chrome_style and options_ui.open_in_tab fields when |
| 94 // the flag for embedded extension options is turned off. chrome_style should |
| 95 // always be false, open_in_tab should always be true. |
| 96 TEST_F(OptionsPageManifestTest, OptionsUIChromeStyleAndOpenInTabNoFlag) { |
| 97 ASSERT_FALSE(FeatureSwitch::embedded_extension_options()->IsEnabled()); |
| 98 |
| 99 scoped_refptr<extensions::Extension> extension; |
| 100 |
| 101 extension = LoadAndExpectSuccess("options_ui_flags_true.json"); |
| 102 EXPECT_FALSE(OptionsPageInfo::ShouldUseChromeStyle(extension.get())); |
| 103 EXPECT_TRUE(OptionsPageInfo::ShouldOpenInTab(extension.get())); |
| 104 |
| 105 extension = LoadAndExpectSuccess("options_ui_flags_false.json"); |
| 106 EXPECT_FALSE(OptionsPageInfo::ShouldUseChromeStyle(extension.get())); |
| 107 EXPECT_TRUE(OptionsPageInfo::ShouldOpenInTab(extension.get())); |
| 108 |
| 109 extension = LoadAndExpectSuccess("options_ui_page_basic.json"); |
| 110 EXPECT_FALSE(OptionsPageInfo::ShouldUseChromeStyle(extension.get())); |
| 111 EXPECT_TRUE(OptionsPageInfo::ShouldOpenInTab(extension.get())); |
| 112 } |
OLD | NEW |