1 // 2 // Copyright 2015 Google, Inc. 3 // 4 // Licensed under the Apache License, Version 2.0 (the "License"); 5 // you may not use this file except in compliance with the License. 6 // You may obtain a copy of the License at: 7 // 8 // http://www.apache.org/licenses/LICENSE-2.0 9 // 10 // Unless required by applicable law or agreed to in writing, software 11 // distributed under the License is distributed on an "AS IS" BASIS, 12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 // See the License for the specific language governing permissions and 14 // limitations under the License. 15 // 16 17 #pragma once 18 19 #include <gmock/gmock.h> 20 21 #include "service/daemon.h" 22 23 namespace bluetooth { 24 namespace testing { 25 26 class MockAdapter : public Adapter { 27 public: 28 MockAdapter() = default; 29 ~MockAdapter() override = default; 30 31 MOCK_METHOD1(AddObserver, void(Observer*)); 32 MOCK_METHOD1(RemoveObserver, void(Observer*)); 33 MOCK_CONST_METHOD0(GetState, AdapterState()); 34 MOCK_CONST_METHOD0(IsEnabled, bool()); 35 MOCK_METHOD0(Enable, bool()); 36 MOCK_METHOD0(Disable, bool()); 37 MOCK_CONST_METHOD0(GetName, std::string()); 38 MOCK_METHOD1(SetName, bool(const std::string&)); 39 MOCK_CONST_METHOD0(GetAddress, std::string()); 40 MOCK_METHOD1(SetScanMode, bool(int)); 41 MOCK_METHOD1(SetScanEnable, bool(bool)); 42 MOCK_METHOD4(SspReply, bool(const std::string&, int, bool, int32_t)); 43 MOCK_METHOD2(CreateBond, 44 bool(const std::string& device_address, int transport)); 45 MOCK_METHOD0(IsMultiAdvertisementSupported, bool()); 46 MOCK_METHOD1(IsDeviceConnected, bool(const std::string&)); 47 MOCK_METHOD0(GetTotalNumberOfTrackableAdvertisements, int()); 48 MOCK_METHOD0(IsOffloadedFilteringSupported, bool()); 49 MOCK_METHOD0(IsOffloadedScanBatchingSupported, bool()); 50 MOCK_METHOD0(GetBondedDevices, bool()); 51 MOCK_METHOD1(RemoveBond, bool(const std::string&)); 52 MOCK_METHOD1(GetRemoteDeviceProperties, 53 bool(const std::string& device_address)); 54 MOCK_CONST_METHOD0(GetA2dpSinkFactory, A2dpSinkFactory*()); 55 MOCK_CONST_METHOD0(GetA2dpSourceFactory, A2dpSourceFactory*()); 56 MOCK_CONST_METHOD0(GetAvrcpControlFactory, AvrcpControlFactory*()); 57 MOCK_CONST_METHOD0(GetAvrcpTargetFactory, AvrcpTargetFactory*()); 58 MOCK_CONST_METHOD0(GetLowEnergyClientFactory, LowEnergyClientFactory*()); 59 MOCK_CONST_METHOD0(GetLeAdvertiserFactory, LowEnergyAdvertiserFactory*()); 60 MOCK_CONST_METHOD0(GetLeScannerFactory, LowEnergyScannerFactory*()); 61 MOCK_CONST_METHOD0(GetGattClientFactory, GattClientFactory*()); 62 MOCK_CONST_METHOD0(GetGattServerFactory, GattServerFactory*()); 63 64 private: 65 DISALLOW_COPY_AND_ASSIGN(MockAdapter); 66 }; 67 68 } // namespace testing 69 } // namespace bluetooth 70