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

* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
190 lines
7.3 KiB
Dart
190 lines
7.3 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 'package:flutter_tools/src/base/file_system.dart';
|
|
import 'package:flutter_tools/src/base/io.dart';
|
|
import 'package:flutter_tools/src/base/logger.dart';
|
|
import 'package:flutter_tools/src/build_info.dart';
|
|
import 'package:flutter_tools/src/compile.dart';
|
|
import 'package:flutter_tools/src/device.dart';
|
|
import 'package:flutter_tools/src/resident_runner.dart';
|
|
import 'package:flutter_tools/src/run_cold.dart';
|
|
import 'package:flutter_tools/src/vmservice.dart';
|
|
import 'package:meta/meta.dart';
|
|
import 'package:mockito/mockito.dart';
|
|
|
|
import '../src/common.dart';
|
|
import '../src/context.dart';
|
|
import '../src/mocks.dart';
|
|
|
|
void main() {
|
|
group('cold attach', () {
|
|
MockResidentCompiler residentCompiler;
|
|
BufferLogger mockLogger;
|
|
|
|
setUp(() {
|
|
mockLogger = BufferLogger();
|
|
residentCompiler = MockResidentCompiler();
|
|
});
|
|
|
|
testUsingContext('Prints message when HttpException is thrown - 1', () async {
|
|
final MockDevice mockDevice = MockDevice();
|
|
when(mockDevice.supportsHotReload).thenReturn(true);
|
|
when(mockDevice.supportsHotRestart).thenReturn(false);
|
|
when(mockDevice.targetPlatform).thenAnswer((Invocation _) async => TargetPlatform.tester);
|
|
when(mockDevice.sdkNameAndVersion).thenAnswer((Invocation _) async => 'Android 10');
|
|
|
|
final List<FlutterDevice> devices = <FlutterDevice>[
|
|
TestFlutterDevice(
|
|
device: mockDevice,
|
|
generator: residentCompiler,
|
|
exception: const HttpException('Connection closed before full header was received, '
|
|
'uri = http://127.0.0.1:63394/5ZmLv8A59xY=/ws'),
|
|
),
|
|
];
|
|
|
|
final int exitCode = await ColdRunner(devices,
|
|
debuggingOptions: DebuggingOptions.enabled(BuildInfo.debug),
|
|
).attach();
|
|
expect(exitCode, 2);
|
|
expect(mockLogger.statusText, contains('If you are using an emulator running Android Q Beta, '
|
|
'consider using an emulator running API level 29 or lower.'));
|
|
expect(mockLogger.statusText, contains('Learn more about the status of this issue on '
|
|
'https://issuetracker.google.com/issues/132325318'));
|
|
}, overrides: <Type, Generator>{
|
|
Logger: () => mockLogger,
|
|
});
|
|
|
|
testUsingContext('Prints message when HttpException is thrown - 2', () async {
|
|
final MockDevice mockDevice = MockDevice();
|
|
when(mockDevice.supportsHotReload).thenReturn(true);
|
|
when(mockDevice.supportsHotRestart).thenReturn(false);
|
|
when(mockDevice.targetPlatform).thenAnswer((Invocation _) async => TargetPlatform.tester);
|
|
when(mockDevice.sdkNameAndVersion).thenAnswer((Invocation _) async => 'Android 10');
|
|
|
|
final List<FlutterDevice> devices = <FlutterDevice>[
|
|
TestFlutterDevice(
|
|
device: mockDevice,
|
|
generator: residentCompiler,
|
|
exception: const HttpException(', uri = http://127.0.0.1:63394/5ZmLv8A59xY=/ws'),
|
|
),
|
|
];
|
|
|
|
final int exitCode = await ColdRunner(devices,
|
|
debuggingOptions: DebuggingOptions.enabled(BuildInfo.debug),
|
|
).attach();
|
|
expect(exitCode, 2);
|
|
expect(mockLogger.statusText, contains('If you are using an emulator running Android Q Beta, '
|
|
'consider using an emulator running API level 29 or lower.'));
|
|
expect(mockLogger.statusText, contains('Learn more about the status of this issue on '
|
|
'https://issuetracker.google.com/issues/132325318'));
|
|
}, overrides: <Type, Generator>{
|
|
Logger: () => mockLogger,
|
|
});
|
|
});
|
|
|
|
group('cleanupAtFinish()', () {
|
|
MockFlutterDevice mockFlutterDeviceFactory(Device device) {
|
|
final MockFlutterDevice mockFlutterDevice = MockFlutterDevice();
|
|
when(mockFlutterDevice.stopEchoingDeviceLog()).thenAnswer((Invocation invocation) => Future<void>.value(null));
|
|
when(mockFlutterDevice.device).thenReturn(device);
|
|
return mockFlutterDevice;
|
|
}
|
|
|
|
testUsingContext('disposes each device', () async {
|
|
final MockDevice mockDevice1 = MockDevice();
|
|
final MockDevice mockDevice2 = MockDevice();
|
|
final MockFlutterDevice mockFlutterDevice1 = mockFlutterDeviceFactory(mockDevice1);
|
|
final MockFlutterDevice mockFlutterDevice2 = mockFlutterDeviceFactory(mockDevice2);
|
|
|
|
final List<FlutterDevice> devices = <FlutterDevice>[mockFlutterDevice1, mockFlutterDevice2];
|
|
|
|
await ColdRunner(devices,
|
|
debuggingOptions: DebuggingOptions.enabled(BuildInfo.debug),
|
|
).cleanupAtFinish();
|
|
|
|
verify(mockDevice1.dispose());
|
|
verify(mockFlutterDevice1.stopEchoingDeviceLog());
|
|
verify(mockDevice2.dispose());
|
|
verify(mockFlutterDevice2.stopEchoingDeviceLog());
|
|
});
|
|
});
|
|
|
|
group('cold run', () {
|
|
BufferLogger mockLogger;
|
|
|
|
setUp(() {
|
|
mockLogger = BufferLogger();
|
|
});
|
|
|
|
testUsingContext('returns 1 if not prebuilt mode & mainPath does not exist', () async {
|
|
final MockDevice mockDevice = MockDevice();
|
|
final MockFlutterDevice mockFlutterDevice = MockFlutterDevice();
|
|
when(mockFlutterDevice.device).thenReturn(mockDevice);
|
|
final List<FlutterDevice> devices = <FlutterDevice>[mockFlutterDevice];
|
|
final int result = await ColdRunner(devices).run();
|
|
expect(result, 1);
|
|
expect(mockLogger.errorText, matches(r'Tried to run .*, but that file does not exist\.'));
|
|
expect(mockLogger.errorText, matches(r'Consider using the -t option to specify the Dart file to start\.'));
|
|
}, overrides: <Type, Generator>{
|
|
Logger: () => mockLogger,
|
|
});
|
|
|
|
testUsingContext('calls runCold on attached device', () async {
|
|
final MockDevice mockDevice = MockDevice();
|
|
final MockFlutterDevice mockFlutterDevice = MockFlutterDevice();
|
|
when(mockFlutterDevice.device).thenReturn(mockDevice);
|
|
when(mockFlutterDevice.runCold(
|
|
coldRunner: anyNamed('coldRunner'),
|
|
route: anyNamed('route')
|
|
)).thenAnswer((Invocation invocation) => Future<int>.value(1));
|
|
final List<FlutterDevice> devices = <FlutterDevice>[mockFlutterDevice];
|
|
final MockFile applicationBinary = MockFile();
|
|
final int result = await ColdRunner(
|
|
devices,
|
|
applicationBinary: applicationBinary,
|
|
debuggingOptions: DebuggingOptions.enabled(BuildInfo.debug),
|
|
).run();
|
|
expect(result, 1);
|
|
verify(mockFlutterDevice.runCold(
|
|
coldRunner: anyNamed('coldRunner'),
|
|
route: anyNamed('route'),
|
|
));
|
|
}, overrides: <Type, Generator>{
|
|
Logger: () => mockLogger,
|
|
});
|
|
});
|
|
}
|
|
|
|
class MockFile extends Mock implements File {}
|
|
class MockFlutterDevice extends Mock implements FlutterDevice {}
|
|
class MockDevice extends Mock implements Device {
|
|
MockDevice() {
|
|
when(isSupported()).thenReturn(true);
|
|
}
|
|
}
|
|
|
|
class TestFlutterDevice extends FlutterDevice {
|
|
TestFlutterDevice({
|
|
@required Device device,
|
|
@required this.exception,
|
|
@required ResidentCompiler generator,
|
|
}) : assert(exception != null),
|
|
super(device, buildMode: BuildMode.debug, generator: generator, trackWidgetCreation: false);
|
|
|
|
/// The exception to throw when the connect method is called.
|
|
final Exception exception;
|
|
|
|
@override
|
|
Future<void> connect({
|
|
ReloadSources reloadSources,
|
|
Restart restart,
|
|
CompileExpression compileExpression,
|
|
}) async {
|
|
throw exception;
|
|
}
|
|
}
|