mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 14:46:12 -04:00
86 lines
3.3 KiB
C++
86 lines
3.3 KiB
C++
// Copyright 2023 Google LLC
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef THIRD_PARTY_NEARBY_SHARING_INTERNAL_API_MOCK_SHARING_PLATFORM_H_
|
|
#define THIRD_PARTY_NEARBY_SHARING_INTERNAL_API_MOCK_SHARING_PLATFORM_H_
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "location/nearby/sharing/lib/account/account_manager.h"
|
|
#include "gmock/gmock.h"
|
|
#include "absl/strings/string_view.h"
|
|
#include "internal/base/file_path.h"
|
|
#include "internal/platform/implementation/device_info.h"
|
|
#include "internal/platform/task_runner.h"
|
|
#include "sharing/internal/api/app_info.h"
|
|
#include "sharing/internal/api/bluetooth_adapter.h"
|
|
#include "sharing/internal/api/fast_init_ble_beacon.h"
|
|
#include "sharing/internal/api/fast_initiation_manager.h"
|
|
#include "sharing/internal/api/network_monitor.h"
|
|
#include "sharing/internal/api/preference_manager.h"
|
|
#include "sharing/internal/api/public_certificate_database.h"
|
|
#include "sharing/internal/api/sharing_platform.h"
|
|
#include "sharing/internal/api/system_info.h"
|
|
|
|
namespace nearby::sharing::api {
|
|
|
|
class MockSharingPlatform : public SharingPlatform {
|
|
public:
|
|
MockSharingPlatform() = default;
|
|
MockSharingPlatform(const MockSharingPlatform&) = delete;
|
|
MockSharingPlatform& operator=(const MockSharingPlatform&) = delete;
|
|
~MockSharingPlatform() override = default;
|
|
|
|
MOCK_METHOD(void, InitProductIdGetter,
|
|
(absl::string_view(*product_id_getter)()), (override));
|
|
|
|
MOCK_METHOD(std::unique_ptr<nearby::api::NetworkMonitor>,
|
|
CreateNetworkMonitor,
|
|
(std::function<void(bool)> lan_connected_callback,
|
|
std::function<void(bool)> internet_connected_callback),
|
|
(override));
|
|
|
|
MOCK_METHOD(nearby::sharing::api::BluetoothAdapter&, GetBluetoothAdapter, (),
|
|
(override));
|
|
|
|
MOCK_METHOD(nearby::api::FastInitBleBeacon&, GetFastInitBleBeacon, (),
|
|
(override));
|
|
|
|
MOCK_METHOD(nearby::api::FastInitiationManager&, GetFastInitiationManager, (),
|
|
(override));
|
|
|
|
MOCK_METHOD(std::unique_ptr<nearby::api::SystemInfo>, CreateSystemInfo, (),
|
|
(override));
|
|
|
|
MOCK_METHOD(std::unique_ptr<nearby::api::AppInfo>, CreateAppInfo, (),
|
|
(override));
|
|
|
|
MOCK_METHOD(PreferenceManager&, GetPreferenceManager, (), (override));
|
|
|
|
MOCK_METHOD(AccountManager&, GetAccountManager, (), (override));
|
|
MOCK_METHOD(TaskRunner&, GetDefaultTaskRunner, (), (override));
|
|
MOCK_METHOD(nearby::api::DeviceInfo&, GetDeviceInfo, (), (override));
|
|
MOCK_METHOD(std::unique_ptr<PublicCertificateDatabase>,
|
|
CreatePublicCertificateDatabase, (const FilePath& database_path),
|
|
(override));
|
|
MOCK_METHOD(bool, UpdateFileOriginMetadata,
|
|
(std::vector<FilePath> & file_paths), (override));
|
|
};
|
|
|
|
} // namespace nearby::sharing::api
|
|
|
|
#endif // THIRD_PARTY_NEARBY_SHARING_INTERNAL_API_MOCK_SHARING_PLATFORM_H_
|