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

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: comments and rebase 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
« no previous file with comments | « ash/login/lock_screen_controller.cc ('k') | ash/login/mock_lock_screen_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 EXPECT_CALL(*client, HardlockPod(id)); 60 EXPECT_CALL(*client, HardlockPod(id));
61 controller->HardlockPod(id); 61 controller->HardlockPod(id);
62 base::RunLoop().RunUntilIdle(); 62 base::RunLoop().RunUntilIdle();
63 63
64 // Verify RecordClickOnLockIcon mojo call is run with the same account id. 64 // Verify RecordClickOnLockIcon mojo call is run with the same account id.
65 EXPECT_CALL(*client, RecordClickOnLockIcon(id)); 65 EXPECT_CALL(*client, RecordClickOnLockIcon(id));
66 controller->RecordClickOnLockIcon(id); 66 controller->RecordClickOnLockIcon(id);
67 base::RunLoop().RunUntilIdle(); 67 base::RunLoop().RunUntilIdle();
68 } 68 }
69 69
70 TEST_F(LockScreenControllerTest, RequestUserPodFocus) {
71 LockScreenController* controller = Shell::Get()->lock_screen_controller();
72 std::unique_ptr<MockLockScreenClient> client = BindMockLockScreenClient();
73
74 AccountId id = AccountId::FromUserEmail("user1@test.com");
75
76 // Verify FocusPod mojo call is run with the same account id.
77 EXPECT_CALL(*client, OnFocusPod(id));
78 controller->OnFocusPod(id);
79 base::RunLoop().RunUntilIdle();
80
81 // Verify NoPodFocused mojo call is run.
82 EXPECT_CALL(*client, OnNoPodFocused());
83 controller->OnNoPodFocused();
84 base::RunLoop().RunUntilIdle();
85 }
86
70 } // namespace 87 } // namespace
71 } // namespace ash 88 } // namespace ash
OLDNEW
« no previous file with comments | « ash/login/lock_screen_controller.cc ('k') | ash/login/mock_lock_screen_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698