96cf91bea3
Also updated non-migrated libraries to include @dart=2.10. Change-Id: Idcf4e54f9aa37b9b016133144af594cc932418a0 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/192122 Reviewed-by: Gary Roumanis <grouma@google.com>
84 lines
2.5 KiB
Dart
84 lines
2.5 KiB
Dart
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// @dart=2.10
|
|
|
|
import 'dart:io';
|
|
|
|
import 'package:dds/dds.dart';
|
|
import 'package:test/test.dart';
|
|
import 'package:vm_service/vm_service_io.dart';
|
|
import 'common/test_helper.dart';
|
|
|
|
void main() {
|
|
group('DDS', () {
|
|
Process process;
|
|
DartDevelopmentService dds;
|
|
|
|
setUp(() async {
|
|
process =
|
|
await spawnDartProcess('external_compilation_service_script.dart');
|
|
});
|
|
|
|
tearDown(() async {
|
|
await dds?.shutdown();
|
|
process?.kill();
|
|
dds = null;
|
|
process = null;
|
|
});
|
|
|
|
test('evaluate invokes client provided compileExpression RPC', () async {
|
|
dds = await DartDevelopmentService.startDartDevelopmentService(
|
|
remoteVmServiceUri,
|
|
);
|
|
expect(dds.isRunning, true);
|
|
final service = await vmServiceConnectUri(dds.wsUri.toString());
|
|
await service.registerService(
|
|
'compileExpression',
|
|
'Custom Expression Compilation',
|
|
);
|
|
bool invokedCompileExpression = false;
|
|
service.registerServiceCallback('compileExpression', (params) async {
|
|
invokedCompileExpression = true;
|
|
throw 'error';
|
|
});
|
|
final vm = await service.getVM();
|
|
final isolate = await service.getIsolate(vm.isolates.first.id);
|
|
try {
|
|
await service.evaluate(isolate.id, isolate.libraries.first.id, '1 + 1');
|
|
} catch (_) {
|
|
// ignore error
|
|
}
|
|
expect(invokedCompileExpression, true);
|
|
});
|
|
|
|
test('evaluateInFrame invokes client provided compileExpression RPC',
|
|
() async {
|
|
dds = await DartDevelopmentService.startDartDevelopmentService(
|
|
remoteVmServiceUri,
|
|
);
|
|
expect(dds.isRunning, true);
|
|
final service = await vmServiceConnectUri(dds.wsUri.toString());
|
|
await service.registerService(
|
|
'compileExpression',
|
|
'Custom Expression Compilation',
|
|
);
|
|
bool invokedCompileExpression = false;
|
|
service.registerServiceCallback('compileExpression', (params) async {
|
|
invokedCompileExpression = true;
|
|
throw 'error';
|
|
});
|
|
final vm = await service.getVM();
|
|
final isolate = await service.getIsolate(vm.isolates.first.id);
|
|
await service.resume(isolate.id);
|
|
try {
|
|
await service.evaluateInFrame(isolate.id, 0, '1 + 1');
|
|
} catch (_) {
|
|
// ignore error
|
|
}
|
|
expect(invokedCompileExpression, true);
|
|
});
|
|
});
|
|
}
|