// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'dart:async'; import 'dart:io'; import 'dart:math' as math; import 'package:meta/meta.dart'; import 'package:path/path.dart' as path; import 'utils.dart'; /// The root of the API for controlling devices. DeviceDiscovery get devices => new DeviceDiscovery(); /// Device operating system the test is configured to test. enum DeviceOperatingSystem { android, ios } /// Device OS to test on. DeviceOperatingSystem deviceOperatingSystem = DeviceOperatingSystem.android; /// Discovers available devices and chooses one to work with. abstract class DeviceDiscovery { factory DeviceDiscovery() { switch(deviceOperatingSystem) { case DeviceOperatingSystem.android: return new AndroidDeviceDiscovery(); case DeviceOperatingSystem.ios: return new IosDeviceDiscovery(); default: throw new StateError('Unsupported device operating system: {config.deviceOperatingSystem}'); } } /// Selects a device to work with, load-balancing between devices if more than /// one are available. /// /// Calling this method does not guarantee that the same device will be /// returned. For such behavior see [workingDevice]. Future chooseWorkingDevice(); /// A device to work with. /// /// Returns the same device when called repeatedly (unlike /// [chooseWorkingDevice]). This is useful when you need to perform multiple /// perations on one. Future get workingDevice; /// Lists all available devices' IDs. Future> discoverDevices(); /// Checks the health of the available devices. Future> checkDevices(); /// Prepares the system to run tasks. Future performPreflightTasks(); } /// A proxy for one specific device. abstract class Device { /// A unique device identifier. String get deviceId; /// Whether the device is awake. Future isAwake(); /// Whether the device is asleep. Future isAsleep(); /// Wake up the device if it is not awake. Future wakeUp(); /// Send the device to sleep mode. Future sendToSleep(); /// Emulates pressing the power button, toggling the device's on/off state. Future togglePower(); /// Unlocks the device. /// /// Assumes the device doesn't have a secure unlock pattern. Future unlock(); /// Read memory statistics for a process. Future> getMemoryStats(String packageName); /// Stop a process. Future stop(String packageName); } class AndroidDeviceDiscovery implements DeviceDiscovery { // Parses information about a device. Example: // // 015d172c98400a03 device usb:340787200X product:nakasi model:Nexus_7 device:grouper static final RegExp _kDeviceRegex = new RegExp(r'^(\S+)\s+(\S+)(.*)'); static AndroidDeviceDiscovery _instance; factory AndroidDeviceDiscovery() { return _instance ??= new AndroidDeviceDiscovery._(); } AndroidDeviceDiscovery._(); AndroidDevice _workingDevice; @override Future get workingDevice async { if (_workingDevice == null) { await chooseWorkingDevice(); } return _workingDevice; } /// Picks a random Android device out of connected devices and sets it as /// [workingDevice]. @override Future chooseWorkingDevice() async { List allDevices = (await discoverDevices()) .map((String id) => new AndroidDevice(deviceId: id)) .toList(); if (allDevices.isEmpty) throw 'No Android devices detected'; // TODO(yjbanov): filter out and warn about those with low battery level _workingDevice = allDevices[new math.Random().nextInt(allDevices.length)]; } @override Future> discoverDevices() async { List output = (await eval(adbPath, ['devices', '-l'], canFail: false)) .trim().split('\n'); List results = []; for (String line in output) { // Skip lines like: * daemon started successfully * if (line.startsWith('* daemon ')) continue; if (line.startsWith('List of devices')) continue; if (_kDeviceRegex.hasMatch(line)) { Match match = _kDeviceRegex.firstMatch(line); String deviceID = match[1]; String deviceState = match[2]; if (!const ['unauthorized', 'offline'].contains(deviceState)) { results.add(deviceID); } } else { throw 'Failed to parse device from adb output: $line'; } } return results; } @override Future> checkDevices() async { Map results = {}; for (String deviceId in await discoverDevices()) { try { AndroidDevice device = new AndroidDevice(deviceId: deviceId); // Just a smoke test that we can read wakefulness state // TODO(yjbanov): check battery level await device._getWakefulness(); results['android-device-$deviceId'] = new HealthCheckResult.success(); } catch(e, s) { results['android-device-$deviceId'] = new HealthCheckResult.error(e, s); } } return results; } @override Future performPreflightTasks() async { // Kills the `adb` server causing it to start a new instance upon next // command. // // Restarting `adb` helps with keeping device connections alive. When `adb` // runs non-stop for too long it loses connections to devices. There may be // a better method, but so far that's the best one I've found. await exec(adbPath, ['kill-server'], canFail: false); } } class AndroidDevice implements Device { AndroidDevice({@required this.deviceId}); @override final String deviceId; /// Whether the device is awake. @override Future isAwake() async { return await _getWakefulness() == 'Awake'; } /// Whether the device is asleep. @override Future isAsleep() async { return await _getWakefulness() == 'Asleep'; } /// Wake up the device if it is not awake using [togglePower]. @override Future wakeUp() async { if (!(await isAwake())) await togglePower(); } /// Send the device to sleep mode if it is not asleep using [togglePower]. @override Future sendToSleep() async { if (!(await isAsleep())) await togglePower(); } /// Sends `KEYCODE_POWER` (26), which causes the device to toggle its mode /// between awake and asleep. @override Future togglePower() async { await shellExec('input', const ['keyevent', '26']); } /// Unlocks the device by sending `KEYCODE_MENU` (82). /// /// This only works when the device doesn't have a secure unlock pattern. @override Future unlock() async { await wakeUp(); await shellExec('input', const ['keyevent', '82']); } /// Retrieves device's wakefulness state. /// /// See: https://android.googlesource.com/platform/frameworks/base/+/master/core/java/android/os/PowerManagerInternal.java Future _getWakefulness() async { String powerInfo = await shellEval('dumpsys', ['power']); String wakefulness = grep('mWakefulness=', from: powerInfo).single.split('=')[1].trim(); return wakefulness; } /// Executes [command] on `adb shell` and returns its exit code. Future shellExec(String command, List arguments, { Map environment }) async { await exec(adbPath, ['shell', command]..addAll(arguments), environment: environment, canFail: false); } /// Executes [command] on `adb shell` and returns its standard output as a [String]. Future shellEval(String command, List arguments, { Map environment }) { return eval(adbPath, ['shell', command]..addAll(arguments), environment: environment, canFail: false); } @override Future> getMemoryStats(String packageName) async { String meminfo = await shellEval('dumpsys', ['meminfo', packageName]); Match match = new RegExp(r'TOTAL\s+(\d+)').firstMatch(meminfo); return { 'total_kb': int.parse(match.group(1)), }; } @override Future stop(String packageName) async { return shellExec('am', ['force-stop', packageName]); } } class IosDeviceDiscovery implements DeviceDiscovery { static IosDeviceDiscovery _instance; factory IosDeviceDiscovery() { return _instance ??= new IosDeviceDiscovery._(); } IosDeviceDiscovery._(); IosDevice _workingDevice; @override Future get workingDevice async { if (_workingDevice == null) { await chooseWorkingDevice(); } return _workingDevice; } /// Picks a random iOS device out of connected devices and sets it as /// [workingDevice]. @override Future chooseWorkingDevice() async { List allDevices = (await discoverDevices()) .map((String id) => new IosDevice(deviceId: id)) .toList(); if (allDevices.length == 0) throw 'No iOS devices detected'; // TODO(yjbanov): filter out and warn about those with low battery level _workingDevice = allDevices[new math.Random().nextInt(allDevices.length)]; } @override Future> discoverDevices() async { // TODO: use the -k UniqueDeviceID option, which requires much less parsing. List iosDeviceIds = grep('UniqueDeviceID', from: await eval('ideviceinfo', [])) .map((String line) => line.split(' ').last).toList(); if (iosDeviceIds.isEmpty) throw 'No connected iOS devices found.'; return iosDeviceIds; } @override Future> checkDevices() async { Map results = {}; for (String deviceId in await discoverDevices()) { // TODO: do a more meaningful connectivity check than just recording the ID results['ios-device-$deviceId'] = new HealthCheckResult.success(); } return results; } @override Future performPreflightTasks() async { // Currently we do not have preflight tasks for iOS. return null; } } /// iOS device. class IosDevice implements Device { const IosDevice({ @required this.deviceId }); @override final String deviceId; // The methods below are stubs for now. They will need to be expanded. // We currently do not have a way to lock/unlock iOS devices. So we assume the // devices are already unlocked. For now we'll just keep them at minimum // screen brightness so they don't drain battery too fast. @override Future isAwake() async => true; @override Future isAsleep() async => false; @override Future wakeUp() async {} @override Future sendToSleep() async {} @override Future togglePower() async {} @override Future unlock() async {} @override Future> getMemoryStats(String packageName) async { throw 'Not implemented'; } @override Future stop(String packageName) async {} } /// Path to the `adb` executable. String get adbPath { String androidHome = Platform.environment['ANDROID_HOME']; if (androidHome == null) throw 'ANDROID_HOME environment variable missing. This variable must ' 'point to the Android SDK directory containing platform-tools.'; File adbPath = file(path.join(androidHome, 'platform-tools/adb')); if (!adbPath.existsSync()) throw 'adb not found at: $adbPath'; return adbPath.absolute.path; }