diff options
-rw-r--r-- | wifi/1.6/vts/functional/wifi_chip_hidl_test.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/wifi/1.6/vts/functional/wifi_chip_hidl_test.cpp b/wifi/1.6/vts/functional/wifi_chip_hidl_test.cpp index d1d4336222..7c5b7e623b 100644 --- a/wifi/1.6/vts/functional/wifi_chip_hidl_test.cpp +++ b/wifi/1.6/vts/functional/wifi_chip_hidl_test.cpp @@ -91,6 +91,9 @@ TEST_P(WifiChipHidlTest, getUsableChannels_1_6) { WifiBand band = WifiBand::BAND_24GHZ_5GHZ_6GHZ; const auto& statusNonEmpty = HIDL_INVOKE(wifi_chip_, getUsableChannels_1_6, band, ifaceModeMask, filterMask); + if (statusNonEmpty.first.code == WifiStatusCode::ERROR_NOT_SUPPORTED) { + GTEST_SKIP() << "Skipping this test since getUsableChannels() is not supported by vendor."; + } EXPECT_EQ(WifiStatusCode::SUCCESS, statusNonEmpty.first.code); } @@ -104,6 +107,22 @@ TEST_P(WifiChipHidlTest, getAvailableModes_1_6) { EXPECT_LT(0u, status_and_modes.second.size()); } +/* + * getSupportedRadioCombinationsMatrix: + * Ensure that a call to getSupportedRadioCombinationsMatrix will return + * with a success status code. + */ +TEST_P(WifiChipHidlTest, getSupportedRadioCombinationsMatrix) { + configureChipForIfaceType(IfaceType::STA, true); + const auto& statusNonEmpty = HIDL_INVOKE(wifi_chip_, getSupportedRadioCombinationsMatrix); + if (statusNonEmpty.first.code == WifiStatusCode::ERROR_NOT_SUPPORTED) { + GTEST_SKIP() << "Skipping this test since getSupportedRadioCombinationsMatrix() is not " + "supported by vendor."; + } + + EXPECT_EQ(WifiStatusCode::SUCCESS, statusNonEmpty.first.code); +} + GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(WifiChipHidlTest); INSTANTIATE_TEST_SUITE_P(PerInstance, WifiChipHidlTest, testing::ValuesIn(android::hardware::getAllHalInstanceNames( |