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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
|
// Copyright (c) 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 "ash/shell.h"
#include "ash/test/ash_test_base.h"
#include "ash/test/test_session_state_delegate.h"
#include "ash/test/test_shell_delegate.h"
#include "ash/wm/window_state.h"
#include "base/command_line.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/chromeos/extensions/wallpaper_private_api.h"
#include "chrome/browser/chromeos/login/fake_user_manager.h"
#include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h"
#include "chrome/browser/ui/ash/multi_user/multi_user_window_manager_chromeos.h"
#include "chrome/common/chrome_switches.h"
#include "ui/aura/test/test_windows.h"
#include "ui/aura/window.h"
#include "ui/aura/window_event_dispatcher.h"
//#include "base/compiler_specific.h"
//#include "base/logging.h"
//#include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h"
namespace chromeos {
namespace {
const char* kTestAccount1 = "user1@test.com";
const char* kTestAccount2 = "user2@test.com";
class WallpaperPrivateApiUnittest : public ash::test::AshTestBase {
public:
WallpaperPrivateApiUnittest()
: fake_user_manager_(new FakeUserManager()),
scoped_user_manager_(fake_user_manager_) {
}
protected:
FakeUserManager* fake_user_manager() {
return fake_user_manager_;
}
private:
FakeUserManager* fake_user_manager_;
ScopedUserManagerEnabler scoped_user_manager_;
DISALLOW_COPY_AND_ASSIGN(WallpaperPrivateApiUnittest);
};
class TestMinimizeFunction
: public WallpaperPrivateMinimizeInactiveWindowsFunction {
public:
TestMinimizeFunction() {}
virtual bool RunImpl() OVERRIDE {
return WallpaperPrivateMinimizeInactiveWindowsFunction::RunImpl();
}
protected:
virtual ~TestMinimizeFunction() {}
};
class TestRestoreFunction
: public WallpaperPrivateRestoreMinimizedWindowsFunction {
public:
TestRestoreFunction() {}
virtual bool RunImpl() OVERRIDE {
return WallpaperPrivateRestoreMinimizedWindowsFunction::RunImpl();
}
protected:
virtual ~TestRestoreFunction() {}
};
} // namespace
TEST_F(WallpaperPrivateApiUnittest, HideAndRestoreWindows) {
fake_user_manager()->AddUser(kTestAccount1);
scoped_ptr<aura::Window> window3(CreateTestWindowInShellWithId(3));
scoped_ptr<aura::Window> window2(CreateTestWindowInShellWithId(2));
scoped_ptr<aura::Window> window1(CreateTestWindowInShellWithId(1));
scoped_ptr<aura::Window> window0(CreateTestWindowInShellWithId(0));
ash::wm::WindowState* window0_state = ash::wm::GetWindowState(window0.get());
ash::wm::WindowState* window1_state = ash::wm::GetWindowState(window1.get());
ash::wm::WindowState* window2_state = ash::wm::GetWindowState(window2.get());
ash::wm::WindowState* window3_state = ash::wm::GetWindowState(window3.get());
window3_state->Minimize();
window1_state->Maximize();
// Window 3 starts minimized, window 1 starts maximized.
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_FALSE(window1_state->IsMinimized());
EXPECT_FALSE(window2_state->IsMinimized());
EXPECT_TRUE(window3_state->IsMinimized());
// We then activate window 0 (i.e. wallpaper picker) and call the minimize
// function.
window0_state->Activate();
EXPECT_TRUE(window0_state->IsActive());
scoped_refptr<TestMinimizeFunction> minimize_function(
new TestMinimizeFunction());
EXPECT_TRUE(minimize_function->RunImpl());
// All windows except window 0 should be minimized.
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_TRUE(window1_state->IsMinimized());
EXPECT_TRUE(window2_state->IsMinimized());
EXPECT_TRUE(window3_state->IsMinimized());
// Then we destroy window 0 and call the restore function.
window0.reset();
scoped_refptr<TestRestoreFunction> restore_function(
new TestRestoreFunction());
EXPECT_TRUE(restore_function->RunImpl());
// Windows 1 and 2 should no longer be minimized. Window 1 should again
// be maximized. Window 3 should still be minimized.
EXPECT_TRUE(window1_state->IsMaximized());
EXPECT_FALSE(window2_state->IsMinimized());
EXPECT_TRUE(window3_state->IsMinimized());
}
// Test for multiple calls to |MinimizeInactiveWindows| before call
// |RestoreWindows|:
// 1. If all window hasn't change their states, the following calls are noops.
// 2. If some windows are manually unminimized, the following call will minimize
// all the unminimized windows.
TEST_F(WallpaperPrivateApiUnittest, HideAndManualUnminimizeWindows) {
fake_user_manager()->AddUser(kTestAccount1);
scoped_ptr<aura::Window> window1(CreateTestWindowInShellWithId(1));
scoped_ptr<aura::Window> window0(CreateTestWindowInShellWithId(0));
ash::wm::WindowState* window0_state = ash::wm::GetWindowState(window0.get());
ash::wm::WindowState* window1_state = ash::wm::GetWindowState(window1.get());
// We then activate window 0 (i.e. wallpaper picker) and call the minimize
// function.
window0_state->Activate();
EXPECT_TRUE(window0_state->IsActive());
scoped_refptr<TestMinimizeFunction> minimize_function_0(
new TestMinimizeFunction());
EXPECT_TRUE(minimize_function_0->RunImpl());
// All windows except window 0 should be minimized.
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_TRUE(window1_state->IsMinimized());
// Calls minimize function again should be an noop if window state didn't
// change.
scoped_refptr<TestMinimizeFunction> minimize_function_1(
new TestMinimizeFunction());
EXPECT_TRUE(minimize_function_1->RunImpl());
// All windows except window 0 should be minimized.
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_TRUE(window1_state->IsMinimized());
// Manually unminimize window 1.
window1_state->Unminimize();
EXPECT_FALSE(window1_state->IsMinimized());
window0_state->Activate();
scoped_refptr<TestMinimizeFunction> minimize_function_2(
new TestMinimizeFunction());
EXPECT_TRUE(minimize_function_2->RunImpl());
// Window 1 should be minimized again.
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_TRUE(window1_state->IsMinimized());
// Then we destroy window 0 and call the restore function.
window0.reset();
scoped_refptr<TestRestoreFunction> restore_function(
new TestRestoreFunction());
EXPECT_TRUE(restore_function->RunImpl());
// Windows 1 should no longer be minimized.
EXPECT_FALSE(window1_state->IsMinimized());
}
class WallpaperPrivateApiMultiUserUnittest
: public WallpaperPrivateApiUnittest {
public:
WallpaperPrivateApiMultiUserUnittest()
: multi_user_window_manager_(NULL),
session_state_delegate_(NULL) {}
virtual void SetUp() OVERRIDE;
virtual void TearDown() OVERRIDE;
protected:
void SetUpMultiUserWindowManager(
const std::string& active_user_id,
chrome::MultiUserWindowManager::MultiProfileMode mode);
void SwitchActiveUser(const std::string& active_user_id);
chrome::MultiUserWindowManagerChromeOS* multi_user_window_manager() {
return multi_user_window_manager_;
}
private:
chrome::MultiUserWindowManagerChromeOS* multi_user_window_manager_;
ash::test::TestSessionStateDelegate* session_state_delegate_;
DISALLOW_COPY_AND_ASSIGN(WallpaperPrivateApiMultiUserUnittest);
};
void WallpaperPrivateApiMultiUserUnittest::SetUp() {
CommandLine::ForCurrentProcess()->AppendSwitch(switches::kMultiProfiles);
AshTestBase::SetUp();
session_state_delegate_ =
static_cast<ash::test::TestSessionStateDelegate*> (
ash::Shell::GetInstance()->session_state_delegate());
fake_user_manager()->AddUser(kTestAccount1);
fake_user_manager()->AddUser(kTestAccount2);
}
void WallpaperPrivateApiMultiUserUnittest::TearDown() {
chrome::MultiUserWindowManager::DeleteInstance();
AshTestBase::TearDown();
}
void WallpaperPrivateApiMultiUserUnittest::SetUpMultiUserWindowManager(
const std::string& active_user_id,
chrome::MultiUserWindowManager::MultiProfileMode mode) {
multi_user_window_manager_ =
new chrome::MultiUserWindowManagerChromeOS(active_user_id);
chrome::MultiUserWindowManager::SetInstanceForTest(
multi_user_window_manager_, mode);
// We do not want animations while the test is going on.
multi_user_window_manager_->SetAnimationsForTest(true);
EXPECT_TRUE(multi_user_window_manager_);
}
void WallpaperPrivateApiMultiUserUnittest::SwitchActiveUser(
const std::string& active_user_id) {
fake_user_manager()->SwitchActiveUser(active_user_id);
multi_user_window_manager_->ActiveUserChanged(active_user_id);
}
// In multi profile mode, user may open wallpaper picker in one profile and
// then switch to a different profile and open another wallpaper picker
// without closing the first one.
TEST_F(WallpaperPrivateApiMultiUserUnittest, HideAndRestoreWindowsTwoUsers) {
SetUpMultiUserWindowManager(kTestAccount1,
chrome::MultiUserWindowManager::MULTI_PROFILE_MODE_SEPARATED);
scoped_ptr<aura::Window> window4(CreateTestWindowInShellWithId(4));
scoped_ptr<aura::Window> window3(CreateTestWindowInShellWithId(3));
scoped_ptr<aura::Window> window2(CreateTestWindowInShellWithId(2));
scoped_ptr<aura::Window> window1(CreateTestWindowInShellWithId(1));
scoped_ptr<aura::Window> window0(CreateTestWindowInShellWithId(0));
ash::wm::WindowState* window0_state = ash::wm::GetWindowState(window0.get());
ash::wm::WindowState* window1_state = ash::wm::GetWindowState(window1.get());
ash::wm::WindowState* window2_state = ash::wm::GetWindowState(window2.get());
ash::wm::WindowState* window3_state = ash::wm::GetWindowState(window3.get());
ash::wm::WindowState* window4_state = ash::wm::GetWindowState(window4.get());
multi_user_window_manager()->SetWindowOwner(window0.get(), kTestAccount1);
multi_user_window_manager()->SetWindowOwner(window1.get(), kTestAccount1);
// Set some windows to an inactive owner.
multi_user_window_manager()->SetWindowOwner(window2.get(), kTestAccount2);
multi_user_window_manager()->SetWindowOwner(window3.get(), kTestAccount2);
multi_user_window_manager()->SetWindowOwner(window4.get(), kTestAccount2);
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_FALSE(window1_state->IsMinimized());
EXPECT_FALSE(window2_state->IsMinimized());
EXPECT_FALSE(window3_state->IsMinimized());
EXPECT_FALSE(window4_state->IsMinimized());
// We then activate window 0 (i.e. wallpaper picker) and call the minimize
// function.
window0_state->Activate();
EXPECT_TRUE(window0_state->IsActive());
scoped_refptr<TestMinimizeFunction> minimize_function_0(
new TestMinimizeFunction());
EXPECT_TRUE(minimize_function_0->RunImpl());
// All windows except window 0 should be minimized.
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_TRUE(window1_state->IsMinimized());
// All windows that belong to inactive user should not be affected.
EXPECT_FALSE(window2_state->IsMinimized());
EXPECT_FALSE(window3_state->IsMinimized());
EXPECT_FALSE(window4_state->IsMinimized());
// Activate kTestAccount2. kTestAccount1 becomes inactive user.
SwitchActiveUser(kTestAccount2);
window2_state->Activate();
EXPECT_TRUE(window2_state->IsActive());
scoped_refptr<TestMinimizeFunction> minimize_function_1(
new TestMinimizeFunction());
EXPECT_TRUE(minimize_function_1->RunImpl());
// All windows except window 2 should be minimized.
EXPECT_FALSE(window2_state->IsMinimized());
EXPECT_TRUE(window3_state->IsMinimized());
EXPECT_TRUE(window4_state->IsMinimized());
// All windows that belong to inactive user should not be affected.
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_TRUE(window1_state->IsMinimized());
// Destroy window 4. Nothing should happen to other windows.
window4_state->Unminimize();
window4.reset();
EXPECT_FALSE(window2_state->IsMinimized());
EXPECT_TRUE(window3_state->IsMinimized());
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_TRUE(window1_state->IsMinimized());
// Then we destroy window 2 and call the restore function.
window2.reset();
scoped_refptr<TestRestoreFunction> restore_function_0(
new TestRestoreFunction());
EXPECT_TRUE(restore_function_0->RunImpl());
EXPECT_FALSE(window3_state->IsMinimized());
// All windows that belong to inactive user should not be affected.
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_TRUE(window1_state->IsMinimized());
SwitchActiveUser(kTestAccount1);
// Then we destroy window 0 and call the restore function.
window0.reset();
scoped_refptr<TestRestoreFunction> restore_function_1(
new TestRestoreFunction());
EXPECT_TRUE(restore_function_1->RunImpl());
EXPECT_FALSE(window1_state->IsMinimized());
EXPECT_FALSE(window3_state->IsMinimized());
}
// In multi profile mode, user may teleport windows. Teleported window should
// also be minimized when open wallpaper picker.
TEST_F(WallpaperPrivateApiMultiUserUnittest, HideTeleportedWindow) {
SetUpMultiUserWindowManager(kTestAccount1,
chrome::MultiUserWindowManager::MULTI_PROFILE_MODE_MIXED);
scoped_ptr<aura::Window> window3(CreateTestWindowInShellWithId(3));
scoped_ptr<aura::Window> window2(CreateTestWindowInShellWithId(2));
scoped_ptr<aura::Window> window1(CreateTestWindowInShellWithId(1));
scoped_ptr<aura::Window> window0(CreateTestWindowInShellWithId(0));
ash::wm::WindowState* window0_state = ash::wm::GetWindowState(window0.get());
ash::wm::WindowState* window1_state = ash::wm::GetWindowState(window1.get());
ash::wm::WindowState* window2_state = ash::wm::GetWindowState(window2.get());
ash::wm::WindowState* window3_state = ash::wm::GetWindowState(window3.get());
multi_user_window_manager()->SetWindowOwner(window0.get(), kTestAccount1);
multi_user_window_manager()->SetWindowOwner(window1.get(), kTestAccount1);
// Set some windows to an inactive owner.
multi_user_window_manager()->SetWindowOwner(window2.get(), kTestAccount2);
multi_user_window_manager()->SetWindowOwner(window3.get(), kTestAccount2);
// Teleport window2 to kTestAccount1.
multi_user_window_manager()->ShowWindowForUser(window2.get(), kTestAccount1);
// Initial window state. All windows shouldn't be minimized.
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_FALSE(window1_state->IsMinimized());
EXPECT_FALSE(window2_state->IsMinimized());
EXPECT_FALSE(window3_state->IsMinimized());
// We then activate window 0 (i.e. wallpaper picker) and call the minimize
// function.
window0_state->Activate();
EXPECT_TRUE(window0_state->IsActive());
scoped_refptr<TestMinimizeFunction> minimize_function_0(
new TestMinimizeFunction());
EXPECT_TRUE(minimize_function_0->RunImpl());
// All windows except window 0 should be minimized.
EXPECT_FALSE(window0_state->IsMinimized());
EXPECT_TRUE(window1_state->IsMinimized());
// Teleported window should also be minimized.
EXPECT_TRUE(window2_state->IsMinimized());
// Other window should remain the same.
EXPECT_FALSE(window3_state->IsMinimized());
// Then we destroy window 0 and call the restore function.
window0.reset();
scoped_refptr<TestRestoreFunction> restore_function_1(
new TestRestoreFunction());
EXPECT_TRUE(restore_function_1->RunImpl());
EXPECT_FALSE(window1_state->IsMinimized());
EXPECT_FALSE(window2_state->IsMinimized());
EXPECT_FALSE(window3_state->IsMinimized());
}
} // namespace chromeos
|