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
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/ash/in_session_auth_dialog_client.h"
#include "ash/constants/ash_features.h"
#include "ash/public/cpp/in_session_auth_dialog_client.h"
#include "ash/public/cpp/webauthn_dialog_controller.h"
#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/run_loop.h"
#include "base/strings/utf_string_conversions.h"
#include "base/test/bind.h"
#include "chrome/browser/ash/login/users/fake_chrome_user_manager.h"
#include "chrome/browser/ash/profiles/profile_helper.h"
#include "chromeos/ash/components/cryptohome/system_salt_getter.h"
#include "chromeos/ash/components/dbus/userdataauth/fake_cryptohome_misc_client.h"
#include "chromeos/ash/components/dbus/userdataauth/fake_userdataauth_client.h"
#include "chromeos/ash/components/dbus/userdataauth/userdataauth_client.h"
#include "chromeos/ash/components/login/auth/fake_extended_authenticator.h"
#include "chromeos/ash/components/login/auth/public/cryptohome_key_constants.h"
#include "components/account_id/account_id.h"
#include "components/user_manager/scoped_user_manager.h"
#include "content/public/test/browser_task_environment.h"
#include "testing/gtest/include/gtest/gtest.h"
using ::ash::FakeExtendedAuthenticator;
using ::ash::Key;
using ::ash::UserContext;
namespace {
const char kPassword[] = "password";
const char kWrongPassword[] = "wrong_password";
const AccountId kAccountId = AccountId::FromUserEmail("testemail@example.com");
// InSessionAuthDialogClient's constructor expects to find an instance of
// ash::InSessionAuthDialogController, so provide a fake that does nothing.
class FakeInSessionAuthDialogController : public ash::WebAuthNDialogController {
public:
FakeInSessionAuthDialogController() = default;
~FakeInSessionAuthDialogController() override = default;
// ash::InSessionAuthDialogController:
void SetClient(ash::InSessionAuthDialogClient* client) override {}
void ShowAuthenticationDialog(aura::Window* source_window,
const std::string& origin_name,
FinishCallback callback) override {}
void DestroyAuthenticationDialog() override {}
void AuthenticateUserWithPasswordOrPin(
const std::string& password,
bool authenticated_by_pin,
OnAuthenticateCallback callback) override {}
void AuthenticateUserWithFingerprint(
base::OnceCallback<void(bool, ash::FingerprintState)> callback) override {
}
void OpenInSessionAuthHelpPage() override {}
void Cancel() override {}
void CheckAvailability(
FinishCallback on_availability_checked) const override {}
};
class InSessionAuthDialogClientTest : public testing::Test {
public:
InSessionAuthDialogClientTest() {
ash::UserDataAuthClient::InitializeFake();
ash::FakeUserDataAuthClient::TestApi::Get()->set_enable_auth_check(true);
ash::CryptohomeMiscClient::InitializeFake();
ash::SystemSaltGetter::Initialize();
client_ = std::make_unique<InSessionAuthDialogClient>();
}
~InSessionAuthDialogClientTest() override {
ash::SystemSaltGetter::Shutdown();
ash::CryptohomeMiscClient::Shutdown();
ash::UserDataAuthClient::Shutdown();
}
void SetupActiveUser() {
fake_user_manager_->AddUser(kAccountId);
fake_user_manager_->LoginUser(kAccountId);
auto* user = user_manager::UserManager::Get()->GetActiveUser();
ASSERT_TRUE(user);
// Set the profile mapping to avoid crashing in |OnPasswordAuthSuccess|.
ash::ProfileHelper::Get()->SetUserToProfileMappingForTesting(user, nullptr);
}
void SetExpectedContext(const UserContext& expected_user_context) {
fake_authenticator_ = base::MakeRefCounted<FakeExtendedAuthenticator>(
client_.get(), expected_user_context);
client_->SetExtendedAuthenticator(fake_authenticator_);
}
void AuthenticateUserWithPasswordOrPin(
const std::string& password,
bool authenticated_by_pin,
base::OnceCallback<void(bool)> callback) {
client_->AuthenticateUserWithPasswordOrPin(password, authenticated_by_pin,
std::move(callback));
}
void ConfigureExistingUserWithPassword(const AccountId& user,
const std::string& password) {
Key key(Key::KEY_TYPE_PASSWORD_PLAIN, std::string(), password);
key.Transform(Key::KEY_TYPE_SALTED_SHA256_TOP_HALF,
ash::SystemSaltGetter::ConvertRawSaltToHexString(
ash::FakeCryptohomeMiscClient::GetStubSystemSalt()));
cryptohome::Key cryptohome_key;
cryptohome_key.mutable_data()->set_label(ash::kCryptohomeGaiaKeyLabel);
cryptohome_key.set_secret(key.GetSecret());
auto* test_api = ash::FakeUserDataAuthClient::TestApi::Get();
auto account_id = cryptohome::CreateAccountIdentifierFromAccountId(user);
test_api->AddExistingUser(account_id);
test_api->AddKey(account_id, cryptohome_key);
}
void StartAuthSessionForActiveUser() {
base::RunLoop run_loop;
bool result = true;
client_->StartAuthSession(base::BindLambdaForTesting(
[&result](bool success) { result = success; }));
run_loop.RunUntilIdle();
EXPECT_TRUE(result);
}
protected:
// The ExtendedAuthenticator::AuthenticateToCheck task is posted to main (UI)
// thread.
const content::BrowserTaskEnvironment task_environment_;
raw_ptr<ash::FakeChromeUserManager, DanglingUntriaged | ExperimentalAsh>
fake_user_manager_{new ash::FakeChromeUserManager()};
user_manager::ScopedUserManager scoped_user_manager_{
base::WrapUnique(fake_user_manager_.get())};
std::unique_ptr<FakeInSessionAuthDialogController> fake_controller_{
std::make_unique<FakeInSessionAuthDialogController>()};
std::unique_ptr<InSessionAuthDialogClient> client_;
scoped_refptr<ash::FakeExtendedAuthenticator> fake_authenticator_;
};
TEST_F(InSessionAuthDialogClientTest, WrongPassword) {
SetupActiveUser();
const user_manager::User* const user =
user_manager::UserManager::Get()->GetActiveUser();
UserContext expected_user_context(*user);
Key key(Key::KEY_TYPE_PASSWORD_PLAIN, std::string(), kPassword);
expected_user_context.SetKey(key);
SetExpectedContext(expected_user_context);
ConfigureExistingUserWithPassword(user->GetAccountId(), kPassword);
StartAuthSessionForActiveUser();
base::RunLoop run_loop;
bool result = true;
AuthenticateUserWithPasswordOrPin(
kWrongPassword,
/* authenticated_by_pin = */ false,
base::BindLambdaForTesting(
[&result](bool success) { result = success; }));
run_loop.RunUntilIdle();
EXPECT_FALSE(result);
}
TEST_F(InSessionAuthDialogClientTest, PasswordAuthSuccess) {
SetupActiveUser();
const user_manager::User* const user =
user_manager::UserManager::Get()->GetActiveUser();
UserContext expected_user_context(*user);
expected_user_context.SetKey(
Key(Key::KEY_TYPE_PASSWORD_PLAIN, std::string(), kPassword));
SetExpectedContext(expected_user_context);
ConfigureExistingUserWithPassword(user->GetAccountId(), kPassword);
StartAuthSessionForActiveUser();
base::RunLoop run_loop;
bool result = false;
AuthenticateUserWithPasswordOrPin(
kPassword,
/* authenticated_by_pin = */ false,
base::BindLambdaForTesting(
[&result](bool success) { result = success; }));
run_loop.RunUntilIdle();
EXPECT_TRUE(result);
}
} // namespace
|