Bluetooth-Dienstprogramme

public class BluetoothUtils
extends Object

java.lang.Object
😎 com.android.tradefed.util.BluetoothUtils.


Dienstprogrammfunktionen zum Aufrufen von BluetoothInstrumentation auf dem Gerät

Den BluetoothInstrumentation-Code auf Geräteseite findest du in AOSP unter: frameworks/base/core/tests/bluetoothtests

Zusammenfassung

Felder

public static final String BTSNOOP_API

public static final String BTSNOOP_CMD

public static final String BTSNOOP_DISABLE_CMD

public static final String BTSNOOP_ENABLE_CMD

public static final String GOLD_BTSNOOP_LOG_PATH

public static final String O_BUILD

Öffentliche Konstruktoren

BluetoothUtils()

Öffentliche Methoden

static void cleanLogFile(ITestDevice device)

Snoop-Protokolldatei vom Gerät löschen

static boolean disable(ITestDevice device)

Deaktiviert Bluetooth auf dem jeweiligen Gerät

static boolean disableBtsnoopLogging(ITestDevice device, File sl4aApkFile)

btsnoop-Logging durch Sl4a-Aufruf deaktivieren

static boolean disableBtsnoopLogging(ITestDevice device)

btsnoop-Logging durch Sl4a-Aufruf deaktivieren

static boolean enable(ITestDevice device)

Aktiviert Bluetooth auf dem jeweiligen Gerät

static boolean enableBtsnoopLogging(ITestDevice device, File sl4aApkFile)

Btsnoop-Logging durch Sl4a-Aufruf aktivieren

static boolean enableBtsnoopLogging(ITestDevice device)

Btsnoop-Logging durch Sl4a-Aufruf aktivieren

static String getBluetoothMac(ITestDevice device)

Ruft BT Mac des angegebenen Geräts ab

static getBondedDevices(ITestDevice device)

Gibt die Bluetooth-MAC-Adressen von Geräten zurück, mit denen das jeweilige Gerät verbunden ist

static String getBtSnoopLogFilePath(ITestDevice device)

Pfad der BT-Snoop-Logdatei aus der Datei „bt_stack.config“ abrufen

static String runBluetoothInstrumentation(ITestDevice device, String command)

Praktische Methode zum Ausführen des BT-Instrumentierungsbefehls und zum Zurückgeben einer Ausgabe

static boolean runBluetoothInstrumentationWithRetry(ITestDevice device, String command)
static boolean toggleBtsnoopLogging(Sl4aClient client, boolean onOff)
static boolean unpairWithRetry(ITestDevice device)

Löschen der Bluetooth-Kopplung mit linearem Backoff wird wiederholt

static void uploadLogFiles(ITestInvocationListener listener, ITestDevice device, String type, int iteration)

Snoop-Protokolldatei für Testergebnisse hochladen

Felder

BTSNOOP API

public static final String BTSNOOP_API

BTSNOOP_CMD

public static final String BTSNOOP_CMD

BTS. DEAKTIVIERT_CMD

public static final String BTSNOOP_DISABLE_CMD

BTSNOOP_ENABLE_CMD

public static final String BTSNOOP_ENABLE_CMD

GOLD_BTSNOOP_LOG_PATH

public static final String GOLD_BTSNOOP_LOG_PATH

O_Build

public static final String O_BUILD

Öffentliche Konstruktoren

Bluetooth-Dienstprogramme

public BluetoothUtils ()

Öffentliche Methoden

cleanLogFile

public static void cleanLogFile (ITestDevice device)

Snoop-Protokolldatei vom Gerät löschen

Parameter
device ITestDevice

Ausgabe
DeviceNotAvailableException

deaktivieren

public static boolean disable (ITestDevice device)

Deaktiviert Bluetooth auf dem jeweiligen Gerät

Returns
boolean „True“, wenn die Deaktivierung erfolgreich war, andernfalls „False“

Ausgabe
com.android.tradefed.device.DeviceNotAvailableException
DeviceNotAvailableException

DeaktivierenBtsnoopLogging

public static boolean disableBtsnoopLogging (ITestDevice device, 
                File sl4aApkFile)

btsnoop-Logging durch Sl4a-Aufruf deaktivieren

Parameter
sl4aApkFile File: Speicherort der Datei sl4a.apk, null, wenn die Datei installiert wurde

Returns
boolean Erfolg oder nicht

