f247613737
This reverts commit32ed244f63. Reason for revert: Hopefully clear up bot failures Original change's description: > Revert "Reland "[ VM / Service ] Migrated Observatory service tests from package:unittest to package:test and package:expect."" > > This reverts commitd03b7ea721. > > Reason for revert: Hitting assert in VM (https://logs.chromium.org/logs/dart/buildbucket/cr-buildbucket.appspot.com/8885275470407956944/+/steps/test_results/0/logs/new_test_failures__logs_/0) > > Original change's description: > > Reland "[ VM / Service ] Migrated Observatory service tests from package:unittest to package:test and package:expect." > > > > This reverts commit01dc1756c4. > > > > Change-Id: I1c9186947af2368ff48c02a392da9ced85770335 > > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/140254 > > Commit-Queue: Ben Konyi <bkonyi@google.com> > > Reviewed-by: Ryan Macnak <rmacnak@google.com> > > TBR=bkonyi@google.com,rmacnak@google.com > > Change-Id: I640adf8e96672476f46fc1f4580a7231b5cfd8fe > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/140379 > Reviewed-by: Ben Konyi <bkonyi@google.com> > Commit-Queue: Ben Konyi <bkonyi@google.com> TBR=bkonyi@google.com,rmacnak@google.com Change-Id: I3127f2f39e64e87daa5ae0c02e14cd24cb586f5f No-Presubmit: true No-Tree-Checks: true No-Try: true Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/140480 Reviewed-by: Ben Konyi <bkonyi@google.com> Commit-Queue: Ben Konyi <bkonyi@google.com>
47 lines
1.6 KiB
Dart
47 lines
1.6 KiB
Dart
// Copyright (c) 2015, 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:observatory/service_io.dart';
|
|
import 'package:test/test.dart';
|
|
import 'test_helper.dart';
|
|
|
|
export 'dart:collection';
|
|
import 'dart:mirrors' as mirrors;
|
|
import 'dart:convert' deferred as convert;
|
|
|
|
var tests = <IsolateTest>[
|
|
(Isolate isolate) async {
|
|
await isolate.load();
|
|
Library lib = isolate.rootLibrary;
|
|
await lib.load();
|
|
|
|
// Avoid unused import warning from the analyzer.
|
|
mirrors.currentMirrorSystem();
|
|
|
|
importOf(String uri) {
|
|
return lib.dependencies.singleWhere((dep) => dep.target.uri == uri);
|
|
}
|
|
|
|
expect(importOf("dart:collection").isImport, isFalse);
|
|
expect(importOf("dart:collection").isExport, isTrue);
|
|
expect(importOf("dart:collection").isDeferred, isFalse);
|
|
expect(importOf("dart:collection").prefix, equals(null));
|
|
|
|
expect(importOf("dart:mirrors").isImport, isTrue);
|
|
expect(importOf("dart:mirrors").isExport, isFalse);
|
|
expect(importOf("dart:mirrors").isDeferred, isFalse);
|
|
expect(importOf("dart:mirrors").prefix, equals("mirrors"));
|
|
|
|
expect(importOf("dart:convert").isImport, isTrue);
|
|
expect(importOf("dart:convert").isExport, isFalse);
|
|
expect(importOf("dart:convert").isDeferred, isTrue);
|
|
expect(importOf("dart:convert").prefix, equals("convert"));
|
|
},
|
|
(Isolate isolate) async {
|
|
return convert.loadLibrary();
|
|
}
|
|
];
|
|
|
|
main(args) => runIsolateTests(args, tests);
|