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

Side by Side Diff: pkg/analysis_server/test/domain_diagnostic_test.dart

Issue 2542853003: Create summary files in MockSdk classes (Closed)
Patch Set: Created 4 years 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 unified diff | Download patch
OLDNEW
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 setUp(() { 27 void processRequiredPlugins(ServerPlugin serverPlugin) {
28 //
29 // Collect plugins
30 //
31 ServerPlugin serverPlugin = new ServerPlugin();
32 List<Plugin> plugins = <Plugin>[]; 28 List<Plugin> plugins = <Plugin>[];
33 plugins.addAll(AnalysisEngine.instance.requiredPlugins); 29 plugins.addAll(AnalysisEngine.instance.requiredPlugins);
34 plugins.add(AnalysisEngine.instance.commandLinePlugin); 30 plugins.add(AnalysisEngine.instance.commandLinePlugin);
35 plugins.add(AnalysisEngine.instance.optionsPlugin); 31 plugins.add(AnalysisEngine.instance.optionsPlugin);
36 plugins.add(serverPlugin); 32 plugins.add(serverPlugin);
37 // 33
38 // Process plugins
39 //
40 ExtensionManager manager = new ExtensionManager(); 34 ExtensionManager manager = new ExtensionManager();
41 manager.processPlugins(plugins); 35 manager.processPlugins(plugins);
36 }
37
38 setUp(() {
39 ServerPlugin serverPlugin = new ServerPlugin();
40 processRequiredPlugins(serverPlugin);
42 // 41 //
43 // Create the server 42 // Create the server
44 // 43 //
45 var serverChannel = new MockServerChannel(); 44 var serverChannel = new MockServerChannel();
46 resourceProvider = new MemoryResourceProvider(); 45 resourceProvider = new MemoryResourceProvider();
47 // Create an SDK in the mock file system. 46 // Create an SDK in the mock file system.
48 new MockSdk(resourceProvider: resourceProvider); 47 new MockSdk(resourceProvider: resourceProvider);
49 server = new AnalysisServer( 48 server = new AnalysisServer(
50 serverChannel, 49 serverChannel,
51 resourceProvider, 50 resourceProvider,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 }); 83 });
85 84
86 test('getDiagnostics - (no root)', () async { 85 test('getDiagnostics - (no root)', () async {
87 var request = new DiagnosticGetDiagnosticsParams().toRequest('0'); 86 var request = new DiagnosticGetDiagnosticsParams().toRequest('0');
88 var response = handler.handleRequest(request); 87 var response = handler.handleRequest(request);
89 Map json = response.toJson()[Response.RESULT]; 88 Map json = response.toJson()[Response.RESULT];
90 expect(json['contexts'], hasLength(0)); 89 expect(json['contexts'], hasLength(0));
91 }); 90 });
92 }); 91 });
93 } 92 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698