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

Side by Side Diff: chrome/browser/chrome_content_browser_client_browsertest.cc

Issue 2699973002: MD Settings: enable by default in client (Closed)
Patch Set: test fixes? Created 3 years, 10 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 unified diff | Download patch
OLDNEW
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/command_line.h" 5 #include "base/command_line.h"
6 #include "base/macros.h" 6 #include "base/macros.h"
7 #include "base/test/scoped_feature_list.h"
7 #include "build/build_config.h" 8 #include "build/build_config.h"
8 #include "chrome/browser/profiles/profile.h" 9 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/ui/browser.h" 10 #include "chrome/browser/ui/browser.h"
10 #include "chrome/browser/ui/tabs/tab_strip_model.h" 11 #include "chrome/browser/ui/tabs/tab_strip_model.h"
12 #include "chrome/common/chrome_features.h"
11 #include "chrome/common/chrome_switches.h" 13 #include "chrome/common/chrome_switches.h"
12 #include "chrome/common/pref_names.h" 14 #include "chrome/common/pref_names.h"
13 #include "chrome/common/url_constants.h" 15 #include "chrome/common/url_constants.h"
14 #include "chrome/test/base/in_process_browser_test.h" 16 #include "chrome/test/base/in_process_browser_test.h"
15 #include "chrome/test/base/ui_test_utils.h" 17 #include "chrome/test/base/ui_test_utils.h"
16 #include "components/prefs/pref_service.h" 18 #include "components/prefs/pref_service.h"
17 #include "content/public/browser/navigation_controller.h" 19 #include "content/public/browser/navigation_controller.h"
18 #include "content/public/browser/navigation_entry.h" 20 #include "content/public/browser/navigation_entry.h"
19 #include "content/public/browser/web_contents.h" 21 #include "content/public/browser/web_contents.h"
20 #include "content/public/test/browser_test_utils.h" 22 #include "content/public/test/browser_test_utils.h"
21 #include "net/test/embedded_test_server/embedded_test_server.h" 23 #include "net/test/embedded_test_server/embedded_test_server.h"
22 #include "url/gurl.h" 24 #include "url/gurl.h"
23 25
24 namespace content { 26 namespace content {
25 27
26 class ChromeContentBrowserClientBrowserTest : public InProcessBrowserTest { 28 class ChromeContentBrowserClientBrowserTest : public InProcessBrowserTest {
27 public: 29 public:
28 // Returns the last committed navigation entry of the first tab. May be NULL 30 // Returns the last committed navigation entry of the first tab. May be NULL
29 // if there is no such entry. 31 // if there is no such entry.
30 NavigationEntry* GetLastCommittedEntry() { 32 NavigationEntry* GetLastCommittedEntry() {
31 return browser()->tab_strip_model()->GetWebContentsAt(0)-> 33 return browser()->tab_strip_model()->GetWebContentsAt(0)->
32 GetController().GetLastCommittedEntry(); 34 GetController().GetLastCommittedEntry();
33 } 35 }
34 36
37 void SetUpInProcessBrowserTestFixture() override {
38 disable_md_settings_.InitAndDisableFeature(
39 features::kMaterialDesignSettings);
40 }
41
35 #if defined(OS_CHROMEOS) 42 #if defined(OS_CHROMEOS)
36 void SetUpCommandLine(base::CommandLine* command_line) override { 43 void SetUpCommandLine(base::CommandLine* command_line) override {
37 command_line->AppendSwitch(switches::kDisableSettingsWindow); 44 command_line->AppendSwitch(switches::kDisableSettingsWindow);
38 } 45 }
39 #endif 46 #endif
47
48 private:
49 base::test::ScopedFeatureList disable_md_settings_;
40 }; 50 };
41 51
42 IN_PROC_BROWSER_TEST_F(ChromeContentBrowserClientBrowserTest, 52 IN_PROC_BROWSER_TEST_F(ChromeContentBrowserClientBrowserTest,
43 UberURLHandler_SettingsPage) { 53 UberURLHandler_SettingsPage) {
44 const GURL url_short("chrome://settings/"); 54 const GURL url_short("chrome://settings/");
45 const GURL url_long("chrome://chrome/settings/"); 55 const GURL url_long("chrome://chrome/settings/");
46 56
47 ui_test_utils::NavigateToURL(browser(), url_short); 57 ui_test_utils::NavigateToURL(browser(), url_short);
48 NavigationEntry* entry = GetLastCommittedEntry(); 58 NavigationEntry* entry = GetLastCommittedEntry();
49 59
50 ASSERT_TRUE(entry != NULL); 60 ASSERT_TRUE(entry != NULL);
51 EXPECT_EQ(url_long, entry->GetURL()); 61 EXPECT_EQ(url_long, entry->GetURL());
52 EXPECT_EQ(url_short, entry->GetVirtualURL()); 62 EXPECT_EQ(url_short, entry->GetVirtualURL());
53 } 63 }
54 64
55 IN_PROC_BROWSER_TEST_F(ChromeContentBrowserClientBrowserTest, 65 IN_PROC_BROWSER_TEST_F(ChromeContentBrowserClientBrowserTest,
56 UberURLHandler_ContentSettingsPage) { 66 UberURLHandler_ContentSettingsPage) {
57 const GURL url_short("chrome://settings/content"); 67 const GURL url_short("chrome://settings/content");
58 const GURL url_long("chrome://chrome/settings/content"); 68 const GURL url_long("chrome://chrome/settings/content");
59 69
60 ui_test_utils::NavigateToURL(browser(), url_short); 70 ui_test_utils::NavigateToURL(browser(), url_short);
61 NavigationEntry* entry = GetLastCommittedEntry(); 71 NavigationEntry* entry = GetLastCommittedEntry();
62 72
63 ASSERT_TRUE(entry != NULL); 73 ASSERT_TRUE(entry != NULL);
64 EXPECT_EQ(url_long, entry->GetURL()); 74 EXPECT_EQ(url_long, entry->GetURL());
65 EXPECT_EQ(url_short, entry->GetVirtualURL()); 75 EXPECT_EQ(url_short, entry->GetVirtualURL());
66 } 76 }
Dan Beam 2017/02/17 03:22:18 chrome://chrome will not be used any more for sett
67 77
68 IN_PROC_BROWSER_TEST_F(ChromeContentBrowserClientBrowserTest, 78 IN_PROC_BROWSER_TEST_F(ChromeContentBrowserClientBrowserTest,
69 UberURLHandler_AboutPage) { 79 UberURLHandler_AboutPage) {
70 const GURL url("chrome://chrome/"); 80 const GURL url("chrome://chrome/");
71 81
72 ui_test_utils::NavigateToURL(browser(), url); 82 ui_test_utils::NavigateToURL(browser(), url);
73 NavigationEntry* entry = GetLastCommittedEntry(); 83 NavigationEntry* entry = GetLastCommittedEntry();
74 84
75 ASSERT_TRUE(entry != NULL); 85 ASSERT_TRUE(entry != NULL);
76 EXPECT_EQ(url, entry->GetURL()); 86 EXPECT_EQ(url, entry->GetURL());
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 148
139 ui_test_utils::NavigateToURL(browser(), url); 149 ui_test_utils::NavigateToURL(browser(), url);
140 NavigationEntry* entry = GetLastCommittedEntry(); 150 NavigationEntry* entry = GetLastCommittedEntry();
141 151
142 ASSERT_TRUE(entry != NULL); 152 ASSERT_TRUE(entry != NULL);
143 EXPECT_EQ(url, entry->GetURL()); 153 EXPECT_EQ(url, entry->GetURL());
144 EXPECT_EQ(url, entry->GetVirtualURL()); 154 EXPECT_EQ(url, entry->GetVirtualURL());
145 } 155 }
146 156
147 } // namespace content 157 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698