blob: a29d392bf2c4b074527432dd8ef9c341441f69e8 [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/interfaces/login_screen.mojom.h"
#include "components/password_manager/core/browser/hash_password_manager.h"
#include "mojo/public/cpp/bindings/binding_set.h"
#include "testing/gmock/include/gmock/gmock.h"
namespace ash {
class MockLoginScreenClient : public mojom::LoginScreenClient {
public:
MockLoginScreenClient();
~MockLoginScreenClient() override;
mojom::LoginScreenClientPtr CreateInterfacePtrAndBind();
MOCK_METHOD5(
AuthenticateUser_,
void(const AccountId& account_id,
const std::string& password,
const password_manager::SyncPasswordData& sync_password_data_unused,
bool authenticated_by_pin,
AuthenticateUserCallback& callback));
// Set the result that should be passed to |callback| in |AuthenticateUser|.
void set_authenticate_user_callback_result(bool value) {
authenticate_user_callback_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_callback_storage(
AuthenticateUserCallback* storage) {
authenticate_user_callback_storage_ = storage;
}
// mojom::LoginScreenClient:
void AuthenticateUser(
const AccountId& account_id,
const std::string& password,
const password_manager::SyncPasswordData& sync_password_data,
bool authenticated_by_pin,
AuthenticateUserCallback callback) override;
MOCK_METHOD1(AttemptUnlock, void(const AccountId& account_id));
MOCK_METHOD1(HardlockPod, void(const AccountId& account_id));
MOCK_METHOD1(RecordClickOnLockIcon, void(const AccountId& account_id));
MOCK_METHOD1(OnFocusPod, void(const AccountId& account_id));
MOCK_METHOD0(OnNoPodFocused, void());
MOCK_METHOD1(LoadWallpaper, void(const AccountId& account_id));
MOCK_METHOD0(SignOutUser, void());
MOCK_METHOD0(CancelAddUser, void());
MOCK_METHOD0(LoginAsGuest, void());
MOCK_METHOD1(OnMaxIncorrectPasswordAttempted,
void(const AccountId& account_id));
MOCK_METHOD1(FocusLockScreenApps, void(bool reverse));
private:
bool authenticate_user_callback_result_ = true;
AuthenticateUserCallback* authenticate_user_callback_storage_ = nullptr;
mojo::Binding<mojom::LoginScreenClient> binding_;
DISALLOW_COPY_AND_ASSIGN(MockLoginScreenClient);
};
// Helper method to bind a login screen client so it receives all mojo calls.
std::unique_ptr<MockLoginScreenClient> BindMockLoginScreenClient();
} // namespace ash
#endif // ASH_LOGIN_MOCK_LOGIN_SCREEN_CLIENT_H_