#!/usr/bin/env python3 # # Copyright (C) 2018 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. """ Script for verifying SL4F is running on a Fuchsia device and can communicate to ACTS successfully. """ from acts.base_test import BaseTestClass from acts import asserts from acts.controllers.fuchsia_device import FuchsiaDevice class Sl4fSanityTest(BaseTestClass): fuchsia_devices: list[FuchsiaDevice] def setup_class(self): super().setup_class() asserts.abort_class_if( len(self.fuchsia_devices) == 0, "Sorry, please try verifying FuchsiaDevice is in your config file and try again." ) self.log.info( "Congratulations! Fuchsia controllers have been initialized successfully!" ) def test_example(self): for fuchsia_device in self.fuchsia_devices: res = fuchsia_device.sl4f.netstack_lib.netstackListInterfaces() self.log.info(res) self.log.info("Congratulations! You've run your first test.") return True