blob: c2c313dd808630b1815ac7dd5e31b35930f121cb [file] [log] [blame]
#!/usr/bin/env python
#
# Copyright (C) 2017 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.
#
import logging
from vts.runners.host import const
from vts.runners.host import test_runner
from vts.testcases.template.hal_hidl_gtest import hal_hidl_gtest
from vts.testcases.hal.wifi.V1_0.host import VtsHalWifiV1_0TestCase as wifi_test_case
class VtsHalWifiV1_0Host(hal_hidl_gtest.HidlHalGTest):
"""Host test class to run the WiFi V1.0 HAL's VTS tests."""
WIFI_AWARE_FEATURE_NAME = "android.hardware.wifi.aware"
def CreateTestCases(self):
"""Get all registered test components and create test case objects."""
pm_list = self.shell.Execute("pm list features")
self._nan_on = self.WIFI_AWARE_FEATURE_NAME in pm_list[const.STDOUT][0]
logging.info("Wifi NaN Feature Supported: %s", self._nan_on)
super(VtsHalWifiV1_0Host, self).CreateTestCases()
# @Override
def CreateTestCase(self, path, tag=''):
"""Create a list of VtsHalWifiV1_0TestCase objects.
Args:
path: string, absolute path of a gtest binary on device
tag: string, a tag that will be appended to the end of test name
Returns:
A list of VtsHalWifiV1_0TestCase objects
"""
gtest_cases = super(VtsHalWifiV1_0Host, self).CreateTestCase(path, tag)
test_cases = []
for gtest_case in gtest_cases:
test_case = wifi_test_case.VtsHalWifiV1_0TestCase(
self._nan_on, gtest_case.full_name, gtest_case.test_name, path)
test_cases.append(test_case)
logging.info("num of test_testcases: %s", len(test_cases))
return test_cases
if __name__ == "__main__":
test_runner.main()