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

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

Issue 2896093003: cros: Make sure views-based lock screen is destroyed after it is dismissed. (Closed)
Patch Set: Address comments 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"
11 11
12 using ::testing::_; 12 using ::testing::_;
13 13
14 namespace ash { 14 namespace ash {
15 15
16 namespace { 16 namespace {
17 using LockScreenControllerTest = test::AshTestBase; 17 using LockScreenControllerTest = test::AshTestBase;
18 } // namespace
19 18
20 TEST_F(LockScreenControllerTest, RequestAuthentication) { 19 TEST_F(LockScreenControllerTest, RequestAuthentication) {
21 LockScreenController* controller = Shell::Get()->lock_screen_controller(); 20 LockScreenController* controller = Shell::Get()->lock_screen_controller();
22 std::unique_ptr<MockLockScreenClient> client = BindMockLockScreenClient(); 21 std::unique_ptr<MockLockScreenClient> client = BindMockLockScreenClient();
23 22
24 AccountId id = AccountId::FromUserEmail("user1@test.com"); 23 AccountId id = AccountId::FromUserEmail("user1@test.com");
25 24
26 // We hardcode the hashed password. This is fine because the password hash 25 // We hardcode the hashed password. This is fine because the password hash
27 // algorithm should never accidently change; if it does we will need to 26 // algorithm should never accidentally change; if it does we will need to
28 // have cryptohome migration code and one failing test isn't a problem. 27 // have cryptohome migration code and one failing test isn't a problem.
29 std::string password = "password"; 28 std::string password = "password";
30 std::string hashed_password = "40c7b00f3bccc7675ec5b732de4bfbe4"; 29 std::string hashed_password = "40c7b00f3bccc7675ec5b732de4bfbe4";
31 EXPECT_NE(password, hashed_password); 30 EXPECT_NE(password, hashed_password);
32 31
33 // Verify AuthenticateUser mojo call is run with the same account id, a 32 // Verify AuthenticateUser mojo call is run with the same account id, a
34 // (hashed) password, and the correct PIN state. 33 // (hashed) password, and the correct PIN state.
35 EXPECT_CALL(*client, AuthenticateUser(id, hashed_password, false)); 34 EXPECT_CALL(*client, AuthenticateUser_(id, hashed_password, false, _));
36 controller->AuthenticateUser(id, password, false); 35 base::Optional<bool> callback_result;
36 controller->AuthenticateUser(
37 id, password, false,
38 base::BindOnce([](base::Optional<bool>* result,
39 bool did_auth) { *result = did_auth; },
40 &callback_result));
37 41
38 base::RunLoop().RunUntilIdle(); 42 base::RunLoop().RunUntilIdle();
43
44 EXPECT_TRUE(callback_result.has_value());
45 EXPECT_TRUE(*callback_result);
39 } 46 }
40 47
41 TEST_F(LockScreenControllerTest, RequestEasyUnlock) { 48 TEST_F(LockScreenControllerTest, RequestEasyUnlock) {
42 LockScreenController* controller = Shell::Get()->lock_screen_controller(); 49 LockScreenController* controller = Shell::Get()->lock_screen_controller();
43 std::unique_ptr<MockLockScreenClient> client = BindMockLockScreenClient(); 50 std::unique_ptr<MockLockScreenClient> client = BindMockLockScreenClient();
44 51
45 AccountId id = AccountId::FromUserEmail("user1@test.com"); 52 AccountId id = AccountId::FromUserEmail("user1@test.com");
46 53
47 // Verify AttemptUnlock mojo call is run with the same account id. 54 // Verify AttemptUnlock mojo call is run with the same account id.
48 EXPECT_CALL(*client, AttemptUnlock(id)); 55 EXPECT_CALL(*client, AttemptUnlock(id));
49 controller->AttemptUnlock(id); 56 controller->AttemptUnlock(id);
50 base::RunLoop().RunUntilIdle(); 57 base::RunLoop().RunUntilIdle();
51 58
52 // Verify HardlockPod mojo call is run with the same account id. 59 // Verify HardlockPod mojo call is run with the same account id.
53 EXPECT_CALL(*client, HardlockPod(id)); 60 EXPECT_CALL(*client, HardlockPod(id));
54 controller->HardlockPod(id); 61 controller->HardlockPod(id);
55 base::RunLoop().RunUntilIdle(); 62 base::RunLoop().RunUntilIdle();
56 63
57 // Verify RecordClickOnLockIcon mojo call is run with the same account id. 64 // Verify RecordClickOnLockIcon mojo call is run with the same account id.
58 EXPECT_CALL(*client, RecordClickOnLockIcon(id)); 65 EXPECT_CALL(*client, RecordClickOnLockIcon(id));
59 controller->RecordClickOnLockIcon(id); 66 controller->RecordClickOnLockIcon(id);
60 base::RunLoop().RunUntilIdle(); 67 base::RunLoop().RunUntilIdle();
61 } 68 }
62 69
70 } // namespace
63 } // namespace ash 71 } // 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