blob: 8f27d18199b671df752d2d82785caf43a45f4bb2 [file]
// Copyright (c) 2016, 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.
import 'package:test/test.dart';
import 'package:vm_service/vm_service.dart';
import 'common/service_test_common.dart';
import 'eval_internal_class_lib.dart' as testee_lib;
void main([args = const <String>[]]) =>
IsolateTestHarness('eval_internal_class_lib.dart', args)
.addCustomTest((VmService service, IsolateRef isolateRef) async {
final isolateId = isolateRef.id!;
final isolate = await service.getIsolate(isolateId);
final rootLib = await service.getObject(
isolateId,
isolate.libraries!
.firstWhere((l) => l.uri!.contains('eval_internal_class_lib'))
.id!,
) as Library;
final Class classLibrary = await service.getObject(
isolateId,
rootLib.classRef!.id!,
) as Class;
{
bool caughtExceptions = false;
try {
final dynamic result = await service.evaluate(
isolateId,
classLibrary.id!,
'3 + 4',
);
print(result);
} on RPCError catch (e) {
expect(e.toString(), contains('can be evaluated only'));
caughtExceptions = true;
}
expect(caughtExceptions, isTrue);
}
final classClass = await service.getObject(
isolateId,
classLibrary.classRef!.id!,
) as Class;
{
bool caughtExceptions = false;
try {
final dynamic result = await service.evaluate(
isolateId,
classClass.id!,
'3 + 4',
);
print(result);
} on RPCError catch (e) {
expect(e.toString(), contains('can be evaluated only'));
caughtExceptions = true;
}
expect(caughtExceptions, isTrue);
}
final classArray = await service.getObject(
isolateId,
(await service.evaluate(
isolateId,
rootLib.id!,
'List<dynamic>.filled(2, null)',
) as InstanceRef)
.classRef!
.id!,
) as Class;
final dynamic result = await service.evaluate(
isolateId,
classArray.id!,
'3 + 4',
);
expect(result is InstanceRef, isTrue);
expect(result.valueAsString, '7');
}).run(testeeMain: testee_lib.main);