Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 344ab2af authored by xshu's avatar xshu
Browse files

VTS: fix test LinkLayerStatsCollection

IWifiStaIface V1_3 replaced an existing API with a new one.
Skip the test for the old API if the version of IWifiStaIface is 1.3 or
higher.

Bug: 117621466
Test: mma -j64 && adb sync data && adb shell data/nativetest64/VtsHalWifiV1_0TargetTest/VtsHalWifiV1_0TargetTest
Change-Id: I2a55799792709858ba82364e393cdbedabc1a42b
parent eeda71a7
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -45,6 +45,8 @@ cc_test {
    static_libs: [
        "VtsHalWifiV1_0TargetTestUtil",
        "android.hardware.wifi@1.0",
        "android.hardware.wifi@1.2",
        "android.hardware.wifi@1.3",
    ],
}

+9 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@
#include <android-base/logging.h>

#include <android/hardware/wifi/1.0/IWifiStaIface.h>
#include <android/hardware/wifi/1.3/IWifiStaIface.h>

#include <VtsHalHidlTargetTestBase.h>

@@ -143,6 +144,14 @@ TEST_F(WifiStaIfaceHidlTest, LinkLayerStatsCollection) {
        return;
    }

    sp<::android::hardware::wifi::V1_3::IWifiStaIface> iface_converted =
        ::android::hardware::wifi::V1_3::IWifiStaIface::castFrom(
            wifi_sta_iface_);
    if (iface_converted != nullptr) {
        // Skip this test since this API is deprecated in this newer HAL version
        return;
    }

    // Enable link layer stats collection.
    EXPECT_EQ(WifiStatusCode::SUCCESS,
              HIDL_INVOKE(wifi_sta_iface_, enableLinkLayerStatsCollection, true)