android13/packages/modules/Bluetooth/android/app/tests/unit/AndroidTest.xml

74 lines
4.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 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.
-->
<configuration description="Runs Bluetooth Test Cases.">
<option name="test-suite-tag" value="apct" />
<option name="test-suite-tag" value="apct-instrumentation" />
<target_preparer class="com.android.tradefed.targetprep.suite.SuiteApkInstaller">
<option name="cleanup-apks" value="true" />
<option name="test-file-name" value="BluetoothInstrumentationTests.apk" />
</target_preparer>
<target_preparer class="com.android.tradefed.targetprep.RootTargetPreparer">
<option name="force-root" value="true" />
</target_preparer>
<target_preparer class="com.android.tradefed.targetprep.RunCommandTargetPreparer">
<option name="throw-if-cmd-fail" value="true" />
<option name="run-command" value="input keyevent KEYCODE_WAKEUP" />
<option name="run-command" value="wm dismiss-keyguard" />
<option name="run-command" value="settings put global ble_scan_always_enabled 0" />
<option name="run-command" value="cmd bluetooth_manager disable" />
<option name="run-command" value="cmd bluetooth_manager wait-for-state:STATE_OFF" />
<option name="run-command" value="setprop bluetooth.profile.hfp.hf.enabled true" />
<option name="run-command" value="setprop bluetooth.profile.pbap.client.enabled true" />
<option name="run-command" value="setprop bluetooth.profile.map.client.enabled true" />
<option name="run-command"
value="setprop bluetooth.profile.avrcp.controller.enabled true" />
<option name="run-command" value="setprop bluetooth.profile.a2dp.sink.enabled true" />
<option name="run-command" value="setprop bluetooth.profile.sap.server.enabled true" />
<option name="teardown-command" value="cmd bluetooth_manager enable" />
<option name="teardown-command" value="cmd bluetooth_manager wait-for-state:STATE_ON" />
<option name="teardown-command" value="settings put global ble_scan_always_enabled 1" />
<option name="teardown-command" value="setprop bluetooth.profile.hfp.hf.enabled false" />
<option name="teardown-command"
value="setprop bluetooth.profile.pbap.client.enabled false" />
<option name="teardown-command"
value="setprop bluetooth.profile.map.client.enabled false" />
<option name="teardown-command"
value="setprop bluetooth.profile.avrcp.controller.enabled false" />
<option name="teardown-command" value="setprop bluetooth.profile.a2dp.sink.enabled false" />
<option name="teardown-command"
value="setprop bluetooth.profile.sap.server.enabled false" />
</target_preparer>
<target_preparer class="com.android.tradefed.targetprep.FolderSaver">
<option name="device-path" value="/data/vendor/ssrdump" />
</target_preparer>
<option name="test-tag" value="BluetoothInstrumentationTests" />
<test class="com.android.tradefed.testtype.AndroidJUnitTest" >
<option name="package" value="com.android.bluetooth.tests" />
<!-- include and exclude filters go into /data/local/tmp/ajur/ by default
However it's prohibited for access by system uid packages.
So instead we use the app cache folder for filter -->
<option name="test-filter-dir" value="/data/data/com.android.bluetooth/cache" />
<option name="hidden-api-checks" value="false"/>
</test>
<!-- Only run if the Bluetooth Mainline module is installed. -->
<object type="module_controller"
class="com.android.tradefed.testtype.suite.module.MainlineTestModuleController">
<option name="enable" value="true" />
<option name="mainline-module-package-name" value="com.android.btservices" />
</object>
</configuration>