mock_adapter.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. #pragma once
  17. #include <gmock/gmock.h>
  18. #include "service/daemon.h"
  19. namespace bluetooth {
  20. namespace testing {
  21. class MockAdapter : public Adapter {
  22. public:
  23. MockAdapter() = default;
  24. ~MockAdapter() override = default;
  25. MOCK_METHOD1(AddObserver, void(Observer*));
  26. MOCK_METHOD1(RemoveObserver, void(Observer*));
  27. MOCK_CONST_METHOD0(GetState, AdapterState());
  28. MOCK_CONST_METHOD0(IsEnabled, bool());
  29. MOCK_METHOD0(Enable, bool());
  30. MOCK_METHOD0(Disable, bool());
  31. MOCK_CONST_METHOD0(GetName, std::string());
  32. MOCK_METHOD1(SetName, bool(const std::string&));
  33. MOCK_CONST_METHOD0(GetAddress, std::string());
  34. MOCK_METHOD1(SetScanMode, bool(int));
  35. MOCK_METHOD1(SetScanEnable, bool(bool));
  36. MOCK_METHOD4(SspReply, bool(const std::string&, int, bool, int32_t));
  37. MOCK_METHOD2(CreateBond,
  38. bool(const std::string& device_address, int transport));
  39. MOCK_METHOD0(IsMultiAdvertisementSupported, bool());
  40. MOCK_METHOD1(IsDeviceConnected, bool(const std::string&));
  41. MOCK_METHOD0(GetTotalNumberOfTrackableAdvertisements, int());
  42. MOCK_METHOD0(IsOffloadedFilteringSupported, bool());
  43. MOCK_METHOD0(IsOffloadedScanBatchingSupported, bool());
  44. MOCK_METHOD0(GetBondedDevices, bool());
  45. MOCK_METHOD1(RemoveBond, bool(const std::string&));
  46. MOCK_METHOD1(GetRemoteDeviceProperties,
  47. bool(const std::string& device_address));
  48. MOCK_CONST_METHOD0(GetA2dpSinkFactory, A2dpSinkFactory*());
  49. MOCK_CONST_METHOD0(GetA2dpSourceFactory, A2dpSourceFactory*());
  50. MOCK_CONST_METHOD0(GetAvrcpControlFactory, AvrcpControlFactory*());
  51. MOCK_CONST_METHOD0(GetAvrcpTargetFactory, AvrcpTargetFactory*());
  52. MOCK_CONST_METHOD0(GetLowEnergyClientFactory, LowEnergyClientFactory*());
  53. MOCK_CONST_METHOD0(GetLeAdvertiserFactory, LowEnergyAdvertiserFactory*());
  54. MOCK_CONST_METHOD0(GetLeScannerFactory, LowEnergyScannerFactory*());
  55. MOCK_CONST_METHOD0(GetGattClientFactory, GattClientFactory*());
  56. MOCK_CONST_METHOD0(GetGattServerFactory, GattServerFactory*());
  57. private:
  58. DISALLOW_COPY_AND_ASSIGN(MockAdapter);
  59. };
  60. } // namespace testing
  61. } // namespace bluetooth