Unverified Commit d30ad47e authored by Lau Ching Jun's avatar Lau Ching Jun Committed by GitHub

Make flutter attach respect the `--dds-port` flag. (#105560)

parent 01822a48
...@@ -428,6 +428,7 @@ known, it can be explicitly provided to attach via the command-line, e.g. ...@@ -428,6 +428,7 @@ known, it can be explicitly provided to attach via the command-line, e.g.
final DebuggingOptions debuggingOptions = DebuggingOptions.enabled( final DebuggingOptions debuggingOptions = DebuggingOptions.enabled(
buildInfo, buildInfo,
enableDds: enableDds, enableDds: enableDds,
ddsPort: ddsPort,
devToolsServerAddress: devToolsServerAddress, devToolsServerAddress: devToolsServerAddress,
); );
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
// found in the LICENSE file. // found in the LICENSE file.
import 'package:file/file.dart'; import 'package:file/file.dart';
import 'package:flutter_tools/src/base/io.dart';
import 'package:vm_service/vm_service.dart'; import 'package:vm_service/vm_service.dart';
import '../src/common.dart'; import '../src/common.dart';
...@@ -10,97 +11,150 @@ import 'test_data/basic_project.dart'; ...@@ -10,97 +11,150 @@ import 'test_data/basic_project.dart';
import 'test_driver.dart'; import 'test_driver.dart';
import 'test_utils.dart'; import 'test_utils.dart';
Future<int> getFreePort() async {
int port = 0;
final ServerSocket serverSocket = await ServerSocket.bind(InternetAddress.loopbackIPv4, 0);
port = serverSocket.port;
await serverSocket.close();
return port;
}
void main() { void main() {
late FlutterRunTestDriver flutterRun, flutterAttach;
final BasicProject project = BasicProject(); final BasicProject project = BasicProject();
late Directory tempDir; late Directory tempDir;
setUp(() async { setUp(() async {
tempDir = createResolvedTempDirectorySync('attach_test.'); tempDir = createResolvedTempDirectorySync('attach_test.');
await project.setUpIn(tempDir); await project.setUpIn(tempDir);
flutterRun = FlutterRunTestDriver(tempDir, logPrefix: ' RUN ');
flutterAttach = FlutterRunTestDriver(
tempDir,
logPrefix: 'ATTACH ',
// Only one DDS instance can be connected to the VM service at a time.
// DDS can also only initialize if the VM service doesn't have any existing
// clients, so we'll just let _flutterRun be responsible for spawning DDS.
spawnDdsInstance: false,
);
}); });
tearDown(() async { tearDown(() {
await flutterAttach.detach();
await flutterRun.stop();
tryToDelete(tempDir); tryToDelete(tempDir);
}); });
testWithoutContext('can hot reload', () async { group('DDS in flutter run', () {
await flutterRun.run(withDebugger: true); late FlutterRunTestDriver flutterRun, flutterAttach;
await flutterAttach.attach(flutterRun.vmServicePort!); setUp(() {
await flutterAttach.hotReload(); flutterRun = FlutterRunTestDriver(tempDir, logPrefix: ' RUN ');
}); flutterAttach = FlutterRunTestDriver(
tempDir,
logPrefix: 'ATTACH ',
// Only one DDS instance can be connected to the VM service at a time.
// DDS can also only initialize if the VM service doesn't have any existing
// clients, so we'll just let _flutterRun be responsible for spawning DDS.
spawnDdsInstance: false,
);
});
testWithoutContext('can detach, reattach, hot reload', () async { tearDown(() async {
await flutterRun.run(withDebugger: true); await flutterAttach.detach();
await flutterAttach.attach(flutterRun.vmServicePort!); await flutterRun.stop();
await flutterAttach.detach(); });
await flutterAttach.attach(flutterRun.vmServicePort!);
await flutterAttach.hotReload(); testWithoutContext('can hot reload', () async {
}); await flutterRun.run(withDebugger: true);
await flutterAttach.attach(flutterRun.vmServicePort!);
await flutterAttach.hotReload();
});
testWithoutContext('can detach, reattach, hot reload', () async {
await flutterRun.run(withDebugger: true);
await flutterAttach.attach(flutterRun.vmServicePort!);
await flutterAttach.detach();
await flutterAttach.attach(flutterRun.vmServicePort!);
await flutterAttach.hotReload();
});
testWithoutContext('killing process behaves the same as detach ', () async {
await flutterRun.run(withDebugger: true);
await flutterAttach.attach(flutterRun.vmServicePort!);
await flutterAttach.quit();
flutterAttach = FlutterRunTestDriver(
tempDir,
logPrefix: 'ATTACH-2',
spawnDdsInstance: false,
);
await flutterAttach.attach(flutterRun.vmServicePort!);
await flutterAttach.hotReload();
});
testWithoutContext('killing process behaves the same as detach ', () async { testWithoutContext('sets activeDevToolsServerAddress extension', () async {
await flutterRun.run(withDebugger: true); await flutterRun.run(
await flutterAttach.attach(flutterRun.vmServicePort!); startPaused: true,
await flutterAttach.quit(); withDebugger: true,
flutterAttach = FlutterRunTestDriver( additionalCommandArgs: <String>['--devtools-server-address', 'http://127.0.0.1:9105'],
tempDir, );
logPrefix: 'ATTACH-2', await flutterRun.resume();
spawnDdsInstance: false, await pollForServiceExtensionValue<String>(
); testDriver: flutterRun,
await flutterAttach.attach(flutterRun.vmServicePort!); extension: 'ext.flutter.activeDevToolsServerAddress',
await flutterAttach.hotReload(); continuePollingValue: '',
matches: equals('http://127.0.0.1:9105'),
);
await pollForServiceExtensionValue<String>(
testDriver: flutterRun,
extension: 'ext.flutter.connectedVmServiceUri',
continuePollingValue: '',
matches: isNotEmpty,
);
final Response response = await flutterRun.callServiceExtension('ext.flutter.connectedVmServiceUri');
final String vmServiceUri = response.json!['value'] as String;
// Attach with a different DevTools server address.
await flutterAttach.attach(
flutterRun.vmServicePort!,
additionalCommandArgs: <String>['--devtools-server-address', 'http://127.0.0.1:9110'],
);
await pollForServiceExtensionValue<String>(
testDriver: flutterAttach,
extension: 'ext.flutter.activeDevToolsServerAddress',
continuePollingValue: '',
matches: equals('http://127.0.0.1:9110'),
);
await pollForServiceExtensionValue<String>(
testDriver: flutterRun,
extension: 'ext.flutter.connectedVmServiceUri',
continuePollingValue: '',
matches: equals(vmServiceUri),
);
});
}); });
testWithoutContext('sets activeDevToolsServerAddress extension', () async { group('DDS in flutter attach', () {
await flutterRun.run( late FlutterRunTestDriver flutterRun, flutterAttach;
startPaused: true, setUp(() {
withDebugger: true, flutterRun = FlutterRunTestDriver(
additionalCommandArgs: <String>['--devtools-server-address', 'http://127.0.0.1:9105'], tempDir,
); logPrefix: ' RUN ',
await flutterRun.resume(); spawnDdsInstance: false,
await pollForServiceExtensionValue<String>( );
testDriver: flutterRun, flutterAttach = FlutterRunTestDriver(
extension: 'ext.flutter.activeDevToolsServerAddress', tempDir,
continuePollingValue: '', logPrefix: 'ATTACH ',
matches: equals('http://127.0.0.1:9105'), );
); });
await pollForServiceExtensionValue<String>(
testDriver: flutterRun, tearDown(() async {
extension: 'ext.flutter.connectedVmServiceUri', await flutterAttach.detach();
continuePollingValue: '', await flutterRun.stop();
matches: isNotEmpty, });
);
testWithoutContext('uses the designated dds port', () async {
final Response response = await flutterRun.callServiceExtension('ext.flutter.connectedVmServiceUri'); final int ddsPort = await getFreePort();
final String vmServiceUri = response.json!['value'] as String;
await flutterRun.run(withDebugger: true);
// Attach with a different DevTools server address. await flutterAttach.attach(
await flutterAttach.attach( flutterRun.vmServicePort!,
flutterRun.vmServicePort!, additionalCommandArgs: <String>[
additionalCommandArgs: <String>['--devtools-server-address', 'http://127.0.0.1:9110'], '--dds-port=$ddsPort',
); ],
await pollForServiceExtensionValue<String>( );
testDriver: flutterAttach,
extension: 'ext.flutter.activeDevToolsServerAddress', final Response response = await flutterAttach.callServiceExtension('ext.flutter.connectedVmServiceUri');
continuePollingValue: '', final String vmServiceUriString = response.json!['value'] as String;
matches: equals('http://127.0.0.1:9110'), final Uri vmServiceUri = Uri.parse(vmServiceUriString);
); expect(vmServiceUri.port, equals(ddsPort));
await pollForServiceExtensionValue<String>( });
testDriver: flutterRun,
extension: 'ext.flutter.connectedVmServiceUri',
continuePollingValue: '',
matches: equals(vmServiceUri),
);
}); });
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment