| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library test.domain.diagnostic; | 5 library test.domain.diagnostic; |
| 6 | 6 |
| 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 7 import 'package:analysis_server/plugin/protocol/protocol.dart'; |
| 8 import 'package:analysis_server/src/analysis_server.dart'; | 8 import 'package:analysis_server/src/analysis_server.dart'; |
| 9 import 'package:analysis_server/src/domain_diagnostic.dart'; | 9 import 'package:analysis_server/src/domain_diagnostic.dart'; |
| 10 import 'package:analysis_server/src/plugin/server_plugin.dart'; | 10 import 'package:analysis_server/src/plugin/server_plugin.dart'; |
| 11 import 'package:analyzer/file_system/memory_file_system.dart'; | 11 import 'package:analyzer/file_system/memory_file_system.dart'; |
| 12 import 'package:analyzer/instrumentation/instrumentation.dart'; | 12 import 'package:analyzer/instrumentation/instrumentation.dart'; |
| 13 import 'package:analyzer/src/generated/engine.dart'; | 13 import 'package:analyzer/src/generated/engine.dart'; |
| 14 import 'package:analyzer/src/generated/sdk.dart'; | 14 import 'package:analyzer/src/generated/sdk.dart'; |
| 15 import 'package:plugin/manager.dart'; | 15 import 'package:plugin/manager.dart'; |
| 16 import 'package:plugin/plugin.dart'; | 16 import 'package:plugin/plugin.dart'; |
| 17 import 'package:test/test.dart'; | 17 import 'package:test/test.dart'; |
| 18 | 18 |
| 19 import 'mock_sdk.dart'; | 19 import 'mock_sdk.dart'; |
| 20 import 'mocks.dart'; | 20 import 'mocks.dart'; |
| 21 | 21 |
| 22 main() { | 22 main() { |
| 23 AnalysisServer server; | 23 AnalysisServer server; |
| 24 DiagnosticDomainHandler handler; | 24 DiagnosticDomainHandler handler; |
| 25 MemoryResourceProvider resourceProvider; | 25 MemoryResourceProvider resourceProvider; |
| 26 | 26 |
| 27 | |
| 28 setUp(() { | 27 setUp(() { |
| 29 // | 28 // |
| 30 // Collect plugins | 29 // Collect plugins |
| 31 // | 30 // |
| 32 ServerPlugin serverPlugin = new ServerPlugin(); | 31 ServerPlugin serverPlugin = new ServerPlugin(); |
| 33 List<Plugin> plugins = <Plugin>[]; | 32 List<Plugin> plugins = <Plugin>[]; |
| 34 plugins.addAll(AnalysisEngine.instance.requiredPlugins); | 33 plugins.addAll(AnalysisEngine.instance.requiredPlugins); |
| 35 plugins.add(AnalysisEngine.instance.commandLinePlugin); | 34 plugins.add(AnalysisEngine.instance.commandLinePlugin); |
| 36 plugins.add(AnalysisEngine.instance.optionsPlugin); | 35 plugins.add(AnalysisEngine.instance.optionsPlugin); |
| 37 plugins.add(serverPlugin); | 36 plugins.add(serverPlugin); |
| 38 // | 37 // |
| 39 // Process plugins | 38 // Process plugins |
| 40 // | 39 // |
| 41 ExtensionManager manager = new ExtensionManager(); | 40 ExtensionManager manager = new ExtensionManager(); |
| 42 manager.processPlugins(plugins); | 41 manager.processPlugins(plugins); |
| 43 // | 42 // |
| 44 // Create the server | 43 // Create the server |
| 45 // | 44 // |
| 46 var serverChannel = new MockServerChannel(); | 45 var serverChannel = new MockServerChannel(); |
| 47 resourceProvider = new MemoryResourceProvider(); | 46 resourceProvider = new MemoryResourceProvider(); |
| 48 MockSdk sdk = new MockSdk(resourceProvider: resourceProvider); | 47 // Create an SDK in the mock file system. |
| 48 new MockSdk(resourceProvider: resourceProvider); |
| 49 server = new AnalysisServer( | 49 server = new AnalysisServer( |
| 50 serverChannel, | 50 serverChannel, |
| 51 resourceProvider, | 51 resourceProvider, |
| 52 new MockPackageMapProvider(), | 52 new MockPackageMapProvider(), |
| 53 null, | 53 null, |
| 54 serverPlugin, | 54 serverPlugin, |
| 55 new AnalysisServerOptions(), | 55 new AnalysisServerOptions(), |
| 56 new DartSdkManager('/', false, (_) => sdk), | 56 new DartSdkManager('/', false), |
| 57 InstrumentationService.NULL_SERVICE); | 57 InstrumentationService.NULL_SERVICE); |
| 58 handler = new DiagnosticDomainHandler(server); | 58 handler = new DiagnosticDomainHandler(server); |
| 59 }); | 59 }); |
| 60 | 60 |
| 61 group('DiagnosticDomainHandler', () { | 61 group('DiagnosticDomainHandler', () { |
| 62 test('getDiagnostics', () async { | 62 test('getDiagnostics', () async { |
| 63 String file = '/project/bin/test.dart'; | 63 String file = '/project/bin/test.dart'; |
| 64 resourceProvider.newFile('/project/pubspec.yaml', 'name: project'); | 64 resourceProvider.newFile('/project/pubspec.yaml', 'name: project'); |
| 65 resourceProvider.newFile(file, 'main() {}'); | 65 resourceProvider.newFile(file, 'main() {}'); |
| 66 | 66 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 84 }); | 84 }); |
| 85 | 85 |
| 86 test('getDiagnostics - (no root)', () async { | 86 test('getDiagnostics - (no root)', () async { |
| 87 var request = new DiagnosticGetDiagnosticsParams().toRequest('0'); | 87 var request = new DiagnosticGetDiagnosticsParams().toRequest('0'); |
| 88 var response = handler.handleRequest(request); | 88 var response = handler.handleRequest(request); |
| 89 Map json = response.toJson()[Response.RESULT]; | 89 Map json = response.toJson()[Response.RESULT]; |
| 90 expect(json['contexts'], hasLength(0)); | 90 expect(json['contexts'], hasLength(0)); |
| 91 }); | 91 }); |
| 92 }); | 92 }); |
| 93 } | 93 } |
| OLD | NEW |