forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsession_controller_impl_unittest.cc
777 lines (666 loc) · 28.2 KB
/
session_controller_impl_unittest.cc
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
// Copyright 2016 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/session/session_controller_impl.h"
#include <memory>
#include <string>
#include <utility>
#include <vector>
#include "ash/login_status.h"
#include "ash/public/cpp/ash_prefs.h"
#include "ash/session/session_observer.h"
#include "ash/session/test_session_controller_client.h"
#include "ash/shell.h"
#include "ash/system/tray/system_tray_notifier.h"
#include "ash/test/ash_test_base.h"
#include "ash/wm/window_util.h"
#include "base/bind.h"
#include "base/callback.h"
#include "base/macros.h"
#include "base/run_loop.h"
#include "base/threading/thread_task_runner_handle.h"
#include "components/prefs/testing_pref_service.h"
#include "components/user_manager/user_type.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/aura/window.h"
#include "ui/views/widget/widget.h"
#include "ui/views/window/dialog_delegate.h"
using session_manager::SessionState;
namespace ash {
namespace {
class TestSessionObserver : public SessionObserver {
public:
TestSessionObserver() : active_account_id_(EmptyAccountId()) {}
~TestSessionObserver() override = default;
// SessionObserver:
void OnActiveUserSessionChanged(const AccountId& account_id) override {
active_account_id_ = account_id;
}
void OnUserSessionAdded(const AccountId& account_id) override {
user_session_account_ids_.push_back(account_id);
}
void OnFirstSessionStarted() override { first_session_started_ = true; }
void OnSessionStateChanged(SessionState state) override { state_ = state; }
void OnActiveUserPrefServiceChanged(PrefService* pref_service) override {
last_user_pref_service_ = pref_service;
}
std::string GetUserSessionEmails() const {
std::string emails;
for (const auto& account_id : user_session_account_ids_) {
emails += account_id.GetUserEmail() + ",";
}
return emails;
}
SessionState state() const { return state_; }
const AccountId& active_account_id() const { return active_account_id_; }
bool first_session_started() const { return first_session_started_; }
const std::vector<AccountId>& user_session_account_ids() const {
return user_session_account_ids_;
}
PrefService* last_user_pref_service() const {
return last_user_pref_service_;
}
void clear_last_user_pref_service() { last_user_pref_service_ = nullptr; }
private:
SessionState state_ = SessionState::UNKNOWN;
AccountId active_account_id_;
bool first_session_started_ = false;
std::vector<AccountId> user_session_account_ids_;
PrefService* last_user_pref_service_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(TestSessionObserver);
};
void FillDefaultSessionInfo(SessionInfo* info) {
info->can_lock_screen = true;
info->should_lock_screen_automatically = true;
info->is_running_in_app_mode = false;
info->add_user_session_policy = AddUserSessionPolicy::ALLOWED;
info->state = SessionState::LOGIN_PRIMARY;
}
class SessionControllerImplTest : public testing::Test {
public:
SessionControllerImplTest() = default;
~SessionControllerImplTest() override = default;
// testing::Test:
void SetUp() override {
controller_ = std::make_unique<SessionControllerImpl>();
controller_->AddObserver(&observer_);
}
void TearDown() override { controller_->RemoveObserver(&observer_); }
void SetSessionInfo(const SessionInfo& info) {
controller_->SetSessionInfo(info);
}
void UpdateSession(uint32_t session_id, const std::string& email) {
UserSession session;
session.session_id = session_id;
session.user_info.type = user_manager::USER_TYPE_REGULAR;
session.user_info.account_id = AccountId::FromUserEmail(email);
session.user_info.display_name = email;
session.user_info.display_email = email;
session.user_info.is_new_profile = false;
controller_->UpdateUserSession(session);
}
std::string GetUserSessionEmails() const {
std::string emails;
for (const auto& session : controller_->GetUserSessions()) {
emails += session->user_info.display_email + ",";
}
return emails;
}
SessionControllerImpl* controller() { return controller_.get(); }
const TestSessionObserver* observer() const { return &observer_; }
private:
std::unique_ptr<SessionControllerImpl> controller_;
TestSessionObserver observer_;
DISALLOW_COPY_AND_ASSIGN(SessionControllerImplTest);
};
// Tests that the simple session info is reflected properly.
TEST_F(SessionControllerImplTest, SimpleSessionInfo) {
SessionInfo info;
FillDefaultSessionInfo(&info);
SetSessionInfo(info);
UpdateSession(1u, "user1@test.com");
EXPECT_TRUE(controller()->CanLockScreen());
EXPECT_TRUE(controller()->ShouldLockScreenAutomatically());
EXPECT_FALSE(controller()->IsRunningInAppMode());
info.can_lock_screen = false;
SetSessionInfo(info);
EXPECT_FALSE(controller()->CanLockScreen());
EXPECT_TRUE(controller()->ShouldLockScreenAutomatically());
EXPECT_FALSE(controller()->IsRunningInAppMode());
info.should_lock_screen_automatically = false;
SetSessionInfo(info);
EXPECT_FALSE(controller()->CanLockScreen());
EXPECT_FALSE(controller()->ShouldLockScreenAutomatically());
EXPECT_FALSE(controller()->IsRunningInAppMode());
info.is_running_in_app_mode = true;
SetSessionInfo(info);
EXPECT_FALSE(controller()->CanLockScreen());
EXPECT_FALSE(controller()->ShouldLockScreenAutomatically());
EXPECT_TRUE(controller()->IsRunningInAppMode());
}
TEST_F(SessionControllerImplTest, OnFirstSessionStarted) {
// Simulate chrome starting a user session.
SessionInfo info;
FillDefaultSessionInfo(&info);
SetSessionInfo(info);
UpdateSession(1u, "user1@test.com");
controller()->SetUserSessionOrder({1u});
// Observer is notified.
EXPECT_TRUE(observer()->first_session_started());
}
// Tests that the CanLockScreen is only true with an active user session.
TEST_F(SessionControllerImplTest, CanLockScreen) {
SessionInfo info;
FillDefaultSessionInfo(&info);
ASSERT_TRUE(info.can_lock_screen); // Check can_lock_screen default to true.
SetSessionInfo(info);
// Cannot lock screen when there is no active user session.
EXPECT_FALSE(controller()->IsActiveUserSessionStarted());
EXPECT_FALSE(controller()->CanLockScreen());
UpdateSession(1u, "user1@test.com");
EXPECT_TRUE(controller()->IsActiveUserSessionStarted());
EXPECT_TRUE(controller()->CanLockScreen());
}
// Tests that AddUserSessionPolicy is set properly.
TEST_F(SessionControllerImplTest, AddUserPolicy) {
const AddUserSessionPolicy kTestCases[] = {
AddUserSessionPolicy::ALLOWED,
AddUserSessionPolicy::ERROR_NOT_ALLOWED_PRIMARY_USER,
AddUserSessionPolicy::ERROR_NO_ELIGIBLE_USERS,
AddUserSessionPolicy::ERROR_MAXIMUM_USERS_REACHED,
};
SessionInfo info;
FillDefaultSessionInfo(&info);
for (const auto& policy : kTestCases) {
info.add_user_session_policy = policy;
SetSessionInfo(info);
EXPECT_EQ(policy, controller()->GetAddUserPolicy())
<< "Test case policy=" << static_cast<int>(policy);
}
}
// Tests that session state can be set and reflected properly.
TEST_F(SessionControllerImplTest, SessionState) {
const struct {
SessionState state;
bool expected_is_screen_locked;
bool expected_is_user_session_blocked;
} kTestCases[] = {
{SessionState::OOBE, false, true},
{SessionState::LOGIN_PRIMARY, false, true},
{SessionState::LOGGED_IN_NOT_ACTIVE, false, false},
{SessionState::ACTIVE, false, false},
{SessionState::LOCKED, true, true},
{SessionState::LOGIN_SECONDARY, false, true},
};
SessionInfo info;
FillDefaultSessionInfo(&info);
for (const auto& test_case : kTestCases) {
info.state = test_case.state;
SetSessionInfo(info);
EXPECT_EQ(test_case.state, controller()->GetSessionState())
<< "Test case state=" << static_cast<int>(test_case.state);
EXPECT_EQ(observer()->state(), controller()->GetSessionState())
<< "Test case state=" << static_cast<int>(test_case.state);
EXPECT_EQ(test_case.expected_is_screen_locked,
controller()->IsScreenLocked())
<< "Test case state=" << static_cast<int>(test_case.state);
EXPECT_EQ(test_case.expected_is_user_session_blocked,
controller()->IsUserSessionBlocked())
<< "Test case state=" << static_cast<int>(test_case.state);
}
}
// Tests that LoginStatus is computed correctly for most session states.
TEST_F(SessionControllerImplTest, GetLoginStatus) {
const struct {
SessionState state;
LoginStatus expected_status;
} kTestCases[] = {
{SessionState::UNKNOWN, LoginStatus::NOT_LOGGED_IN},
{SessionState::OOBE, LoginStatus::NOT_LOGGED_IN},
{SessionState::LOGIN_PRIMARY, LoginStatus::NOT_LOGGED_IN},
{SessionState::LOGGED_IN_NOT_ACTIVE, LoginStatus::NOT_LOGGED_IN},
{SessionState::LOCKED, LoginStatus::LOCKED},
// TODO: Add LOGIN_SECONDARY if we added a status for it.
};
SessionInfo info;
FillDefaultSessionInfo(&info);
for (const auto& test_case : kTestCases) {
info.state = test_case.state;
SetSessionInfo(info);
EXPECT_EQ(test_case.expected_status, controller()->login_status())
<< "Test case state=" << static_cast<int>(test_case.state);
}
}
// Tests that LoginStatus is computed correctly for active sessions.
TEST_F(SessionControllerImplTest, GetLoginStateForActiveSession) {
// Simulate an active user session.
SessionInfo info;
FillDefaultSessionInfo(&info);
info.state = SessionState::ACTIVE;
SetSessionInfo(info);
const struct {
user_manager::UserType user_type;
LoginStatus expected_status;
} kTestCases[] = {
{user_manager::USER_TYPE_REGULAR, LoginStatus::USER},
{user_manager::USER_TYPE_GUEST, LoginStatus::GUEST},
{user_manager::USER_TYPE_PUBLIC_ACCOUNT, LoginStatus::PUBLIC},
{user_manager::USER_TYPE_SUPERVISED, LoginStatus::SUPERVISED},
{user_manager::USER_TYPE_KIOSK_APP, LoginStatus::KIOSK_APP},
{user_manager::USER_TYPE_CHILD, LoginStatus::SUPERVISED},
{user_manager::USER_TYPE_ARC_KIOSK_APP, LoginStatus::KIOSK_APP},
{user_manager::USER_TYPE_WEB_KIOSK_APP, LoginStatus::KIOSK_APP}
// TODO: Add USER_TYPE_ACTIVE_DIRECTORY if we add a status for it.
};
for (const auto& test_case : kTestCases) {
UserSession session;
session.session_id = 1u;
session.user_info.type = test_case.user_type;
session.user_info.account_id = AccountId::FromUserEmail("user1@test.com");
session.user_info.display_name = "User 1";
session.user_info.display_email = "user1@test.com";
controller()->UpdateUserSession(session);
EXPECT_EQ(test_case.expected_status, controller()->login_status())
<< "Test case user_type=" << static_cast<int>(test_case.user_type);
}
}
// Tests that user sessions can be set and updated.
TEST_F(SessionControllerImplTest, UserSessions) {
EXPECT_FALSE(controller()->IsActiveUserSessionStarted());
UpdateSession(1u, "user1@test.com");
EXPECT_TRUE(controller()->IsActiveUserSessionStarted());
EXPECT_EQ("user1@test.com,", GetUserSessionEmails());
EXPECT_EQ(GetUserSessionEmails(), observer()->GetUserSessionEmails());
EXPECT_EQ("user1@test.com",
controller()->GetPrimaryUserSession()->user_info.display_email);
UpdateSession(2u, "user2@test.com");
EXPECT_TRUE(controller()->IsActiveUserSessionStarted());
EXPECT_EQ("user1@test.com,user2@test.com,", GetUserSessionEmails());
EXPECT_EQ(GetUserSessionEmails(), observer()->GetUserSessionEmails());
EXPECT_EQ("user1@test.com",
controller()->GetPrimaryUserSession()->user_info.display_email);
UpdateSession(1u, "user1_changed@test.com");
EXPECT_EQ("user1_changed@test.com,user2@test.com,", GetUserSessionEmails());
// TODO(xiyuan): Verify observer gets the updated user session info.
}
// Tests that user sessions can be ordered.
TEST_F(SessionControllerImplTest, ActiveSession) {
UpdateSession(1u, "user1@test.com");
UpdateSession(2u, "user2@test.com");
EXPECT_EQ("user1@test.com",
controller()->GetPrimaryUserSession()->user_info.display_email);
std::vector<uint32_t> order = {1u, 2u};
controller()->SetUserSessionOrder(order);
EXPECT_EQ("user1@test.com,user2@test.com,", GetUserSessionEmails());
EXPECT_EQ("user1@test.com", observer()->active_account_id().GetUserEmail());
EXPECT_EQ("user1@test.com",
controller()->GetPrimaryUserSession()->user_info.display_email);
order = {2u, 1u};
controller()->SetUserSessionOrder(order);
EXPECT_EQ("user2@test.com,user1@test.com,", GetUserSessionEmails());
EXPECT_EQ("user2@test.com", observer()->active_account_id().GetUserEmail());
EXPECT_EQ("user1@test.com",
controller()->GetPrimaryUserSession()->user_info.display_email);
order = {1u, 2u};
controller()->SetUserSessionOrder(order);
EXPECT_EQ("user1@test.com,user2@test.com,", GetUserSessionEmails());
EXPECT_EQ("user1@test.com", observer()->active_account_id().GetUserEmail());
EXPECT_EQ("user1@test.com",
controller()->GetPrimaryUserSession()->user_info.display_email);
}
// Tests that user session is unblocked with a running unlock animation so that
// focus rules can find a correct activatable window after screen lock is
// dismissed.
TEST_F(SessionControllerImplTest,
UserSessionUnblockedWithRunningUnlockAnimation) {
SessionInfo info;
FillDefaultSessionInfo(&info);
// LOCKED means blocked user session.
info.state = SessionState::LOCKED;
SetSessionInfo(info);
EXPECT_TRUE(controller()->IsUserSessionBlocked());
// Mark a running unlock animation unblocks user session.
controller()->RunUnlockAnimation(base::OnceClosure());
EXPECT_FALSE(controller()->IsUserSessionBlocked());
const struct {
SessionState state;
bool expected_is_user_session_blocked;
} kTestCases[] = {
{SessionState::OOBE, true},
{SessionState::LOGIN_PRIMARY, true},
{SessionState::LOGGED_IN_NOT_ACTIVE, false},
{SessionState::ACTIVE, false},
{SessionState::LOGIN_SECONDARY, true},
};
for (const auto& test_case : kTestCases) {
info.state = test_case.state;
SetSessionInfo(info);
// Mark a running unlock animation.
controller()->RunUnlockAnimation(base::OnceClosure());
EXPECT_EQ(test_case.expected_is_user_session_blocked,
controller()->IsUserSessionBlocked())
<< "Test case state=" << static_cast<int>(test_case.state);
}
}
TEST_F(SessionControllerImplTest, IsUserSupervised) {
UserSession session;
session.session_id = 1u;
session.user_info.type = user_manager::USER_TYPE_SUPERVISED;
controller()->UpdateUserSession(session);
EXPECT_TRUE(controller()->IsUserSupervised());
}
TEST_F(SessionControllerImplTest, IsUserChild) {
UserSession session;
session.session_id = 1u;
session.user_info.type = user_manager::USER_TYPE_CHILD;
controller()->UpdateUserSession(session);
EXPECT_TRUE(controller()->IsUserChild());
// Child accounts are supervised.
EXPECT_TRUE(controller()->IsUserSupervised());
}
using SessionControllerImplPrefsTest = NoSessionAshTestBase;
// Verifies that ShellObserver is notified for PrefService changes.
TEST_F(SessionControllerImplPrefsTest, Observer) {
constexpr char kUser1[] = "user1@test.com";
constexpr char kUser2[] = "user2@test.com";
const AccountId kUserAccount1 = AccountId::FromUserEmail(kUser1);
const AccountId kUserAccount2 = AccountId::FromUserEmail(kUser2);
TestSessionObserver observer;
SessionControllerImpl* controller = Shell::Get()->session_controller();
controller->AddObserver(&observer);
// Setup 2 users.
TestSessionControllerClient* session = GetSessionControllerClient();
// Disable auto-provision of PrefService for each user.
constexpr bool kEnableSettings = true;
constexpr bool kProvidePrefService = false;
session->AddUserSession(kUser1, user_manager::USER_TYPE_REGULAR,
kEnableSettings, kProvidePrefService);
session->AddUserSession(kUser2, user_manager::USER_TYPE_REGULAR,
kEnableSettings, kProvidePrefService);
// The observer is not notified because the PrefService for kUser1 is not yet
// ready.
session->SwitchActiveUser(kUserAccount1);
EXPECT_EQ(nullptr, observer.last_user_pref_service());
auto pref_service = std::make_unique<TestingPrefServiceSimple>();
RegisterUserProfilePrefs(pref_service->registry(), true /* for_test */);
session->SetUserPrefService(kUserAccount1, std::move(pref_service));
EXPECT_EQ(controller->GetUserPrefServiceForUser(kUserAccount1),
observer.last_user_pref_service());
EXPECT_EQ(controller->GetUserPrefServiceForUser(kUserAccount1),
controller->GetLastActiveUserPrefService());
observer.clear_last_user_pref_service();
// Switching to a user for which prefs are not ready does not notify and
// GetLastActiveUserPrefService() returns the old PrefService.
session->SwitchActiveUser(AccountId::FromUserEmail(kUser2));
EXPECT_EQ(nullptr, observer.last_user_pref_service());
EXPECT_EQ(controller->GetUserPrefServiceForUser(kUserAccount1),
controller->GetLastActiveUserPrefService());
session->SwitchActiveUser(AccountId::FromUserEmail(kUser1));
EXPECT_EQ(controller->GetUserPrefServiceForUser(kUserAccount1),
observer.last_user_pref_service());
EXPECT_EQ(controller->GetUserPrefServiceForUser(kUserAccount1),
controller->GetLastActiveUserPrefService());
// There should be no notification about a PrefService for an inactive user
// becoming initialized.
observer.clear_last_user_pref_service();
pref_service = std::make_unique<TestingPrefServiceSimple>();
RegisterUserProfilePrefs(pref_service->registry(), true /* for_test */);
session->SetUserPrefService(kUserAccount2, std::move(pref_service));
EXPECT_EQ(nullptr, observer.last_user_pref_service());
session->SwitchActiveUser(AccountId::FromUserEmail(kUser2));
EXPECT_EQ(controller->GetUserPrefServiceForUser(kUserAccount2),
observer.last_user_pref_service());
EXPECT_EQ(controller->GetUserPrefServiceForUser(kUserAccount2),
controller->GetLastActiveUserPrefService());
controller->RemoveObserver(&observer);
}
TEST_F(SessionControllerImplTest, GetUserType) {
// Child accounts
UserSession session;
session.session_id = 1u;
session.user_info.type = user_manager::USER_TYPE_CHILD;
controller()->UpdateUserSession(session);
EXPECT_EQ(user_manager::USER_TYPE_CHILD, controller()->GetUserType());
// Regular accounts
session = UserSession();
session.session_id = 1u;
session.user_info.type = user_manager::USER_TYPE_REGULAR;
controller()->UpdateUserSession(session);
EXPECT_EQ(user_manager::USER_TYPE_REGULAR, controller()->GetUserType());
}
TEST_F(SessionControllerImplTest, IsUserPrimary) {
controller()->ClearUserSessionsForTest();
// The first added user is a primary user
UserSession session;
session.session_id = 1u;
session.user_info.type = user_manager::USER_TYPE_REGULAR;
controller()->UpdateUserSession(session);
EXPECT_TRUE(controller()->IsUserPrimary());
// The users added thereafter are not primary users
session = UserSession();
session.session_id = 2u;
session.user_info.type = user_manager::USER_TYPE_REGULAR;
controller()->UpdateUserSession(session);
// Simulates user switching by changing the order of session_ids.
controller()->SetUserSessionOrder({2u, 1u});
EXPECT_FALSE(controller()->IsUserPrimary());
}
TEST_F(SessionControllerImplTest, IsUserFirstLogin) {
UserSession session;
session.session_id = 1u;
session.user_info.type = user_manager::USER_TYPE_REGULAR;
controller()->UpdateUserSession(session);
EXPECT_FALSE(controller()->IsUserFirstLogin());
// user_info->is_new_profile being true means the user is first time login.
session = UserSession();
session.session_id = 1u;
session.user_info.type = user_manager::USER_TYPE_REGULAR;
session.user_info.is_new_profile = true;
controller()->UpdateUserSession(session);
EXPECT_TRUE(controller()->IsUserFirstLogin());
}
class CanSwitchUserTest : public AshTestBase {
public:
// The action type to perform / check for upon user switching.
enum ActionType {
NO_DIALOG, // No dialog should be shown.
ACCEPT_DIALOG, // A dialog should be shown and we should accept it.
DECLINE_DIALOG, // A dialog should be shown and we do not accept it.
};
CanSwitchUserTest() = default;
~CanSwitchUserTest() override = default;
void TearDown() override {
base::RunLoop().RunUntilIdle();
AshTestBase::TearDown();
}
// Accessing the capture session functionality.
// Simulates a screen capture session start.
void StartCaptureSession() {
Shell::Get()->system_tray_notifier()->NotifyScreenCaptureStart(
base::BindRepeating(&CanSwitchUserTest::StopCaptureCallback,
base::Unretained(this)),
base::RepeatingClosure(), base::string16());
}
// The callback which gets called when the screen capture gets stopped.
void StopCaptureSession() {
Shell::Get()->system_tray_notifier()->NotifyScreenCaptureStop();
}
// Simulates a screen capture session stop.
void StopCaptureCallback() { stop_capture_callback_hit_count_++; }
// Accessing the share session functionality.
// Simulate a Screen share session start.
void StartShareSession() {
Shell::Get()->system_tray_notifier()->NotifyScreenShareStart(
base::BindRepeating(&CanSwitchUserTest::StopShareCallback,
base::Unretained(this)),
base::string16());
}
// Simulates a screen share session stop.
void StopShareSession() {
Shell::Get()->system_tray_notifier()->NotifyScreenShareStop();
}
// The callback which gets called when the screen share gets stopped.
void StopShareCallback() { stop_share_callback_hit_count_++; }
// Issuing a switch user call which might or might not create a dialog.
// The passed |action| type parameter defines the outcome (which will be
// checked) and the action the user will choose.
void SwitchUser(ActionType action) {
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::BindOnce(&CloseMessageBox, action));
Shell::Get()->session_controller()->CanSwitchActiveUser(base::BindOnce(
&CanSwitchUserTest::SwitchCallback, base::Unretained(this)));
base::RunLoop().RunUntilIdle();
}
// Called when the user will get actually switched.
void SwitchCallback(bool switch_user) {
if (switch_user)
switch_callback_hit_count_++;
}
// Various counter accessors.
int stop_capture_callback_hit_count() const {
return stop_capture_callback_hit_count_;
}
int stop_share_callback_hit_count() const {
return stop_share_callback_hit_count_;
}
int switch_callback_hit_count() const { return switch_callback_hit_count_; }
private:
static void CloseMessageBox(ActionType action) {
aura::Window* active_window = window_util::GetActiveWindow();
views::DialogDelegate* dialog =
active_window ? views::Widget::GetWidgetForNativeWindow(active_window)
->widget_delegate()
->AsDialogDelegate()
: nullptr;
switch (action) {
case NO_DIALOG:
EXPECT_FALSE(dialog);
return;
case ACCEPT_DIALOG:
ASSERT_TRUE(dialog);
EXPECT_TRUE(dialog->Accept());
return;
case DECLINE_DIALOG:
ASSERT_TRUE(dialog);
EXPECT_TRUE(dialog->Close());
return;
}
}
// Various counters to query for.
int stop_capture_callback_hit_count_ = 0;
int stop_share_callback_hit_count_ = 0;
int switch_callback_hit_count_ = 0;
DISALLOW_COPY_AND_ASSIGN(CanSwitchUserTest);
};
// Test that when there is no screen operation going on the user switch will be
// performed as planned.
TEST_F(CanSwitchUserTest, NoLock) {
EXPECT_EQ(0, switch_callback_hit_count());
SwitchUser(CanSwitchUserTest::NO_DIALOG);
EXPECT_EQ(1, switch_callback_hit_count());
}
// Test that with a screen capture operation going on, the user will need to
// confirm. Declining will neither change the running state or switch users.
TEST_F(CanSwitchUserTest, CaptureActiveDeclined) {
EXPECT_EQ(0, switch_callback_hit_count());
StartCaptureSession();
SwitchUser(CanSwitchUserTest::DECLINE_DIALOG);
EXPECT_EQ(0, switch_callback_hit_count());
EXPECT_EQ(0, stop_capture_callback_hit_count());
EXPECT_EQ(0, stop_share_callback_hit_count());
StopCaptureSession();
EXPECT_EQ(0, switch_callback_hit_count());
EXPECT_EQ(1, stop_capture_callback_hit_count());
EXPECT_EQ(0, stop_share_callback_hit_count());
}
// Test that with a screen share operation going on, the user will need to
// confirm. Declining will neither change the running state or switch users.
TEST_F(CanSwitchUserTest, ShareActiveDeclined) {
EXPECT_EQ(0, switch_callback_hit_count());
StartShareSession();
SwitchUser(CanSwitchUserTest::DECLINE_DIALOG);
EXPECT_EQ(0, switch_callback_hit_count());
EXPECT_EQ(0, stop_capture_callback_hit_count());
EXPECT_EQ(0, stop_share_callback_hit_count());
StopShareSession();
EXPECT_EQ(0, switch_callback_hit_count());
EXPECT_EQ(0, stop_capture_callback_hit_count());
EXPECT_EQ(1, stop_share_callback_hit_count());
}
// Test that with both operations going on, the user will need to confirm.
// Declining will neither change the running state or switch users.
TEST_F(CanSwitchUserTest, BothActiveDeclined) {
EXPECT_EQ(0, switch_callback_hit_count());
StartShareSession();
StartCaptureSession();
SwitchUser(CanSwitchUserTest::DECLINE_DIALOG);
EXPECT_EQ(0, switch_callback_hit_count());
EXPECT_EQ(0, stop_capture_callback_hit_count());
EXPECT_EQ(0, stop_share_callback_hit_count());
StopShareSession();
StopCaptureSession();
EXPECT_EQ(0, switch_callback_hit_count());
EXPECT_EQ(1, stop_capture_callback_hit_count());
EXPECT_EQ(1, stop_share_callback_hit_count());
}
// Test that with a screen capture operation going on, the user will need to
// confirm. Accepting will change to stopped state and switch users.
TEST_F(CanSwitchUserTest, CaptureActiveAccepted) {
EXPECT_EQ(0, switch_callback_hit_count());
StartCaptureSession();
SwitchUser(CanSwitchUserTest::ACCEPT_DIALOG);
EXPECT_EQ(1, switch_callback_hit_count());
EXPECT_EQ(1, stop_capture_callback_hit_count());
EXPECT_EQ(0, stop_share_callback_hit_count());
// Another stop should have no effect.
StopCaptureSession();
EXPECT_EQ(1, switch_callback_hit_count());
EXPECT_EQ(1, stop_capture_callback_hit_count());
EXPECT_EQ(0, stop_share_callback_hit_count());
}
// Test that with a screen share operation going on, the user will need to
// confirm. Accepting will change to stopped state and switch users.
TEST_F(CanSwitchUserTest, ShareActiveAccepted) {
EXPECT_EQ(0, switch_callback_hit_count());
StartShareSession();
SwitchUser(CanSwitchUserTest::ACCEPT_DIALOG);
EXPECT_EQ(1, switch_callback_hit_count());
EXPECT_EQ(0, stop_capture_callback_hit_count());
EXPECT_EQ(1, stop_share_callback_hit_count());
// Another stop should have no effect.
StopShareSession();
EXPECT_EQ(1, switch_callback_hit_count());
EXPECT_EQ(0, stop_capture_callback_hit_count());
EXPECT_EQ(1, stop_share_callback_hit_count());
}
// Test that with both operations going on, the user will need to confirm.
// Accepting will change to stopped state and switch users.
TEST_F(CanSwitchUserTest, BothActiveAccepted) {
EXPECT_EQ(0, switch_callback_hit_count());
StartShareSession();
StartCaptureSession();
SwitchUser(CanSwitchUserTest::ACCEPT_DIALOG);
EXPECT_EQ(1, switch_callback_hit_count());
EXPECT_EQ(1, stop_capture_callback_hit_count());
EXPECT_EQ(1, stop_share_callback_hit_count());
// Another stop should have no effect.
StopShareSession();
StopCaptureSession();
EXPECT_EQ(1, switch_callback_hit_count());
EXPECT_EQ(1, stop_capture_callback_hit_count());
EXPECT_EQ(1, stop_share_callback_hit_count());
}
using SessionControllerImplUnblockTest = NoSessionAshTestBase;
TEST_F(SessionControllerImplUnblockTest, ActiveWindowAfterUnblocking) {
EXPECT_TRUE(Shell::Get()->session_controller()->IsUserSessionBlocked());
auto widget = CreateTestWidget();
// |widget| should not be active as it is blocked by SessionControllerImpl.
EXPECT_FALSE(widget->IsActive());
SimulateUserLogin("user@test.com");
EXPECT_FALSE(Shell::Get()->session_controller()->IsUserSessionBlocked());
// |widget| should now be active as SessionControllerImpl no longer is
// blocking windows from becoming active.
EXPECT_TRUE(widget->IsActive());
}
} // namespace
} // namespace ash