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

Side by Side Diff: ash/login/lock_screen_controller_unittest.cc

Issue 2923773003: Adding mojo calls for several lock screen related operations. (Closed)
Patch Set: clean up Created 3 years, 6 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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 "ash/login/lock_screen_controller.h" 5 #include "ash/login/lock_screen_controller.h"
6 6
7 #include "ash/login/mock_lock_screen_client.h" 7 #include "ash/login/mock_lock_screen_client.h"
8 #include "ash/shell.h" 8 #include "ash/shell.h"
9 #include "ash/test/ash_test_base.h" 9 #include "ash/test/ash_test_base.h"
10 #include "base/run_loop.h" 10 #include "base/run_loop.h"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 EXPECT_CALL(*client, HardlockPod(id)); 53 EXPECT_CALL(*client, HardlockPod(id));
54 controller->HardlockPod(id); 54 controller->HardlockPod(id);
55 base::RunLoop().RunUntilIdle(); 55 base::RunLoop().RunUntilIdle();
56 56
57 // Verify RecordClickOnLockIcon mojo call is run with the same account id. 57 // Verify RecordClickOnLockIcon mojo call is run with the same account id.
58 EXPECT_CALL(*client, RecordClickOnLockIcon(id)); 58 EXPECT_CALL(*client, RecordClickOnLockIcon(id));
59 controller->RecordClickOnLockIcon(id); 59 controller->RecordClickOnLockIcon(id);
60 base::RunLoop().RunUntilIdle(); 60 base::RunLoop().RunUntilIdle();
61 } 61 }
62 62
63 TEST_F(LockScreenControllerTest, RequestUserPodFocus) {
64 LockScreenController* controller = Shell::Get()->lock_screen_controller();
65 std::unique_ptr<MockLockScreenClient> client = BindMockLockScreenClient();
66
67 AccountId id = AccountId::FromUserEmail("user1@test.com");
68
69 // Verify FocusPod mojo call is run with the same account id.
70 EXPECT_CALL(*client, FocusPod(id));
71 controller->FocusPod(id);
72 base::RunLoop().RunUntilIdle();
73
74 // Verify NoPodFocused mojo call is run.
75 EXPECT_CALL(*client, NoPodFocused());
76 controller->NoPodFocused();
77 base::RunLoop().RunUntilIdle();
78 }
79
63 } // namespace ash 80 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698