blob: ab19ba12edf284c67820838301996c04433f86c8 [file] [log] [blame]
#!/usr/bin/env python3
#
# Copyright 2019 - 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.
from acts.base_test import BaseTestClass
import importlib
import logging
import os
import signal
import subprocess
ANDROID_BUILD_TOP = os.environ.get('ANDROID_BUILD_TOP')
class GdBaseTestClass(BaseTestClass):
def __init__(self, configs):
BaseTestClass.__init__(self, configs)
log_path_base = getattr(configs, "log_path", "/tmp/logs")
gd_devices = self.controller_configs.get("GdDevice")
gd_cert_devices = self.controller_configs.get("GdCertDevice")
self.rootcanal_running = False
if 'rootcanal' in self.controller_configs:
self.rootcanal_running = True
rootcanal_logpath = os.path.join(log_path_base,
'rootcanal_logs.txt')
self.rootcanal_logs = open(rootcanal_logpath, 'w')
rootcanal_config = self.controller_configs['rootcanal']
rootcanal_hci_port = str(rootcanal_config.get("hci_port", "6402"))
android_host_out = os.environ.get('ANDROID_HOST_OUT')
rootcanal = android_host_out + "/nativetest64/root-canal/root-canal"
self.rootcanal_process = subprocess.Popen(
[
rootcanal,
str(rootcanal_config.get("test_port", "6401")),
rootcanal_hci_port,
str(rootcanal_config.get("link_layer_port", "6403"))
],
cwd=ANDROID_BUILD_TOP,
env=os.environ.copy(),
stdout=self.rootcanal_logs,
stderr=self.rootcanal_logs)
for gd_device in gd_devices:
gd_device["rootcanal_port"] = rootcanal_hci_port
for gd_cert_device in gd_cert_devices:
gd_cert_device["rootcanal_port"] = rootcanal_hci_port
self.register_controller(
importlib.import_module('cert.gd_device'), builtin=True)
self.register_controller(
importlib.import_module('cert.gd_cert_device'), builtin=True)
def teardown_class(self):
if self.rootcanal_running:
self.rootcanal_process.send_signal(signal.SIGINT)
rootcanal_return_code = self.rootcanal_process.wait()
self.rootcanal_logs.close()
if rootcanal_return_code != 0 and\
rootcanal_return_code != -signal.SIGINT:
logging.error(
"rootcanal stopped with code: %d" % rootcanal_return_code)
return False