blob: f232ac9a343a917e2adc92ca0ee2091e9a206f34 [file] [log] [blame]
// Copyright 2017 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.
#ifndef ASH_LOGIN_MOCK_LOGIN_SCREEN_CLIENT_H_
#define ASH_LOGIN_MOCK_LOGIN_SCREEN_CLIENT_H_
#include "ash/public/cpp/login_screen_client.h"
#include "base/time/time.h"
#include "components/password_manager/core/browser/hash_password_manager.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace ash {
class MockLoginScreenClient : public LoginScreenClient {
public:
MockLoginScreenClient();
~MockLoginScreenClient() override;
MOCK_METHOD(void,
AuthenticateUserWithPasswordOrPin_,
(const AccountId& account_id,
const std::string& password,
bool authenticated_by_pin,
base::OnceCallback<void(bool)>& callback));
MOCK_METHOD(void,
AuthenticateUserWithExternalBinary_,
(const AccountId& account_id,
base::OnceCallback<void(bool)>& callback));
MOCK_METHOD(void,
EnrollUserWithExternalBinary_,
(base::OnceCallback<void(bool)> & callback));
MOCK_METHOD(void,
AuthenticateUserWithChallengeResponse_,
(const AccountId& account_id,
base::OnceCallback<void(bool)>& callback));
MOCK_METHOD(bool,
ValidateParentAccessCode_,
(const AccountId& account_id,
const std::string& access_code,
base::Time validation_time));
// Set the result that should be passed to |callback| in
// |AuthenticateUserWithPasswordOrPin| or
// |AuthenticateUserWithExternalBinary|.
void set_authenticate_user_callback_result(bool value) {
authenticate_user_callback_result_ = value;
}
// Sets the result that should be passed to |callback| in
// |ValidateParentAccessCode|.
void set_validate_parent_access_code_result(bool value) {
validate_parent_access_code_result_ = value;
}
// If set to non-null, when |AuthenticateUser| is called the callback will be
// stored in |storage| instead of being executed.
void set_authenticate_user_with_password_or_pin_callback_storage(
base::OnceCallback<void(bool)>* storage) {
authenticate_user_with_password_or_pin_callback_storage_ = storage;
}
void set_authenticate_user_with_external_binary_storage(
base::OnceCallback<void(bool)>* storage) {
authenticate_user_with_external_binary_callback_storage_ = storage;
}
void set_enroll_user_with_external_binary_storage(
base::OnceCallback<void(bool)>* storage) {
enroll_user_with_external_binary_callback_storage_ = storage;
}
// LoginScreenClient:
void AuthenticateUserWithPasswordOrPin(
const AccountId& account_id,
const std::string& password,
bool authenticated_by_pin,
base::OnceCallback<void(bool)> callback) override;
void AuthenticateUserWithExternalBinary(
const AccountId& account_id,
base::OnceCallback<void(bool)> callback) override;
void EnrollUserWithExternalBinary(
base::OnceCallback<void(bool)> callback) override;
void AuthenticateUserWithChallengeResponse(
const AccountId& account_id,
base::OnceCallback<void(bool)> callback) override;
bool ValidateParentAccessCode(const AccountId& account_id,
const std::string& code,
base::Time validation_time) override;
MOCK_METHOD(void,
AuthenticateUserWithEasyUnlock,
(const AccountId& account_id),
(override));
MOCK_METHOD(void, HardlockPod, (const AccountId& account_id), (override));
MOCK_METHOD(void, OnFocusPod, (const AccountId& account_id), (override));
MOCK_METHOD(void, OnNoPodFocused, (), (override));
MOCK_METHOD(void, LoadWallpaper, (const AccountId& account_id), (override));
MOCK_METHOD(void, SignOutUser, (), (override));
MOCK_METHOD(void, CancelAddUser, (), (override));
MOCK_METHOD(void, LoginAsGuest, (), (override));
MOCK_METHOD(void,
OnMaxIncorrectPasswordAttempted,
(const AccountId& account_id),
(override));
MOCK_METHOD(void, FocusLockScreenApps, (bool reverse), (override));
MOCK_METHOD(void,
ShowGaiaSignin,
(bool can_close, const AccountId& prefilled_account),
(override));
MOCK_METHOD(void, OnRemoveUserWarningShown, (), (override));
MOCK_METHOD(void, RemoveUser, (const AccountId& account_id), (override));
MOCK_METHOD(void,
LaunchPublicSession,
(const AccountId& account_id,
const std::string& locale,
const std::string& input_method),
(override));
MOCK_METHOD(void,
RequestPublicSessionKeyboardLayouts,
(const AccountId& account_id, const std::string& locale),
(override));
MOCK_METHOD(void, ShowFeedback, (), (override));
MOCK_METHOD(void, ShowResetScreen, (), (override));
MOCK_METHOD(void, ShowAccountAccessHelpApp, (), (override));
MOCK_METHOD(void, ShowLockScreenNotificationSettings, (), (override));
MOCK_METHOD(void, FocusOobeDialog, (), (override));
MOCK_METHOD(void, OnFocusLeavingSystemTray, (bool reverse), (override));
MOCK_METHOD(void, OnUserActivity, (), (override));
private:
bool authenticate_user_callback_result_ = true;
bool validate_parent_access_code_result_ = true;
base::OnceCallback<void(bool)>*
authenticate_user_with_password_or_pin_callback_storage_ = nullptr;
base::OnceCallback<void(bool)>*
authenticate_user_with_external_binary_callback_storage_ = nullptr;
base::OnceCallback<void(bool)>*
enroll_user_with_external_binary_callback_storage_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(MockLoginScreenClient);
};
} // namespace ash
#endif // ASH_LOGIN_MOCK_LOGIN_SCREEN_CLIENT_H_