OLD | NEW |
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 library test.socket.server; | 5 library test.socket.server; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 | 8 |
9 import 'package:analysis_server/plugin/protocol/protocol.dart'; | 9 import 'package:analysis_server/plugin/protocol/protocol.dart'; |
10 import 'package:analysis_server/src/analysis_server.dart'; | 10 import 'package:analysis_server/src/analysis_server.dart'; |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 } | 109 } |
110 | 110 |
111 static SocketServer _createSocketServer() { | 111 static SocketServer _createSocketServer() { |
112 ServerPlugin serverPlugin = new ServerPlugin(); | 112 ServerPlugin serverPlugin = new ServerPlugin(); |
113 ExtensionManager manager = new ExtensionManager(); | 113 ExtensionManager manager = new ExtensionManager(); |
114 manager.processPlugins([serverPlugin]); | 114 manager.processPlugins([serverPlugin]); |
115 SdkCreator sdkCreator = (_) => | 115 SdkCreator sdkCreator = (_) => |
116 new DirectoryBasedDartSdk(DirectoryBasedDartSdk.defaultSdkDirectory); | 116 new DirectoryBasedDartSdk(DirectoryBasedDartSdk.defaultSdkDirectory); |
117 return new SocketServer( | 117 return new SocketServer( |
118 new AnalysisServerOptions(), | 118 new AnalysisServerOptions(), |
119 sdkCreator, | 119 new DartSdkManager('', false, sdkCreator), |
120 sdkCreator(null), | 120 sdkCreator(null), |
121 InstrumentationService.NULL_SERVICE, | 121 InstrumentationService.NULL_SERVICE, |
122 serverPlugin, | 122 serverPlugin, |
123 null, | 123 null, |
124 null, | 124 null, |
125 false); | 125 false); |
126 } | 126 } |
127 } | 127 } |
128 | 128 |
129 class _MockRequestHandler implements RequestHandler { | 129 class _MockRequestHandler implements RequestHandler { |
130 final bool futureException; | 130 final bool futureException; |
131 | 131 |
132 _MockRequestHandler(this.futureException); | 132 _MockRequestHandler(this.futureException); |
133 | 133 |
134 @override | 134 @override |
135 Response handleRequest(Request request) { | 135 Response handleRequest(Request request) { |
136 if (futureException) { | 136 if (futureException) { |
137 new Future(throwException); | 137 new Future(throwException); |
138 return new Response(request.id); | 138 return new Response(request.id); |
139 } | 139 } |
140 throw 'mock request exception'; | 140 throw 'mock request exception'; |
141 } | 141 } |
142 | 142 |
143 void throwException() { | 143 void throwException() { |
144 throw 'mock future exception'; | 144 throw 'mock future exception'; |
145 } | 145 } |
146 } | 146 } |
OLD | NEW |