blob: 76a2cf158277075ff6c789eb7c2e13d70dd2d7c1 [file] [log] [blame]
#!/usr/bin/env python3
#
# Copyright (C) 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.
"""
Script for initializing a cmd line tool for PTS and other purposes.
Required custom config parameters:
'target_mac_address': '00:00:00:00:00:00'
"""
from acts.base_test import BaseTestClass
from command_input import CommandInput
from queue import Empty
class BluetoothCmdLineTest(BaseTestClass):
target_device_name = ""
def setup_class(self):
super().setup_class()
dut = self.user_params.get('dut', None)
if dut:
if dut == 'fuchsia_devices':
self.dut = self.fuchsia_devices[0]
self.dut.bts_lib.initBluetoothSys()
self.dut.sdp_lib.init()
elif dut == 'android_devices':
self.dut = self.android_devices[0]
else:
raise ValueError('Invalid DUT specified in config. (%s)' %
self.user_params['dut'])
else:
# Default is an Fuchsia device
self.dut = self.fuchsia_devices[0]
if not "target_device_name" in self.user_params.keys():
self.log.warning("Missing user config \"target_device_name\"!")
self.target_device_name = ""
else:
self.target_device_name = self.user_params["target_device_name"]
def test_cmd_line_helper(self):
cmd_line = CommandInput()
cmd_line.setup_vars(self.dut, self.target_device_name, self.log)
cmd_line.cmdloop()
return True