offload_test_utils.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * Copyright (C) 2016, The Android Open Source Project
  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. #ifndef WIFICOND_OFFLOAD_TEST_UTILS_H_
  17. #define WIFICOND_OFFLOAD_TEST_UTILS_H_
  18. #include <android/hardware/wifi/offload/1.0/IOffload.h>
  19. #include <vector>
  20. #include "wificond/scanning/offload/scan_stats.h"
  21. #include "wificond/scanning/scan_result.h"
  22. namespace android {
  23. namespace wificond {
  24. class OffloadTestUtils {
  25. public:
  26. static std::vector<android::hardware::wifi::offload::V1_0::ScanResult>
  27. createOffloadScanResults();
  28. static android::hardware::wifi::offload::V1_0::ScanStats createScanStats(
  29. ::com::android::server::wifi::wificond::
  30. NativeScanStats* /* nativeScanStats */);
  31. static android::hardware::wifi::offload::V1_0::OffloadStatus
  32. createOffloadStatus(
  33. android::hardware::wifi::offload::V1_0::OffloadStatusCode code);
  34. static android::hardware::wifi::offload::V1_0::OffloadStatus
  35. createOffloadStatus(
  36. android::hardware::wifi::offload::V1_0::OffloadStatusCode code,
  37. const std::string& desc);
  38. };
  39. } // namespace wificond
  40. } // namespace android
  41. #endif // WIFICOND_OFFLOAD_TEST_UTILS_H