| Index: components/proximity_auth/mock_proximity_auth_client.h
|
| diff --git a/components/proximity_auth/mock_proximity_auth_client.h b/components/proximity_auth/mock_proximity_auth_client.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b4f6fa3188b087a94b95aeffa0e2a86d1e89a29e
|
| --- /dev/null
|
| +++ b/components/proximity_auth/mock_proximity_auth_client.h
|
| @@ -0,0 +1,50 @@
|
| +// Copyright 2015 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 COMPONENTS_PROXIMITY_AUTH_MOCK_PROXIMITY_AUTH_CLIENT_H_
|
| +#define COMPONENTS_PROXIMITY_AUTH_MOCK_PROXIMITY_AUTH_CLIENT_H_
|
| +
|
| +#include <string>
|
| +
|
| +#include "components/proximity_auth/cryptauth/cryptauth_client.h"
|
| +#include "components/proximity_auth/cryptauth/cryptauth_device_manager.h"
|
| +#include "components/proximity_auth/cryptauth/cryptauth_enrollment_manager.h"
|
| +#include "components/proximity_auth/cryptauth/secure_message_delegate.h"
|
| +#include "components/proximity_auth/proximity_auth_client.h"
|
| +#include "testing/gmock/include/gmock/gmock.h"
|
| +
|
| +namespace proximity_auth {
|
| +
|
| +// Mock implementation of ProximityAuthClient.
|
| +class MockProximityAuthClient : public ProximityAuthClient {
|
| + public:
|
| + MockProximityAuthClient();
|
| + ~MockProximityAuthClient() override;
|
| +
|
| + // ProximityAuthClient:
|
| + MOCK_METHOD1(UpdateScreenlockState,
|
| + void(proximity_auth::ScreenlockState state));
|
| + MOCK_METHOD1(FinalizeUnlock, void(bool success));
|
| + MOCK_METHOD1(FinalizeSignin, void(const std::string& secret));
|
| + MOCK_CONST_METHOD0(GetAuthenticatedUsername, std::string(void));
|
| + MOCK_METHOD0(GetPrefService, PrefService*(void));
|
| + MOCK_METHOD0(GetDeviceClassifier, cryptauth::DeviceClassifier(void));
|
| + MOCK_METHOD0(GetAccountId, std::string(void));
|
| + MOCK_METHOD0(GetCryptAuthEnrollmentManager,
|
| + CryptAuthEnrollmentManager*(void));
|
| + MOCK_METHOD0(GetCryptAuthDeviceManager, CryptAuthDeviceManager*(void));
|
| + scoped_ptr<SecureMessageDelegate> CreateSecureMessageDelegate() override;
|
| + scoped_ptr<CryptAuthClientFactory> CreateCryptAuthClientFactory() override;
|
| +
|
| + // Proxy mock methods because implementation requires returning scoped_ptr.
|
| + MOCK_METHOD0(CreateSecureMessageDelegatePtr, SecureMessageDelegate*(void));
|
| + MOCK_METHOD0(CreateCryptAuthClientFactoryPtr, CryptAuthClientFactory*(void));
|
| +
|
| + private:
|
| + DISALLOW_COPY_AND_ASSIGN(MockProximityAuthClient);
|
| +};
|
| +
|
| +} // namespace proximity_auth
|
| +
|
| +#endif // COMPONENTS_PROXIMITY_AUTH_MOCK_PROXIMITY_AUTH_CLIENT_H_
|
|
|