/* * Copyright (C) 2019 The Android Open Source Project * * 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 * * http://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. */ #include #include #undef NAN // NAN is defined in bionic/libc/include/math.h:38 #include #include #include #include #include #include #include #include "wifi_hidl_call_util.h" #include "wifi_hidl_test_utils.h" using ::android::sp; using ::android::hardware::hidl_string; using ::android::hardware::hidl_vec; using ::android::hardware::Return; using ::android::hardware::Void; using ::android::hardware::wifi::V1_0::ChipModeId; using ::android::hardware::wifi::V1_0::IfaceType; using ::android::hardware::wifi::V1_0::WifiDebugRingBufferStatus; using ::android::hardware::wifi::V1_0::WifiStatus; using ::android::hardware::wifi::V1_0::WifiStatusCode; using ::android::hardware::wifi::V1_3::IWifiStaIface; using ::android::hardware::wifi::V1_4::IWifiChip; using ::android::hardware::wifi::V1_4::IWifiChipEventCallback; /** * Fixture to use for all Wifi chip HIDL interface tests. */ class WifiChipHidlTest : public ::testing::TestWithParam { public: virtual void SetUp() override { // Make sure to start with a clean state stopWifi(GetInstanceName()); wifi_chip_ = IWifiChip::castFrom(getWifiChip(GetInstanceName())); ASSERT_NE(nullptr, wifi_chip_.get()); } virtual void TearDown() override { stopWifi(GetInstanceName()); } // A simple test implementation of WifiChipEventCallback. class WifiChipEventCallback : public ::testing::VtsHalHidlTargetCallbackBase, public IWifiChipEventCallback { public: WifiChipEventCallback(){}; virtual ~WifiChipEventCallback() = default; Return onChipReconfigured(uint32_t modeId __unused) { return Void(); }; Return onChipReconfigureFailure( const WifiStatus& status __unused) { return Void(); }; Return onIfaceAdded(IfaceType type __unused, const hidl_string& name __unused) { return Void(); }; Return onIfaceRemoved(IfaceType type __unused, const hidl_string& name __unused) { return Void(); }; Return onDebugRingBufferDataAvailable( const WifiDebugRingBufferStatus& status __unused, const hidl_vec& data __unused) { return Void(); }; Return onDebugErrorAlert(int32_t errorCode __unused, const hidl_vec& debugData __unused) { return Void(); }; Return onRadioModeChange( const hidl_vec<::android::hardware::wifi::V1_2:: IWifiChipEventCallback::RadioModeInfo>& radioModeInfos __unused) { return Void(); }; Return onRadioModeChange_1_4( const hidl_vec& radioModeInfos __unused) { return Void(); }; }; protected: // Helper function to configure the Chip in one of the supported modes. // Most of the non-mode-configuration-related methods require chip // to be first configured. ChipModeId configureChipForIfaceType(IfaceType type, bool expectSuccess) { ChipModeId mode_id; EXPECT_EQ(expectSuccess, configureChipToSupportIfaceType(wifi_chip_, type, &mode_id)); return mode_id; } sp wifi_chip_; private: std::string GetInstanceName() { return GetParam(); } }; /* * registerEventCallback_1_4 * This test case tests the registerEventCallback_1_4() API which registers * a call back function with the hal implementation * * Note: it is not feasible to test the invocation of the call back function * since event is triggered internally in the HAL implementation, and can not be * triggered from the test case */ TEST_P(WifiChipHidlTest, registerEventCallback_1_4) { sp wifiChipEventCallback = new WifiChipEventCallback(); const auto& status = HIDL_INVOKE(wifi_chip_, registerEventCallback_1_4, wifiChipEventCallback); if (status.code != WifiStatusCode::SUCCESS) { EXPECT_EQ(WifiStatusCode::ERROR_NOT_SUPPORTED, status.code); return; } } GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(WifiChipHidlTest); INSTANTIATE_TEST_SUITE_P( PerInstance, WifiChipHidlTest, testing::ValuesIn(android::hardware::getAllHalInstanceNames( ::android::hardware::wifi::V1_4::IWifi::descriptor)), android::hardware::PrintInstanceNameToString);