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

Add `flutter attach` command. This command allows Flutter to connect to applications that haven't been launched using `flutter run`.
75 lines
2.8 KiB
Dart
75 lines
2.8 KiB
Dart
// Copyright 2018 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 'package:flutter_tools/src/cache.dart';
|
|
import 'package:flutter_tools/src/commands/attach.dart';
|
|
import 'package:flutter_tools/src/device.dart';
|
|
import 'package:mockito/mockito.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
import '../src/common.dart';
|
|
import '../src/context.dart';
|
|
import '../src/mocks.dart';
|
|
|
|
void main() {
|
|
group('attach', () {
|
|
setUpAll(() {
|
|
Cache.disableLocking();
|
|
});
|
|
|
|
testUsingContext('finds observatory port and forwards', () async {
|
|
const int devicePort = 499;
|
|
const int hostPort = 42;
|
|
final MockDeviceLogReader mockLogReader = new MockDeviceLogReader();
|
|
final MockPortForwarder portForwarder = new MockPortForwarder();
|
|
final MockAndroidDevice device = new MockAndroidDevice();
|
|
when(device.getLogReader()).thenAnswer((_) {
|
|
// Now that the reader is used, start writing messages to it.
|
|
Timer.run(() {
|
|
mockLogReader.addLine('Foo');
|
|
mockLogReader.addLine('Observatory listening on http://127.0.0.1:$devicePort');
|
|
});
|
|
|
|
return mockLogReader;
|
|
});
|
|
when(device.portForwarder).thenReturn(portForwarder);
|
|
when(portForwarder.forward(devicePort, hostPort: anyNamed('hostPort'))).thenAnswer((_) async => hostPort);
|
|
when(portForwarder.forwardedPorts).thenReturn(<ForwardedPort>[new ForwardedPort(hostPort, devicePort)]);
|
|
when(portForwarder.unforward).thenReturn((ForwardedPort _) async => null);
|
|
testDeviceManager.addDevice(device);
|
|
|
|
final AttachCommand command = new AttachCommand();
|
|
|
|
await createTestCommandRunner(command).run(<String>['attach']);
|
|
|
|
verify(portForwarder.forward(devicePort, hostPort: anyNamed('hostPort'))).called(1);
|
|
|
|
mockLogReader.dispose();
|
|
});
|
|
|
|
testUsingContext('forwards to given port', () async {
|
|
const int devicePort = 499;
|
|
const int hostPort = 42;
|
|
final MockPortForwarder portForwarder = new MockPortForwarder();
|
|
final MockAndroidDevice device = new MockAndroidDevice();
|
|
|
|
when(device.portForwarder).thenReturn(portForwarder);
|
|
when(portForwarder.forward(devicePort)).thenAnswer((_) async => hostPort);
|
|
when(portForwarder.forwardedPorts).thenReturn(<ForwardedPort>[new ForwardedPort(hostPort, devicePort)]);
|
|
when(portForwarder.unforward).thenReturn((ForwardedPort _) async => null);
|
|
testDeviceManager.addDevice(device);
|
|
|
|
final AttachCommand command = new AttachCommand();
|
|
|
|
await createTestCommandRunner(command).run(<String>['attach', '--debug-port', '$devicePort']);
|
|
|
|
verify(portForwarder.forward(devicePort)).called(1);
|
|
});
|
|
});
|
|
}
|
|
|
|
class MockPortForwarder extends Mock implements DevicePortForwarder {}
|