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

Side by Side Diff: pkg/analysis_server/test/edit/assists_test.dart

Issue 2874803003: Add support for built-in plugins (Closed)
Patch Set: Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 import 'dart:async'; 5 import 'dart:async';
6 6
7 import 'package:analysis_server/protocol/protocol.dart'; 7 import 'package:analysis_server/protocol/protocol.dart';
8 import 'package:analysis_server/protocol/protocol_generated.dart'; 8 import 'package:analysis_server/protocol/protocol_generated.dart';
9 import 'package:analysis_server/src/edit/edit_domain.dart'; 9 import 'package:analysis_server/src/edit/edit_domain.dart';
10 import 'package:analysis_server/src/plugin/plugin_manager.dart'; 10 import 'package:analysis_server/src/plugin/plugin_manager.dart';
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 void setUp() { 44 void setUp() {
45 enableNewAnalysisDriver = true; 45 enableNewAnalysisDriver = true;
46 super.setUp(); 46 super.setUp();
47 createProject(); 47 createProject();
48 ExtensionManager manager = new ExtensionManager(); 48 ExtensionManager manager = new ExtensionManager();
49 manager.processPlugins([server.serverPlugin]); 49 manager.processPlugins([server.serverPlugin]);
50 handler = new EditDomainHandler(server); 50 handler = new EditDomainHandler(server);
51 } 51 }
52 52
53 test_fromPlugins() async { 53 test_fromPlugins() async {
54 PluginInfo info = new PluginInfo('a', 'b', 'c', null, null); 54 PluginInfo info = new DiscoveredPluginInfo('a', 'b', 'c', null, null);
55 String message = 'From a plugin'; 55 String message = 'From a plugin';
56 plugin.PrioritizedSourceChange change = new plugin.PrioritizedSourceChange( 56 plugin.PrioritizedSourceChange change = new plugin.PrioritizedSourceChange(
57 5, 57 5,
58 new plugin.SourceChange(message, edits: <plugin.SourceFileEdit>[ 58 new plugin.SourceChange(message, edits: <plugin.SourceFileEdit>[
59 new plugin.SourceFileEdit('', 0, 59 new plugin.SourceFileEdit('', 0,
60 edits: <plugin.SourceEdit>[new plugin.SourceEdit(0, 0, 'x')]) 60 edits: <plugin.SourceEdit>[new plugin.SourceEdit(0, 0, 'x')])
61 ])); 61 ]));
62 plugin.EditGetAssistsResult result = new plugin.EditGetAssistsResult( 62 plugin.EditGetAssistsResult result = new plugin.EditGetAssistsResult(
63 <plugin.PrioritizedSourceChange>[change]); 63 <plugin.PrioritizedSourceChange>[change]);
64 pluginManager.broadcastResults = <PluginInfo, Future<plugin.Response>>{ 64 pluginManager.broadcastResults = <PluginInfo, Future<plugin.Response>>{
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 if (change.message == message) { 134 if (change.message == message) {
135 String resultCode = 135 String resultCode =
136 SourceEdit.applySequence(testCode, change.edits[0].edits); 136 SourceEdit.applySequence(testCode, change.edits[0].edits);
137 expect(resultCode, expectedCode); 137 expect(resultCode, expectedCode);
138 return; 138 return;
139 } 139 }
140 } 140 }
141 fail("Expected to find |$message| in\n" + changes.join('\n')); 141 fail("Expected to find |$message| in\n" + changes.join('\n'));
142 } 142 }
143 } 143 }
OLDNEW
« no previous file with comments | « pkg/analysis_server/test/domain_completion_test.dart ('k') | pkg/analysis_server/test/edit/fixes_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698