Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(179)

Unified Diff: tests/standalone/vmservice/isolate_class_field_test.dart

Issue 895093002: Add getClassList RPC (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tests/standalone/vmservice/isolate_class_field_test.dart
diff --git a/tests/standalone/vmservice/isolate_class_field_test.dart b/tests/standalone/vmservice/isolate_class_field_test.dart
deleted file mode 100644
index 3ea4466354c809966fc886ac30a7848c96cb0394..0000000000000000000000000000000000000000
--- a/tests/standalone/vmservice/isolate_class_field_test.dart
+++ /dev/null
@@ -1,180 +0,0 @@
-// 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_class_list_test;
-
-import 'dart:async';
-import 'test_helper.dart';
-import 'package:expect/expect.dart';
-
-class BananaClassTest {
- int port;
- String isolate_id;
- String class_id;
- BananaClassTest(this.port, this.isolate_id, this.class_id);
-
- _testFieldA(Map field) {
- Expect.equals('Field', field['type']);
- Expect.equals('a', field['name']);
- Expect.equals(false, field['final']);
- Expect.equals(false, field['static']);
- Expect.equals(false, field['const']);
- Expect.equals('dynamic', field['guardClass']);
- Expect.equals(true, field['guardNullable']);
- Expect.equals('variable', field['guardLength']);
- }
-
- _testFieldFinalFixedLengthList(Map field) {
- Expect.equals('Field', field['type']);
- Expect.equals('final_fixed_length_list', field['name']);
- Expect.equals('_Float32Array', field['guardClass']['name']);
- Expect.equals(true, field['final']);
- Expect.equals(false, field['static']);
- Expect.equals(false, field['const']);
- Expect.equals(4, field['guardLength']);
- }
-
- _testFieldFixedLengthList(Map field) {
- Expect.equals('Field', field['type']);
- Expect.equals('fixed_length_list', field['name']);
- Expect.equals(false, field['final']);
- Expect.equals(false, field['static']);
- Expect.equals(false, field['const']);
- Expect.equals('_Float32Array', field['guardClass']['name']);
- Expect.equals('variable', field['guardLength']);
- }
-
- _testFieldName(Map field) {
- Expect.equals('Field', field['type']);
- Expect.equals('name', field['name']);
- Expect.equals(false, field['final']);
- Expect.equals(false, field['static']);
- Expect.equals(false, field['const']);
- Expect.equals('_OneByteString', field['guardClass']['name']);
- Expect.equals(false, field['guardNullable']);
- Expect.equals('variable', field['guardLength']);
- }
-
- Future makeRequest() {
- var fields = ['final_fixed_length_list', 'fixed_length_list', 'name', 'a'];
- var helper =
- new ClassFieldRequestHelper(port, isolate_id, class_id, fields);
- return helper.makeRequest().then((_) {
- _testFieldA(helper.fields['a']);
- _testFieldFinalFixedLengthList(helper.fields['final_fixed_length_list']);
- _testFieldFixedLengthList(helper.fields['fixed_length_list']);
- _testFieldName(helper.fields['name']);
- });
- }
-}
-
-class BadBananaClassTest {
- int port;
- String isolate_id;
- String class_id;
- BadBananaClassTest(this.port, this.isolate_id, this.class_id);
-
- _testFieldV(Map field) {
- Expect.equals('Field', field['type']);
- Expect.equals('v', field['name']);
- Expect.equals(false, field['final']);
- Expect.equals(false, field['static']);
- Expect.equals(false, field['const']);
- Expect.equals('_Double', field['guardClass']['name']);
- Expect.equals(true, field['guardNullable']);
- Expect.equals('variable', field['guardLength']);
- }
-
- _testFieldC(Map field) {
- Expect.equals('Field', field['type']);
- Expect.equals('c', field['name']);
- Expect.equals(true, field['final']);
- Expect.equals(false, field['static']);
- Expect.equals(true, field['final']);
- Expect.equals('_Smi', field['guardClass']['name']);
- Expect.equals(false, field['guardNullable']);
- Expect.equals('variable', field['guardLength']);
- }
-
- _testFieldFinalFixedLengthList(Map field) {
- Expect.equals('Field', field['type']);
- Expect.equals('final_fixed_length_list', field['name']);
- Expect.equals('_Float32Array', field['guardClass']['name']);
- Expect.equals(true, field['final']);
- Expect.equals(false, field['static']);
- Expect.equals(false, field['const']);
- Expect.equals('variable', field['guardLength']);
- }
-
- _testFieldFixedLengthArray(Map field) {
- Expect.equals('Field', field['type']);
- Expect.equals('fixed_length_array', field['name']);
- Expect.equals('_List', field['guardClass']['name']);
- Expect.equals(true, field['final']);
- Expect.equals(false, field['static']);
- Expect.equals(false, field['const']);
- Expect.equals(3, field['guardLength']);
- }
-
- Future makeRequest() {
- var fields = ['final_fixed_length_list', 'fixed_length_array', 'v', 'c'];
- var helper =
- new ClassFieldRequestHelper(port, isolate_id, class_id, fields);
- return helper.makeRequest().then((_) {
- _testFieldV(helper.fields['v']);
- _testFieldC(helper.fields['c']);
- _testFieldFinalFixedLengthList(helper.fields['final_fixed_length_list']);
- _testFieldFixedLengthArray(helper.fields['fixed_length_array']);
- });
- }
-}
-
-class ClassTableTest extends VmServiceRequestHelper {
- ClassTableTest(port, id) :
- super('http://127.0.0.1:$port/$id/classes/');
-
- String banana_class_id;
- String bad_banana_class_id;
-
- onRequestCompleted(Map reply) {
- ClassTableHelper helper = new ClassTableHelper(reply);
- Expect.isTrue(helper.classExists('Banana'));
- banana_class_id = helper.classId('Banana');
- Expect.isTrue(helper.classExists('BadBanana'));
- bad_banana_class_id = helper.classId('BadBanana');
- }
-}
-
-class VMTest extends VmServiceRequestHelper {
- VMTest(port) : super('http://127.0.0.1:$port/vm');
-
- String _isolateId;
- onRequestCompleted(Map reply) {
- VMTester tester = new VMTester(reply);
- tester.checkIsolateCount(1);
- _isolateId = tester.getIsolateId(0);
- }
-}
-
-main() {
- var process = new TestLauncher('field_script.dart');
- process.launch().then((port) {
- var test = new VMTest(port);
- test.makeRequest().then((_) {
- var classTableTest = new ClassTableTest(port, test._isolateId);
- classTableTest.makeRequest().then((_) {
- var bananaClassTest =
- new BananaClassTest(port, test._isolateId,
- classTableTest.banana_class_id);
- var badBananaClassTest =
- new BadBananaClassTest(port, test._isolateId,
- classTableTest.bad_banana_class_id);
- Future.wait([bananaClassTest.makeRequest(),
- badBananaClassTest.makeRequest()]).then((_) {
- process.requestExit();
- });
- });
- });
- });
-}
« no previous file with comments | « tests/standalone/vmservice/isolate_bad_object_test.dart ('k') | tests/standalone/vmservice/isolate_echo_script.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698