1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
// Copyright 2012 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/ui/browser_navigator_browsertest.h"
#include "base/command_line.h"
#include "chrome/browser/chromeos/login/chrome_restart_request.h"
#include "chrome/browser/ui/ash/multi_user/multi_user_util.h"
#include "chrome/browser/ui/ash/multi_user/multi_user_window_manager_test.h"
#include "chrome/browser/ui/browser.h"
#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/browser_navigator.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/chrome_switches.h"
#include "chromeos/chromeos_switches.h"
#include "content/public/browser/web_contents.h"
namespace {
GURL GetGoogleURL() {
return GURL("http://www.google.com/");
}
// Subclass that tests navigation while in the Guest session.
class BrowserGuestSessionNavigatorTest: public BrowserNavigatorTest {
protected:
void SetUpCommandLine(base::CommandLine* command_line) override {
base::CommandLine command_line_copy = *command_line;
command_line_copy.AppendSwitchASCII(
chromeos::switches::kLoginProfile, "user");
command_line_copy.AppendSwitch(chromeos::switches::kGuestSession);
chromeos::GetOffTheRecordCommandLine(GetGoogleURL(),
true,
command_line_copy,
command_line);
}
};
// This test verifies that the settings page is opened in the incognito window
// in Guest Session (as well as all other windows in Guest session).
IN_PROC_BROWSER_TEST_F(BrowserGuestSessionNavigatorTest,
Disposition_Settings_UseIncognitoWindow) {
Browser* incognito_browser = CreateIncognitoBrowser();
EXPECT_EQ(2u, chrome::GetTotalBrowserCount());
EXPECT_EQ(1, browser()->tab_strip_model()->count());
EXPECT_EQ(1, incognito_browser->tab_strip_model()->count());
// Navigate to the settings page.
chrome::NavigateParams params(MakeNavigateParams(incognito_browser));
params.disposition = SINGLETON_TAB;
params.url = GURL("chrome://chrome/settings");
params.window_action = chrome::NavigateParams::SHOW_WINDOW;
params.path_behavior = chrome::NavigateParams::IGNORE_AND_NAVIGATE;
chrome::Navigate(¶ms);
// Settings page should be opened in incognito window.
EXPECT_NE(browser(), params.browser);
EXPECT_EQ(incognito_browser, params.browser);
EXPECT_EQ(2, incognito_browser->tab_strip_model()->count());
EXPECT_EQ(GURL("chrome://chrome/settings"),
incognito_browser->tab_strip_model()->GetActiveWebContents()->
GetURL());
}
// Test that in multi user environments a newly created browser gets created
// on the same desktop as the browser is shown on.
//
// Flakily hits assert: http://crbug.com/469717
#if !defined(NDEBUG)
#define MAYBE_Browser_Gets_Created_On_Visiting_Desktop \
DISABLED_Browser_Gets_Created_On_Visiting_Desktop
#else
#define MAYBE_Browser_Gets_Created_On_Visiting_Desktop \
Browser_Gets_Created_On_Visiting_Desktop
#endif
IN_PROC_BROWSER_TEST_F(BrowserGuestSessionNavigatorTest,
MAYBE_Browser_Gets_Created_On_Visiting_Desktop) {
// Test 1: Test that a browser created from a visiting browser will be on the
// same visiting desktop.
{
const std::string desktop_user_id = "desktop_user_id@fake.com";
TestMultiUserWindowManager* manager =
new TestMultiUserWindowManager(browser(), desktop_user_id);
EXPECT_EQ(1u, chrome::GetTotalBrowserCount());
// Navigate to the settings page.
chrome::NavigateParams params(MakeNavigateParams(browser()));
params.disposition = NEW_POPUP;
params.url = GURL("chrome://chrome/settings");
params.window_action = chrome::NavigateParams::SHOW_WINDOW;
params.path_behavior = chrome::NavigateParams::IGNORE_AND_NAVIGATE;
params.browser = browser();
chrome::Navigate(¶ms);
EXPECT_EQ(2u, chrome::GetTotalBrowserCount());
aura::Window* created_window = manager->created_window();
ASSERT_TRUE(created_window);
EXPECT_TRUE(manager->IsWindowOnDesktopOfUser(created_window,
desktop_user_id));
}
// Test 2: Test that a window which is not visiting does not cause an owner
// assignment of a newly created browser.
{
std::string browser_owner =
multi_user_util::GetUserIDFromProfile(browser()->profile());
TestMultiUserWindowManager* manager =
new TestMultiUserWindowManager(browser(), browser_owner);
// Navigate to the settings page.
chrome::NavigateParams params(MakeNavigateParams(browser()));
params.disposition = NEW_POPUP;
params.url = GURL("chrome://chrome/settings");
params.window_action = chrome::NavigateParams::SHOW_WINDOW;
params.path_behavior = chrome::NavigateParams::IGNORE_AND_NAVIGATE;
params.browser = browser();
chrome::Navigate(¶ms);
EXPECT_EQ(3u, chrome::GetTotalBrowserCount());
// The ShowWindowForUser should not have been called since the window is
// already on the correct desktop.
ASSERT_FALSE(manager->created_window());
}
}
} // namespace
|