Ausgabe
com.android.tradefed.device.DeviceNotAvailableException
DeviceNotAvailableException

DeaktivierenBtsnoopLogging

public static boolean disableBtsnoopLogging (ITestDevice device)

btsnoop-Logging durch Sl4a-Aufruf deaktivieren

Returns
boolean Erfolg oder nicht

Ausgabe
com.android.tradefed.device.DeviceNotAvailableException
DeviceNotAvailableException

Aktivieren

public static boolean enable (ITestDevice device)

Aktiviert Bluetooth auf dem jeweiligen Gerät

Returns
boolean „True“, wenn die Aktivierung erfolgreich ist, andernfalls „False“

Ausgabe
com.android.tradefed.device.DeviceNotAvailableException
DeviceNotAvailableException

EnableBtsnoopLogging

public static boolean enableBtsnoopLogging (ITestDevice device, 
                File sl4aApkFile)

Btsnoop-Logging durch Sl4a-Aufruf aktivieren

Parameter
sl4aApkFile File: Speicherort der Datei sl4a.apk, null, wenn die Datei installiert wurde

Returns
boolean Erfolg oder nicht

Ausgabe
com.android.tradefed.device.DeviceNotAvailableException
DeviceNotAvailableException

EnableBtsnoopLogging

public static boolean enableBtsnoopLogging (ITestDevice device)

Btsnoop-Logging durch Sl4a-Aufruf aktivieren

Returns
boolean Erfolg oder nicht

Ausgabe
com.android.tradefed.device.DeviceNotAvailableException
DeviceNotAvailableException

getBluetoothMac

public static String getBluetoothMac (ITestDevice device)

Ruft BT Mac des angegebenen Geräts ab

Returns
String BT mac oder null, wenn nicht gefunden

Ausgabe
com.android.tradefed.device.DeviceNotAvailableException
DeviceNotAvailableException

getBondedDevices

public static  getBondedDevices (ITestDevice device)

Gibt die Bluetooth-MAC-Adressen von Geräten zurück, mit denen das jeweilige Gerät verbunden ist

Returns
Bluetooth-MAC-Adressen

Ausgabe
com.android.tradefed.device.DeviceNotAvailableException
DeviceNotAvailableException

getBtSnoopLogFilePath

public static String getBtSnoopLogFilePath (ITestDevice device)

Pfad der BT-Snoop-Logdatei aus der Datei „bt_stack.config“ abrufen

Returns
String Der Dateiname für bt_snoop_log oder null, wenn er nicht gefunden wird.

Ausgabe
DeviceNotAvailableException

runBluetoothInstrumentation

public static String runBluetoothInstrumentation (ITestDevice device, 
                String command)

Praktische Methode zum Ausführen des BT-Instrumentierungsbefehls und zum Zurückgeben einer Ausgabe

Parameter
command String: Ein an die BT-Instrumentierung gesendeter Befehlsstring, der derzeit unterstützt wird: aktivieren, deaktivieren, entkoppelnAll, getName, getAddress, getBondedDevices; siehe AOSP-Quelle für weitere Details

Returns
String Ausgabe von BluetoothInstrumentation

Ausgabe
com.android.tradefed.device.DeviceNotAvailableException
DeviceNotAvailableException

runBluetoothInstrumentationWithWiederholen

public static boolean runBluetoothInstrumentationWithRetry (ITestDevice device, 
                String command)

Parameter
device ITestDevice

command String

Returns
boolean

Ausgabe
DeviceNotAvailableException

Ein/Aus-SchaltflächeBtsnoopLogging

public static boolean toggleBtsnoopLogging (Sl4aClient client, 
                boolean onOff)

Parameter
client Sl4aClient

onOff boolean

Returns
boolean

Ausgabe
DeviceNotAvailableException

entkoppeln

public static boolean unpairWithRetry (ITestDevice device)

Löschen der Bluetooth-Kopplung mit linearem Backoff wird wiederholt

Returns
boolean

Ausgabe
com.android.tradefed.device.DeviceNotAvailableException
DeviceNotAvailableException

UploadLogFiles

public static void uploadLogFiles (ITestInvocationListener listener, 
                ITestDevice device, 
                String type, 
                int iteration)

Snoop-Protokolldatei für Testergebnisse hochladen

Parameter
listener ITestInvocationListener

device ITestDevice

type String

iteration int

Ausgabe
DeviceNotAvailableException