/* * Copyright (C) 2010 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. */ package android.bluetooth; import android.content.Context; import android.test.InstrumentationTestCase; public class BluetoothStressTest extends InstrumentationTestCase { private static final String TAG = "BluetoothStressTest"; private static final String OUTPUT_FILE = "BluetoothStressTestOutput.txt"; private BluetoothTestUtils mTestUtils; @Override protected void setUp() throws Exception { super.setUp(); Context context = getInstrumentation().getTargetContext(); mTestUtils = new BluetoothTestUtils(context, TAG, OUTPUT_FILE); } @Override protected void tearDown() throws Exception { super.tearDown(); mTestUtils.close(); } public void testEnable() { int iterations = BluetoothTestRunner.sEnableIterations; if (iterations == 0) { return; } BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); for (int i = 0; i < iterations; i++) { mTestUtils.writeOutput("enable iteration " + (i + 1) + " of " + iterations); mTestUtils.enable(adapter); mTestUtils.disable(adapter); } } public void testDiscoverable() { int iterations = BluetoothTestRunner.sDiscoverableIterations; if (iterations == 0) { return; } BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); mTestUtils.enable(adapter); for (int i = 0; i < iterations; i++) { mTestUtils.writeOutput("discoverable iteration " + (i + 1) + " of " + iterations); mTestUtils.discoverable(adapter); mTestUtils.undiscoverable(adapter); } mTestUtils.disable(adapter); } public void testScan() { int iterations = BluetoothTestRunner.sScanIterations; if (iterations == 0) { return; } BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); mTestUtils.enable(adapter); for (int i = 0; i < iterations; i++) { mTestUtils.writeOutput("scan iteration " + (i + 1) + " of " + iterations); mTestUtils.startScan(adapter); mTestUtils.stopScan(adapter); } mTestUtils.disable(adapter); } public void testPair() { int iterations = BluetoothTestRunner.sPairIterations; if (iterations == 0) { return; } BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); BluetoothDevice device = adapter.getRemoteDevice(BluetoothTestRunner.sPairAddress); mTestUtils.enable(adapter); for (int i = 0; i < iterations; i++) { mTestUtils.writeOutput("pair iteration " + (i + 1) + " of " + iterations); mTestUtils.pair(adapter, device, BluetoothTestRunner.sPairPasskey, BluetoothTestRunner.sPairPin); mTestUtils.unpair(adapter, device); } mTestUtils.disable(adapter); } public void testAcceptPair() { int iterations = BluetoothTestRunner.sPairIterations; BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); BluetoothDevice device = adapter.getRemoteDevice(BluetoothTestRunner.sPairAddress); mTestUtils.enable(adapter); for (int i = 0; i < iterations; i++) { mTestUtils.writeOutput("acceptPair iteration " + (i + 1) + " of " + iterations); mTestUtils.acceptPair(adapter, device, BluetoothTestRunner.sPairPasskey, BluetoothTestRunner.sPairPin); mTestUtils.unpair(adapter, device); } mTestUtils.disable(adapter); } public void testConnectA2dp() { int iterations = BluetoothTestRunner.sConnectA2dpIterations; if (iterations == 0) { return; } BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); BluetoothDevice device = adapter.getRemoteDevice(BluetoothTestRunner.sA2dpAddress); mTestUtils.enable(adapter); mTestUtils.pair(adapter, device, BluetoothTestRunner.sPairPasskey, BluetoothTestRunner.sPairPin); for (int i = 0; i < iterations; i++) { mTestUtils.writeOutput("connectA2dp iteration " + (i + 1) + " of " + iterations); mTestUtils.connectProfile(adapter, device, BluetoothProfile.A2DP); mTestUtils.disconnectProfile(adapter, device, BluetoothProfile.A2DP); } // TODO: Unpair from device if device can accept pairing after unpairing mTestUtils.disable(adapter); } public void testConnectHeadset() { int iterations = BluetoothTestRunner.sConnectHeadsetIterations; if (iterations == 0) { return; } BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter(); BluetoothDevice device = adapter.getRemoteDevice(BluetoothTestRunner.sHeadsetAddress); mTestUtils.enable(adapter); mTestUtils.pair(adapter, device, BluetoothTestRunner.sPairPasskey, BluetoothTestRunner.sPairPin); for (int i = 0; i < iterations; i++) { mTestUtils.writeOutput("connectHeadset iteration " + (i + 1) + " of " + iterations); mTestUtils.connectProfile(adapter, device, BluetoothProfile.HEADSET); mTestUtils.disconnectProfile(adapter, device, BluetoothProfile.HEADSET); } // TODO: Unpair from device if device can accept pairing after unpairing mTestUtils.disable(adapter); } }