OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 import 'dart:io'; |
| 6 |
| 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; |
| 8 import 'package:test/test.dart'; |
| 9 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 10 |
| 11 import '../integration_tests.dart'; |
| 12 |
| 13 main() { |
| 14 defineReflectiveSuite(() { |
| 15 defineReflectiveTests(GetReachableSourcesTest); |
| 16 }); |
| 17 } |
| 18 |
| 19 @reflectiveTest |
| 20 class GetReachableSourcesTest extends AbstractAnalysisServerIntegrationTest { |
| 21 @failingTest |
| 22 test_reachable() async { |
| 23 // This fails with the new analysis driver ('Bad state: Should not be used |
| 24 // with the new analysis driver') - #29311. |
| 25 String pathname = sourcePath('test.dart'); |
| 26 String text = r''' |
| 27 class Foo {} |
| 28 |
| 29 class Bar { |
| 30 Foo foo; |
| 31 } |
| 32 '''; |
| 33 writeFile(pathname, text); |
| 34 standardAnalysisSetup(); |
| 35 await analysisFinished; |
| 36 |
| 37 AnalysisGetReachableSourcesResult result = |
| 38 await sendAnalysisGetReachableSources(pathname); |
| 39 Map<String, List<String>> sources = result.sources; |
| 40 List<String> keys = sources.keys.toList(); |
| 41 String url = new File(pathname).uri.toString(); |
| 42 |
| 43 expect(keys, contains('dart:core')); |
| 44 expect(keys, contains('dart:collection')); |
| 45 expect(keys, contains('dart:math')); |
| 46 expect(keys, contains(url)); |
| 47 expect(sources[url], contains('dart:core')); |
| 48 } |
| 49 |
| 50 @override |
| 51 bool get enableNewAnalysisDriver => true; |
| 52 } |
OLD | NEW |