Unverified Commit 430626d0 authored by Jonah Williams's avatar Jonah Williams Committed by GitHub

[flutter_tools] use existing service implementations for web (#78995)

parent 12880f77
...@@ -8,3 +8,4 @@ linter: ...@@ -8,3 +8,4 @@ linter:
unawaited_futures: true unawaited_futures: true
curly_braces_in_flow_control_structures: true curly_braces_in_flow_control_structures: true
avoid_catches_without_on_clauses: true avoid_catches_without_on_clauses: true
prefer_relative_imports: true
...@@ -138,11 +138,6 @@ class CommandHelp { ...@@ -138,11 +138,6 @@ class CommandHelp {
'debugDumpRenderTree', 'debugDumpRenderTree',
); );
late final CommandHelpOption v = _makeOption(
'v',
'Launch DevTools.',
);
late final CommandHelpOption w = _makeOption( late final CommandHelpOption w = _makeOption(
'w', 'w',
'Dump widget hierarchy to the console.', 'Dump widget hierarchy to the console.',
......
...@@ -231,14 +231,15 @@ class ResidentWebRunner extends ResidentRunner { ...@@ -231,14 +231,15 @@ class ResidentWebRunner extends ResidentRunner {
@override @override
Future<bool> debugDumpApp() async { Future<bool> debugDumpApp() async {
if (!supportsServiceProtocol) { if (!supportsServiceProtocol || _vmService == null) {
return false; return false;
} }
try { try {
await _vmService final String data = await _vmService
?.flutterDebugDumpApp( .flutterDebugDumpApp(
isolateId: null, isolateId: null,
); );
_logger.printStatus(data);
} on vmservice.RPCError { } on vmservice.RPCError {
// do nothing. // do nothing.
} }
...@@ -247,14 +248,15 @@ class ResidentWebRunner extends ResidentRunner { ...@@ -247,14 +248,15 @@ class ResidentWebRunner extends ResidentRunner {
@override @override
Future<bool> debugDumpRenderTree() async { Future<bool> debugDumpRenderTree() async {
if (!supportsServiceProtocol) { if (!supportsServiceProtocol || _vmService == null) {
return false; return false;
} }
try { try {
await _vmService final String data = await _vmService
?.flutterDebugDumpRenderTree( .flutterDebugDumpRenderTree(
isolateId: null, isolateId: null,
); );
_logger.printStatus(data);
} on vmservice.RPCError { } on vmservice.RPCError {
// do nothing. // do nothing.
} }
...@@ -263,14 +265,15 @@ class ResidentWebRunner extends ResidentRunner { ...@@ -263,14 +265,15 @@ class ResidentWebRunner extends ResidentRunner {
@override @override
Future<bool> debugDumpLayerTree() async { Future<bool> debugDumpLayerTree() async {
if (!supportsServiceProtocol) { if (!supportsServiceProtocol || _vmService == null) {
return false; return false;
} }
try { try {
await _vmService final String data = await _vmService
?.flutterDebugDumpLayerTree( .flutterDebugDumpLayerTree(
isolateId: null, isolateId: null,
); );
_logger.printStatus(data);
} on vmservice.RPCError { } on vmservice.RPCError {
// do nothing. // do nothing.
} }
...@@ -788,8 +791,6 @@ class ResidentWebRunner extends ResidentRunner { ...@@ -788,8 +791,6 @@ class ResidentWebRunner extends ResidentRunner {
_stdOutSub = _vmService.service.onStdoutEvent.listen(onLogEvent); _stdOutSub = _vmService.service.onStdoutEvent.listen(onLogEvent);
_stdErrSub = _vmService.service.onStderrEvent.listen(onLogEvent); _stdErrSub = _vmService.service.onStderrEvent.listen(onLogEvent);
_extensionEventSub =
_vmService.service.onExtensionEvent.listen(printStructuredErrorLog);
try { try {
await _vmService.service.streamListen(vmservice.EventStreams.kStdout); await _vmService.service.streamListen(vmservice.EventStreams.kStdout);
} on vmservice.RPCError { } on vmservice.RPCError {
...@@ -808,18 +809,21 @@ class ResidentWebRunner extends ResidentRunner { ...@@ -808,18 +809,21 @@ class ResidentWebRunner extends ResidentRunner {
// It is safe to ignore this error because we expect an error to be // It is safe to ignore this error because we expect an error to be
// thrown if we're not already subscribed. // thrown if we're not already subscribed.
} }
try { await setUpVmService(
await _vmService.service.streamListen(vmservice.EventStreams.kExtension); (String isolateId, {
} on vmservice.RPCError { bool force,
// It is safe to ignore this error because we expect an error to be bool pause,
// thrown if we're not already subscribed. }) async {
} await restart(benchmarkMode: false, pause: pause, fullRestart: false);
unawaited(_vmService.service.registerService('reloadSources', 'FlutterTools')); },
_vmService.service.registerServiceCallback('reloadSources', (Map<String, Object> params) async { null,
final bool pause = params['pause'] as bool ?? false; null,
await restart(benchmarkMode: false, pause: pause, fullRestart: false); device.device,
return <String, Object>{'type': 'Success'}; null,
}); printStructuredErrorLog,
_vmService.service,
);
websocketUri = Uri.parse(_connectionResult.debugConnection.uri); websocketUri = Uri.parse(_connectionResult.debugConnection.uri);
device.vmService = _vmService; device.vmService = _vmService;
......
...@@ -1403,7 +1403,6 @@ abstract class ResidentRunner { ...@@ -1403,7 +1403,6 @@ abstract class ResidentRunner {
if (supportsWriteSkSL) { if (supportsWriteSkSL) {
commandHelp.M.print(); commandHelp.M.print();
} }
commandHelp.v.print();
// `P` should precede `a` // `P` should precede `a`
commandHelp.P.print(); commandHelp.P.print();
commandHelp.a.print(); commandHelp.a.print();
......
...@@ -10,6 +10,7 @@ import 'package:file/file.dart'; ...@@ -10,6 +10,7 @@ import 'package:file/file.dart';
import 'package:meta/meta.dart' show required; import 'package:meta/meta.dart' show required;
import 'package:vm_service/vm_service.dart' as vm_service; import 'package:vm_service/vm_service.dart' as vm_service;
import 'base/common.dart';
import 'base/context.dart'; import 'base/context.dart';
import 'base/io.dart' as io; import 'base/io.dart' as io;
import 'base/logger.dart'; import 'base/logger.dart';
...@@ -158,8 +159,11 @@ typedef VMServiceConnector = Future<FlutterVmService> Function(Uri httpUri, { ...@@ -158,8 +159,11 @@ typedef VMServiceConnector = Future<FlutterVmService> Function(Uri httpUri, {
Device device, Device device,
}); });
/// A connection to the Dart VM Service. /// Set up the VM Service client by attaching services for each of the provided
vm_service.VmService setUpVmService( /// callbacks.
///
/// All parameters besides [vmService] may be null.
Future<vm_service.VmService> setUpVmService(
ReloadSources reloadSources, ReloadSources reloadSources,
Restart restart, Restart restart,
CompileExpression compileExpression, CompileExpression compileExpression,
...@@ -167,7 +171,11 @@ vm_service.VmService setUpVmService( ...@@ -167,7 +171,11 @@ vm_service.VmService setUpVmService(
GetSkSLMethod skSLMethod, GetSkSLMethod skSLMethod,
PrintStructuredErrorLogMethod printStructuredErrorLogMethod, PrintStructuredErrorLogMethod printStructuredErrorLogMethod,
vm_service.VmService vmService vm_service.VmService vmService
) { ) async {
// Each service registration requires a request to the attached VM service. Since the
// order of these requests does not mattter, store each future in a list and await
// all at the end of this method.
final List<Future<vm_service.Success>> registrationRequests = <Future<vm_service.Success>>[];
if (reloadSources != null) { if (reloadSources != null) {
vmService.registerServiceCallback('reloadSources', (Map<String, dynamic> params) async { vmService.registerServiceCallback('reloadSources', (Map<String, dynamic> params) async {
final String isolateId = _validateRpcStringParam('reloadSources', params, 'isolateId'); final String isolateId = _validateRpcStringParam('reloadSources', params, 'isolateId');
...@@ -182,7 +190,7 @@ vm_service.VmService setUpVmService( ...@@ -182,7 +190,7 @@ vm_service.VmService setUpVmService(
} }
}; };
}); });
vmService.registerService('reloadSources', 'Flutter Tools'); registrationRequests.add(vmService.registerService('reloadSources', 'Flutter Tools'));
} }
if (restart != null) { if (restart != null) {
...@@ -195,7 +203,7 @@ vm_service.VmService setUpVmService( ...@@ -195,7 +203,7 @@ vm_service.VmService setUpVmService(
} }
}; };
}); });
vmService.registerService('hotRestart', 'Flutter Tools'); registrationRequests.add(vmService.registerService('hotRestart', 'Flutter Tools'));
} }
vmService.registerServiceCallback('flutterVersion', (Map<String, dynamic> params) async { vmService.registerServiceCallback('flutterVersion', (Map<String, dynamic> params) async {
...@@ -210,7 +218,7 @@ vm_service.VmService setUpVmService( ...@@ -210,7 +218,7 @@ vm_service.VmService setUpVmService(
} }
}; };
}); });
vmService.registerService('flutterVersion', 'Flutter Tools'); registrationRequests.add(vmService.registerService('flutterVersion', 'Flutter Tools'));
if (compileExpression != null) { if (compileExpression != null) {
vmService.registerServiceCallback('compileExpression', (Map<String, dynamic> params) async { vmService.registerServiceCallback('compileExpression', (Map<String, dynamic> params) async {
...@@ -230,7 +238,7 @@ vm_service.VmService setUpVmService( ...@@ -230,7 +238,7 @@ vm_service.VmService setUpVmService(
'result': <String, dynamic>{'kernelBytes': kernelBytesBase64}, 'result': <String, dynamic>{'kernelBytes': kernelBytesBase64},
}; };
}); });
vmService.registerService('compileExpression', 'Flutter Tools'); registrationRequests.add(vmService.registerService('compileExpression', 'Flutter Tools'));
} }
if (device != null) { if (device != null) {
vmService.registerServiceCallback('flutterMemoryInfo', (Map<String, dynamic> params) async { vmService.registerServiceCallback('flutterMemoryInfo', (Map<String, dynamic> params) async {
...@@ -242,7 +250,7 @@ vm_service.VmService setUpVmService( ...@@ -242,7 +250,7 @@ vm_service.VmService setUpVmService(
} }
}; };
}); });
vmService.registerService('flutterMemoryInfo', 'Flutter Tools'); registrationRequests.add(vmService.registerService('flutterMemoryInfo', 'Flutter Tools'));
} }
if (skSLMethod != null) { if (skSLMethod != null) {
vmService.registerServiceCallback('flutterGetSkSL', (Map<String, dynamic> params) async { vmService.registerServiceCallback('flutterGetSkSL', (Map<String, dynamic> params) async {
...@@ -254,16 +262,22 @@ vm_service.VmService setUpVmService( ...@@ -254,16 +262,22 @@ vm_service.VmService setUpVmService(
} }
}; };
}); });
vmService.registerService('flutterGetSkSL', 'Flutter Tools'); registrationRequests.add(vmService.registerService('flutterGetSkSL', 'Flutter Tools'));
} }
if (printStructuredErrorLogMethod != null) { if (printStructuredErrorLogMethod != null) {
try {
vmService.streamListen(vm_service.EventStreams.kExtension);
} on vm_service.RPCError {
// It is safe to ignore this error because we expect an error to be
// thrown if we're already subscribed.
}
vmService.onExtensionEvent.listen(printStructuredErrorLogMethod); vmService.onExtensionEvent.listen(printStructuredErrorLogMethod);
// It is safe to ignore this error because we expect an error to be
// thrown if we're already subscribed.
registrationRequests.add(vmService
.streamListen(vm_service.EventStreams.kExtension)
.catchError((dynamic error) {}, test: (dynamic error) => error is vm_service.RPCError)
);
}
try {
await Future.wait(registrationRequests);
} on vm_service.RPCError catch (e) {
throwToolExit('Failed to register service methods on attached VM Service: $e');
} }
return vmService; return vmService;
} }
...@@ -319,7 +333,7 @@ Future<FlutterVmService> _connect( ...@@ -319,7 +333,7 @@ Future<FlutterVmService> _connect(
}, },
); );
final vm_service.VmService service = setUpVmService( final vm_service.VmService service = await setUpVmService(
reloadSources, reloadSources,
restart, restart,
compileExpression, compileExpression,
......
...@@ -73,7 +73,6 @@ void _testMessageLength({ ...@@ -73,7 +73,6 @@ void _testMessageLength({
expect(commandHelp.r.toString().length, lessThanOrEqualTo(expectedWidth)); expect(commandHelp.r.toString().length, lessThanOrEqualTo(expectedWidth));
expect(commandHelp.s.toString().length, lessThanOrEqualTo(expectedWidth)); expect(commandHelp.s.toString().length, lessThanOrEqualTo(expectedWidth));
expect(commandHelp.t.toString().length, lessThanOrEqualTo(expectedWidth)); expect(commandHelp.t.toString().length, lessThanOrEqualTo(expectedWidth));
expect(commandHelp.v.toString().length, lessThanOrEqualTo(expectedWidth));
expect(commandHelp.w.toString().length, lessThanOrEqualTo(expectedWidth)); expect(commandHelp.w.toString().length, lessThanOrEqualTo(expectedWidth));
expect(commandHelp.z.toString().length, lessThanOrEqualTo(expectedWidth)); expect(commandHelp.z.toString().length, lessThanOrEqualTo(expectedWidth));
} }
...@@ -119,7 +118,6 @@ void main() { ...@@ -119,7 +118,6 @@ void main() {
expect(commandHelp.r.toString(), startsWith('\x1B[1mr\x1B[22m')); expect(commandHelp.r.toString(), startsWith('\x1B[1mr\x1B[22m'));
expect(commandHelp.s.toString(), startsWith('\x1B[1ms\x1B[22m')); expect(commandHelp.s.toString(), startsWith('\x1B[1ms\x1B[22m'));
expect(commandHelp.t.toString(), startsWith('\x1B[1mt\x1B[22m')); expect(commandHelp.t.toString(), startsWith('\x1B[1mt\x1B[22m'));
expect(commandHelp.v.toString(), startsWith('\x1B[1mv\x1B[22m'));
expect(commandHelp.w.toString(), startsWith('\x1B[1mw\x1B[22m')); expect(commandHelp.w.toString(), startsWith('\x1B[1mw\x1B[22m'));
expect(commandHelp.z.toString(), startsWith('\x1B[1mz\x1B[22m')); expect(commandHelp.z.toString(), startsWith('\x1B[1mz\x1B[22m'));
}); });
...@@ -196,7 +194,6 @@ void main() { ...@@ -196,7 +194,6 @@ void main() {
expect(commandHelp.r.toString(), equals('\x1B[1mr\x1B[22m Hot reload. $fire$fire$fire')); expect(commandHelp.r.toString(), equals('\x1B[1mr\x1B[22m Hot reload. $fire$fire$fire'));
expect(commandHelp.s.toString(), equals('\x1B[1ms\x1B[22m Save a screenshot to flutter.png.')); expect(commandHelp.s.toString(), equals('\x1B[1ms\x1B[22m Save a screenshot to flutter.png.'));
expect(commandHelp.t.toString(), equals('\x1B[1mt\x1B[22m Dump rendering tree to the console. \x1B[90m(debugDumpRenderTree)\x1B[39m\x1b[22m')); expect(commandHelp.t.toString(), equals('\x1B[1mt\x1B[22m Dump rendering tree to the console. \x1B[90m(debugDumpRenderTree)\x1B[39m\x1b[22m'));
expect(commandHelp.v.toString(), equals('\x1B[1mv\x1B[22m Launch DevTools.'));
expect(commandHelp.w.toString(), equals('\x1B[1mw\x1B[22m Dump widget hierarchy to the console. \x1B[90m(debugDumpApp)\x1B[39m\x1b[22m')); expect(commandHelp.w.toString(), equals('\x1B[1mw\x1B[22m Dump widget hierarchy to the console. \x1B[90m(debugDumpApp)\x1B[39m\x1b[22m'));
expect(commandHelp.z.toString(), equals('\x1B[1mz\x1B[22m Toggle elevation checker.')); expect(commandHelp.z.toString(), equals('\x1B[1mz\x1B[22m Toggle elevation checker.'));
}); });
...@@ -223,7 +220,6 @@ void main() { ...@@ -223,7 +220,6 @@ void main() {
expect(commandHelp.r.toString(), equals('r Hot reload. $fire$fire$fire')); expect(commandHelp.r.toString(), equals('r Hot reload. $fire$fire$fire'));
expect(commandHelp.s.toString(), equals('s Save a screenshot to flutter.png.')); expect(commandHelp.s.toString(), equals('s Save a screenshot to flutter.png.'));
expect(commandHelp.t.toString(), equals('t Dump rendering tree to the console. (debugDumpRenderTree)')); expect(commandHelp.t.toString(), equals('t Dump rendering tree to the console. (debugDumpRenderTree)'));
expect(commandHelp.v.toString(), equals('v Launch DevTools.'));
expect(commandHelp.w.toString(), equals('w Dump widget hierarchy to the console. (debugDumpApp)')); expect(commandHelp.w.toString(), equals('w Dump widget hierarchy to the console. (debugDumpApp)'));
expect(commandHelp.z.toString(), equals('z Toggle elevation checker.')); expect(commandHelp.z.toString(), equals('z Toggle elevation checker.'));
}); });
......
...@@ -1501,7 +1501,6 @@ void main() { ...@@ -1501,7 +1501,6 @@ void main() {
commandHelp.z, commandHelp.z,
commandHelp.g, commandHelp.g,
commandHelp.M, commandHelp.M,
commandHelp.v,
commandHelp.P, commandHelp.P,
commandHelp.a, commandHelp.a,
'', '',
......
...@@ -61,18 +61,32 @@ const List<VmServiceExpectation> kAttachIsolateExpectations = <VmServiceExpectat ...@@ -61,18 +61,32 @@ const List<VmServiceExpectation> kAttachIsolateExpectations = <VmServiceExpectat
} }
), ),
FakeVmServiceRequest( FakeVmServiceRequest(
method: 'streamListen', method: 'registerService',
args: <String, Object>{ args: <String, Object>{
'streamId': 'Extension', 'service': 'reloadSources',
}, 'alias': 'Flutter Tools',
}
), ),
FakeVmServiceRequest( FakeVmServiceRequest(
method: 'registerService', method: 'registerService',
args: <String, Object>{ args: <String, Object>{
'service': 'reloadSources', 'service': 'flutterVersion',
'alias': 'FlutterTools', 'alias': 'Flutter Tools',
} }
) ),
FakeVmServiceRequest(
method: 'registerService',
args: <String, Object>{
'service': 'flutterMemoryInfo',
'alias': 'Flutter Tools',
}
),
FakeVmServiceRequest(
method: 'streamListen',
args: <String, Object>{
'streamId': 'Extension',
},
),
]; ];
const List<VmServiceExpectation> kAttachExpectations = <VmServiceExpectation>[ const List<VmServiceExpectation> kAttachExpectations = <VmServiceExpectation>[
...@@ -480,11 +494,6 @@ void main() { ...@@ -480,11 +494,6 @@ void main() {
connectionInfoCompleter: connectionInfoCompleter, connectionInfoCompleter: connectionInfoCompleter,
)); ));
await connectionInfoCompleter.future; await connectionInfoCompleter.future;
// Need these to run events, otherwise expect statements below run before
// structured errors are processed.
await null;
await null;
await null; await null;
expect(testLogger.statusText, contains('\nerror text')); expect(testLogger.statusText, contains('\nerror text'));
......
...@@ -9,9 +9,8 @@ import 'dart:async'; ...@@ -9,9 +9,8 @@ import 'dart:async';
import 'package:flutter_tools/src/base/common.dart'; import 'package:flutter_tools/src/base/common.dart';
import 'package:flutter_tools/src/base/io.dart' as io; import 'package:flutter_tools/src/base/io.dart' as io;
import 'package:flutter_tools/src/convert.dart'; import 'package:flutter_tools/src/convert.dart';
import 'package:test/fake.dart';
import 'package:vm_service/vm_service.dart' as vm_service; import 'package:vm_service/vm_service.dart' as vm_service;
import 'package:mockito/mockito.dart';
import 'package:flutter_tools/src/base/logger.dart';
import 'package:flutter_tools/src/device.dart'; import 'package:flutter_tools/src/device.dart';
import 'package:flutter_tools/src/version.dart'; import 'package:flutter_tools/src/version.dart';
import 'package:flutter_tools/src/vmservice.dart'; import 'package:flutter_tools/src/vmservice.dart';
...@@ -90,11 +89,11 @@ final FakeVmServiceRequest listViewsRequest = FakeVmServiceRequest( ...@@ -90,11 +89,11 @@ final FakeVmServiceRequest listViewsRequest = FakeVmServiceRequest(
typedef ServiceCallback = Future<Map<String, dynamic>> Function(Map<String, Object>); typedef ServiceCallback = Future<Map<String, dynamic>> Function(Map<String, Object>);
void main() { void main() {
testUsingContext('VmService registers reloadSources', () async { testWithoutContext('VmService registers reloadSources', () async {
Future<void> reloadSources(String isolateId, { bool pause, bool force}) async {} Future<void> reloadSources(String isolateId, { bool pause, bool force}) async {}
final MockVMService mockVMService = MockVMService(); final MockVMService mockVMService = MockVMService();
setUpVmService( await setUpVmService(
reloadSources, reloadSources,
null, null,
null, null,
...@@ -104,16 +103,14 @@ void main() { ...@@ -104,16 +103,14 @@ void main() {
mockVMService, mockVMService,
); );
verify(mockVMService.registerService('reloadSources', 'Flutter Tools')).called(1); expect(mockVMService.services, containsPair('reloadSources', 'Flutter Tools'));
}, overrides: <Type, Generator>{
Logger: () => BufferLogger.test()
}); });
testUsingContext('VmService registers flutterMemoryInfo service', () async { testWithoutContext('VmService registers flutterMemoryInfo service', () async {
final FakeDevice mockDevice = FakeDevice(); final FakeDevice mockDevice = FakeDevice();
final MockVMService mockVMService = MockVMService(); final MockVMService mockVMService = MockVMService();
setUpVmService( await setUpVmService(
null, null,
null, null,
null, null,
...@@ -123,14 +120,12 @@ void main() { ...@@ -123,14 +120,12 @@ void main() {
mockVMService, mockVMService,
); );
verify(mockVMService.registerService('flutterMemoryInfo', 'Flutter Tools')).called(1); expect(mockVMService.services, containsPair('flutterMemoryInfo', 'Flutter Tools'));
}, overrides: <Type, Generator>{
Logger: () => BufferLogger.test()
}); });
testUsingContext('VmService registers flutterGetSkSL service', () async { testWithoutContext('VmService registers flutterGetSkSL service', () async {
final MockVMService mockVMService = MockVMService(); final MockVMService mockVMService = MockVMService();
setUpVmService( await setUpVmService(
null, null,
null, null,
null, null,
...@@ -140,17 +135,42 @@ void main() { ...@@ -140,17 +135,42 @@ void main() {
mockVMService, mockVMService,
); );
verify(mockVMService.registerService('flutterGetSkSL', 'Flutter Tools')).called(1); expect(mockVMService.services, containsPair('flutterGetSkSL', 'Flutter Tools'));
}, overrides: <Type, Generator>{ });
Logger: () => BufferLogger.test()
testWithoutContext('VmService throws tool exit on service registration failure.', () async {
final MockVMService mockVMService = MockVMService()
..errorOnRegisterService = true;
await expectLater(() async => setUpVmService(
null,
null,
null,
null,
() async => 'hello',
null,
mockVMService,
), throwsToolExit());
});
testWithoutContext('VmService throws tool exit on service registration failure with awaited future.', () async {
final MockVMService mockVMService = MockVMService()
..errorOnRegisterService = true;
await expectLater(() async => setUpVmService(
null,
null,
null,
null,
() async => 'hello',
(vm_service.Event event) { },
mockVMService,
), throwsToolExit());
}); });
testUsingContext('VmService registers flutterPrintStructuredErrorLogMethod', () async { testWithoutContext('VmService registers flutterPrintStructuredErrorLogMethod', () async {
final MockVMService mockVMService = MockVMService(); final MockVMService mockVMService = MockVMService();
when(mockVMService.onExtensionEvent).thenAnswer((Invocation invocation) { await setUpVmService(
return const Stream<vm_service.Event>.empty();
});
setUpVmService(
null, null,
null, null,
null, null,
...@@ -159,14 +179,12 @@ void main() { ...@@ -159,14 +179,12 @@ void main() {
(vm_service.Event event) async => 'hello', (vm_service.Event event) async => 'hello',
mockVMService, mockVMService,
); );
verify(mockVMService.streamListen(vm_service.EventStreams.kExtension)).called(1); expect(mockVMService.listenedStreams, contains(vm_service.EventStreams.kExtension));
}, overrides: <Type, Generator>{
Logger: () => BufferLogger.test()
}); });
testUsingContext('VMService returns correct FlutterVersion', () async { testWithoutContext('VMService returns correct FlutterVersion', () async {
final MockVMService mockVMService = MockVMService(); final MockVMService mockVMService = MockVMService();
setUpVmService( await setUpVmService(
null, null,
null, null,
null, null,
...@@ -176,9 +194,7 @@ void main() { ...@@ -176,9 +194,7 @@ void main() {
mockVMService, mockVMService,
); );
verify(mockVMService.registerService('flutterVersion', 'Flutter Tools')).called(1); expect(mockVMService.services, containsPair('flutterVersion', 'Flutter Tools'));
}, overrides: <Type, Generator>{
FlutterVersion: () => FakeFlutterVersion(),
}); });
testUsingContext('VMService prints messages for connection failures', () { testUsingContext('VMService prints messages for connection failures', () {
...@@ -629,8 +645,35 @@ void main() { ...@@ -629,8 +645,35 @@ void main() {
}); });
} }
class MockVMService extends Mock implements vm_service.VmService {} class MockVMService extends Fake implements vm_service.VmService {
final Map<String, String> services = <String, String>{};
final Set<String> listenedStreams = <String>{};
bool errorOnRegisterService = false;
@override
void registerServiceCallback(String service, vm_service.ServiceCallback cb) {}
@override
Future<vm_service.Success> registerService(String service, String alias) async {
services[service] = alias;
if (errorOnRegisterService) {
throw vm_service.RPCError('registerService', 1234, 'error');
}
return vm_service.Success();
}
@override
Stream<vm_service.Event> get onExtensionEvent => const Stream<vm_service.Event>.empty();
@override
Future<vm_service.Success> streamListen(String streamId) async {
listenedStreams.add(streamId);
return vm_service.Success();
}
}
class FakeDevice extends Fake implements Device {} class FakeDevice extends Fake implements Device {}
class FakeFlutterVersion extends Fake implements FlutterVersion { class FakeFlutterVersion extends Fake implements FlutterVersion {
@override @override
Map<String, Object> toJson() => const <String, Object>{'Fake': 'Version'}; Map<String, Object> toJson() => const <String, Object>{'Fake': 'Version'};
......
...@@ -572,7 +572,6 @@ void main() { ...@@ -572,7 +572,6 @@ void main() {
'z Toggle elevation checker.', 'z Toggle elevation checker.',
'g Run source code generators.', 'g Run source code generators.',
'M Write SkSL shaders to a unique file in the project directory.', 'M Write SkSL shaders to a unique file in the project directory.',
'v Launch DevTools.', // TODO(ianh): hide this when devtools isn't available
'P Toggle performance overlay. (WidgetsApp.showPerformanceOverlay)', 'P Toggle performance overlay. (WidgetsApp.showPerformanceOverlay)',
'a Toggle timeline events for all widget build methods. (debugProfileWidgetBuilds)', 'a Toggle timeline events for all widget build methods. (debugProfileWidgetBuilds)',
'', '',
......
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