blob: 42dca63f45f210294a5fd61f849b31c1b86ee616 [file] [log] [blame]
#!/usr/bin/env python3
#
# Copyright 2022 The Fuchsia Authors
#
# 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.
"""
Script for verifying that we can invoke methods of the WlanFacade.
"""
import array
import logging
from mobly import signals, test_runner
from antlion.test_utils.wifi import base_test
class WlanFacadeTest(base_test.WifiBaseTest):
def setup_class(self):
super().setup_class()
self.log = logging.getLogger()
if len(self.fuchsia_devices) < 1:
raise signals.TestAbortClass(
"Sorry, please try verifying FuchsiaDevice is in your "
"config file and try again."
)
self.fuchsia_device = self.fuchsia_devices[0]
def test_get_phy_id_list(self) -> None:
result = self.fuchsia_device.sl4f.wlan_lib.get_phy_id_list()
self.log.info(f"Got Phy IDs {result}")
def test_get_country(self) -> None:
wlan_lib = self.fuchsia_device.sl4f.wlan_lib
phy_id_list = wlan_lib.get_phy_id_list()
country_bytes = wlan_lib.get_country(phy_id_list[0])
country_string = str(array.array("b", country_bytes), encoding="us-ascii")
self.log.info(f"Got country {country_string} ({country_bytes})")
if __name__ == "__main__":
test_runner.main()