727d29d6b6
- IDs are strings which can be concatenated together like paths. - Isolate ID is now "/isolates/XXX" - Function, field, class, library, and script IDs are now stable. - Introduce <type-ref> tags. R=turnidge@google.com Review URL: https://codereview.chromium.org//98253009 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@31358 260f80e4-7a28-3924-810f-c04153c831b5
51 lines
1.7 KiB
Dart
51 lines
1.7 KiB
Dart
// Copyright (c) 2013, 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.
|
|
|
|
library isolate_stacktrace_command_test;
|
|
|
|
import 'test_helper.dart';
|
|
import 'package:expect/expect.dart';
|
|
|
|
class StacktraceTest extends VmServiceRequestHelper {
|
|
StacktraceTest(port, id) :
|
|
super('http://127.0.0.1:$port/$id/stacktrace');
|
|
|
|
onRequestCompleted(Map reply) {
|
|
Expect.equals('StackTrace', reply['type'], 'Not a StackTrace message.');
|
|
Expect.isTrue(4 <= reply['members'].length, 'Stacktrace is wrong length.');
|
|
// The number of frames involved in isolate message dispatch is an
|
|
// implementation detail. Only check that we got all the frames for user
|
|
// code.
|
|
Expect.equals('a', reply['members'][0]['name']);
|
|
Expect.equals('b', reply['members'][1]['name']);
|
|
Expect.equals('c', reply['members'][2]['name']);
|
|
Expect.equals('myIsolateName', reply['members'][3]['name']);
|
|
}
|
|
}
|
|
|
|
class IsolateListTest extends VmServiceRequestHelper {
|
|
IsolateListTest(port) : super('http://127.0.0.1:$port/isolates');
|
|
|
|
int _isolateId;
|
|
onRequestCompleted(Map reply) {
|
|
IsolateListTester tester = new IsolateListTester(reply);
|
|
tester.checkIsolateCount(2);
|
|
_isolateId = tester.checkIsolateNameContains('myIsolateName');
|
|
}
|
|
}
|
|
|
|
|
|
main() {
|
|
var process = new TestLauncher('isolate_stacktrace_command_script.dart');
|
|
process.launch().then((port) {
|
|
var test = new IsolateListTest(port);
|
|
test.makeRequest().then((_) {
|
|
var stacktraceTest = new StacktraceTest(port, test._isolateId);
|
|
stacktraceTest.makeRequest().then((_) {
|
|
process.requestExit();
|
|
});
|
|
});
|
|
});
|
|
}
|