mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00

instead of restricting profile/release mode based on whether the tool thinks the device is an emulator, restrict based on the device target architecture and the requested build mode. Notably, this enables release mode on x86_64 Android emulators, but not x86 emulators since we do not support that as an AOT target. This does not add release mode support for simulators, since this requires us to build and upload artifacts for simulator/x86_64
163 lines
5.1 KiB
Dart
163 lines
5.1 KiB
Dart
// Copyright 2014 The Flutter 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:convert';
|
|
import 'dart:io';
|
|
|
|
import 'package:flutter_tools/src/android/android_sdk.dart';
|
|
import 'package:flutter_tools/src/cache.dart';
|
|
import 'package:flutter_tools/src/commands/devices.dart';
|
|
import 'package:flutter_tools/src/device.dart';
|
|
import 'package:mockito/mockito.dart';
|
|
import 'package:process/process.dart';
|
|
|
|
import '../../src/common.dart';
|
|
import '../../src/context.dart';
|
|
import '../../src/fake_devices.dart';
|
|
|
|
void main() {
|
|
group('devices', () {
|
|
setUpAll(() {
|
|
Cache.disableLocking();
|
|
});
|
|
|
|
testUsingContext('returns 0 when called', () async {
|
|
final DevicesCommand command = DevicesCommand();
|
|
await createTestCommandRunner(command).run(<String>['devices']);
|
|
});
|
|
|
|
testUsingContext('no error when no connected devices', () async {
|
|
final DevicesCommand command = DevicesCommand();
|
|
await createTestCommandRunner(command).run(<String>['devices']);
|
|
expect(testLogger.statusText, containsIgnoringWhitespace('No devices detected'));
|
|
}, overrides: <Type, Generator>{
|
|
AndroidSdk: () => null,
|
|
DeviceManager: () => DeviceManager(),
|
|
ProcessManager: () => MockProcessManager(),
|
|
});
|
|
|
|
testUsingContext('get devices\' platform types', () async {
|
|
final List<String> platformTypes = Device.devicesPlatformTypes(
|
|
await deviceManager.getAllConnectedDevices(),
|
|
);
|
|
expect(platformTypes, <String>['android', 'web']);
|
|
}, overrides: <Type, Generator>{
|
|
DeviceManager: () => _FakeDeviceManager(),
|
|
ProcessManager: () => MockProcessManager(),
|
|
});
|
|
|
|
testUsingContext('Outputs parsable JSON with --machine flag', () async {
|
|
final DevicesCommand command = DevicesCommand();
|
|
await createTestCommandRunner(command).run(<String>['devices', '--machine']);
|
|
expect(
|
|
json.decode(testLogger.statusText),
|
|
<Map<String,Object>>[
|
|
<String, Object>{
|
|
'name': 'ephemeral',
|
|
'id': 'ephemeral',
|
|
'isSupported': true,
|
|
'targetPlatform': 'android-arm',
|
|
'emulator': true,
|
|
'sdk': 'Test SDK (1.2.3)',
|
|
'capabilities': <String, Object>{
|
|
'hotReload': true,
|
|
'hotRestart': true,
|
|
'screenshot': false,
|
|
'fastStart': false,
|
|
'flutterExit': true,
|
|
'hardwareRendering': true,
|
|
'startPaused': true
|
|
}
|
|
},
|
|
<String,Object>{
|
|
'name': 'webby',
|
|
'id': 'webby',
|
|
'isSupported': true,
|
|
'targetPlatform': 'web-javascript',
|
|
'emulator': true,
|
|
'sdk': 'Web SDK (1.2.4)',
|
|
'capabilities': <String, Object>{
|
|
'hotReload': true,
|
|
'hotRestart': true,
|
|
'screenshot': false,
|
|
'fastStart': false,
|
|
'flutterExit': true,
|
|
'hardwareRendering': true,
|
|
'startPaused': true
|
|
}
|
|
}
|
|
]
|
|
);
|
|
}, overrides: <Type, Generator>{
|
|
DeviceManager: () => _FakeDeviceManager(),
|
|
ProcessManager: () => MockProcessManager(),
|
|
});
|
|
|
|
testUsingContext('available devices and diagnostics', () async {
|
|
final DevicesCommand command = DevicesCommand();
|
|
await createTestCommandRunner(command).run(<String>['devices']);
|
|
expect(
|
|
testLogger.statusText,
|
|
'''
|
|
2 connected devices:
|
|
|
|
ephemeral • ephemeral • android-arm • Test SDK (1.2.3) (emulator)
|
|
webby • webby • web-javascript • Web SDK (1.2.4) (emulator)
|
|
|
|
• Cannot connect to device ABC
|
|
'''
|
|
);
|
|
}, overrides: <Type, Generator>{
|
|
DeviceManager: () => _FakeDeviceManager(),
|
|
ProcessManager: () => MockProcessManager(),
|
|
});
|
|
});
|
|
}
|
|
|
|
class MockProcessManager extends Mock implements ProcessManager {
|
|
@override
|
|
Future<ProcessResult> run(
|
|
List<dynamic> command, {
|
|
String workingDirectory,
|
|
Map<String, String> environment,
|
|
bool includeParentEnvironment = true,
|
|
bool runInShell = false,
|
|
Encoding stdoutEncoding = systemEncoding,
|
|
Encoding stderrEncoding = systemEncoding,
|
|
}) async {
|
|
return ProcessResult(0, 0, '', '');
|
|
}
|
|
|
|
@override
|
|
ProcessResult runSync(
|
|
List<dynamic> command, {
|
|
String workingDirectory,
|
|
Map<String, String> environment,
|
|
bool includeParentEnvironment = true,
|
|
bool runInShell = false,
|
|
Encoding stdoutEncoding = systemEncoding,
|
|
Encoding stderrEncoding = systemEncoding,
|
|
}) {
|
|
return ProcessResult(0, 0, '', '');
|
|
}
|
|
}
|
|
|
|
class _FakeDeviceManager extends DeviceManager {
|
|
_FakeDeviceManager();
|
|
|
|
@override
|
|
Future<List<Device>> getAllConnectedDevices() =>
|
|
Future<List<Device>>.value(fakeDevices.map((FakeDeviceJsonData d) => d.dev).toList());
|
|
|
|
@override
|
|
Future<List<Device>> refreshAllConnectedDevices({Duration timeout}) =>
|
|
getAllConnectedDevices();
|
|
|
|
@override
|
|
Future<List<String>> getDeviceDiagnostics() => Future<List<String>>.value(
|
|
<String>['Cannot connect to device ABC']
|
|
);
|
|
}
|