OLD | NEW |
---|---|
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS d.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 pub_tests; | 5 library pub_tests; |
6 | 6 |
7 import 'dart:async'; | 7 import 'dart:async'; |
8 import 'dart:convert'; | 8 import 'dart:convert'; |
9 import 'dart:io'; | 9 import 'dart:io'; |
10 | 10 |
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
287 expect(_pubServer, isNotNull); | 287 expect(_pubServer, isNotNull); |
288 expect(_adminPort, isNotNull); | 288 expect(_adminPort, isNotNull); |
289 | 289 |
290 return WebSocket.connect("ws://127.0.0.1:$_adminPort").then((socket) { | 290 return WebSocket.connect("ws://127.0.0.1:$_adminPort").then((socket) { |
291 _webSocket = socket; | 291 _webSocket = socket; |
292 // TODO(rnystrom): Works around #13913. | 292 // TODO(rnystrom): Works around #13913. |
293 _webSocketBroadcastStream = _webSocket.asBroadcastStream(); | 293 _webSocketBroadcastStream = _webSocket.asBroadcastStream(); |
294 }); | 294 }); |
295 } | 295 } |
296 | 296 |
297 /// Sends [request] (an arbitrary JSON object) to the running pub serve's web | 297 var _webSocketId = 0; |
298 /// socket connection, waits for a reply, then verifies that the reply is | 298 |
299 /// either equal to [replyEquals] or matches [replyMatches]. | 299 /// Sends a JSON RPC 2.0 request to the running pub serve's web socket |
300 /// connection, waits for a reply, then verifies the reply. | |
300 /// | 301 /// |
301 /// Only one of [replyEquals] or [replyMatches] may be provided. | 302 /// This calls a method named [method] with the given [params]. [params] may |
303 /// contain Future, in which case this will wait until they've completed before | |
Bob Nystrom
2014/03/21 17:42:25
"Future" -> "Futures".
nweiz
2014/03/21 20:27:38
Done.
| |
304 /// sending the request. | |
302 /// | 305 /// |
303 /// [request], [replyEquals], and [replyMatches] may contain futures, in which | 306 /// The result of a successful response is validating using [result], which may |
Bob Nystrom
2014/03/21 17:42:25
"validating" -> "validated".
nweiz
2014/03/21 20:27:38
Done.
| |
304 /// case this will wait until they've completed before matching. | 307 /// be a matcher or a map containing matchers and futures. This will wait until |
Bob Nystrom
2014/03/21 17:42:25
Link to matcher and map.
nweiz
2014/03/21 20:27:38
Done.
| |
308 /// any futures are completed before sending the request. | |
305 /// | 309 /// |
306 /// If [encodeRequest] is `false`, then [request] will be sent as-is over the | 310 /// The result of an error response is validated using [errorCode] and |
307 /// socket. It omitted, request is JSON encoded to a string first. | 311 /// [errorMessage]. Both of these must be provided. The error code is checked |
312 /// against [errorCode] and the error message is checked against [errorMessage]. | |
313 /// Either of these may be matchers. | |
308 /// | 314 /// |
309 /// Returns a [Future] that completes to the call's response. | 315 /// Returns a [Future] that completes to the call's result. |
310 Future<Map> expectWebSocketCall(request, {Map replyEquals, replyMatches, | 316 Future<Map> expectWebSocketCall(String method, Map params, {result, errorCode, |
311 bool encodeRequest: true}) { | 317 errorMessage}) { |
312 assert((replyEquals == null) != (replyMatches == null)); | 318 assert((errorCode == null && errorMessage == null) != (result == null)); |
Bob Nystrom
2014/03/21 17:42:25
Given the interdependencies between the disjoint p
nweiz
2014/03/21 20:27:38
Done.
| |
319 assert(errorCode == null || errorMessage != null); | |
320 | |
321 var description = "send $method with $params to web socket and expect "; | |
322 if (result != null) { | |
323 description += result.toString(); | |
324 } else { | |
325 description += "error $errorCode"; | |
326 } | |
313 | 327 |
314 return schedule(() => _ensureWebSocket().then((_) { | 328 return schedule(() => _ensureWebSocket().then((_) { |
315 var matcherFuture; | 329 return Future.wait([ |
316 if (replyMatches != null) { | 330 awaitObject(params), |
317 matcherFuture = awaitObject(replyMatches); | 331 syncFuture(() => result == null ? null : awaitObject(result)) |
Bob Nystrom
2014/03/21 17:42:25
I think you can just do awaitObject(result)
If re
nweiz
2014/03/21 20:27:38
Done.
| |
318 } else { | 332 ]).then((results) { |
319 matcherFuture = awaitObject(replyEquals).then((reply) => equals(reply)); | 333 var resolvedParams = results[0]; |
320 } | 334 var resolvedResult = results[1]; |
321 | 335 |
322 return matcherFuture.then((matcher) { | 336 var id = _webSocketId++; |
323 return awaitObject(request).then((completeRequest) { | 337 _webSocket.add(JSON.encode({ |
324 if (encodeRequest) completeRequest = JSON.encode(completeRequest); | 338 "jsonrpc": "2.0", |
325 _webSocket.add(completeRequest); | 339 "method": method, |
340 "params": resolvedParams, | |
341 "id": id | |
342 })); | |
326 | 343 |
327 return _webSocketBroadcastStream.first.then((value) { | 344 return _webSocketBroadcastStream.first.then((value) { |
328 value = JSON.decode(value); | 345 value = JSON.decode(value); |
329 expect(value, matcher); | 346 currentSchedule.addDebugInfo( |
330 return value; | 347 "Web Socket request $method with params $resolvedParams\n" |
331 }); | 348 "Result: $value"); |
Bob Nystrom
2014/03/21 17:42:25
Neat.
| |
349 | |
350 expect(value["id"], equals(id)); | |
351 | |
352 if (resolvedResult != null) { | |
353 expect(value["result"], resolvedResult); | |
354 } else { | |
355 expect(value["error"]["code"], errorCode); | |
356 expect(value["error"]["message"], errorMessage); | |
357 } | |
358 | |
359 return value["result"]; | |
332 }); | 360 }); |
333 }); | 361 }); |
334 }), "send $request to web socket and expect reply $replyEquals"); | 362 }), description); |
335 } | 363 } |
336 | 364 |
337 /// Returns a [Future] that completes to a URL string for the server serving | 365 /// Returns a [Future] that completes to a URL string for the server serving |
338 /// [path] from [root]. | 366 /// [path] from [root]. |
339 /// | 367 /// |
340 /// If [root] is omitted, defaults to "web". If [path] is omitted, no path is | 368 /// If [root] is omitted, defaults to "web". If [path] is omitted, no path is |
341 /// included. The Future will complete once the server is up and running and | 369 /// included. The Future will complete once the server is up and running and |
342 /// the bound ports are known. | 370 /// the bound ports are known. |
343 Future<String> getServerUrl([String root, String path]) => | 371 Future<String> getServerUrl([String root, String path]) => |
344 _portsCompleter.future.then((_) => _getServerUrlSync(root, path)); | 372 _portsCompleter.future.then((_) => _getServerUrlSync(root, path)); |
(...skipping 12 matching lines...) Expand all Loading... | |
357 /// included. Unlike [getServerUrl], this should only be called after the ports | 385 /// included. Unlike [getServerUrl], this should only be called after the ports |
358 /// are known. | 386 /// are known. |
359 String _getServerUrlSync([String root, String path]) { | 387 String _getServerUrlSync([String root, String path]) { |
360 if (root == null) root = 'web'; | 388 if (root == null) root = 'web'; |
361 expect(_ports, contains(root)); | 389 expect(_ports, contains(root)); |
362 var url = "http://127.0.0.1:${_ports[root]}"; | 390 var url = "http://127.0.0.1:${_ports[root]}"; |
363 if (path != null) url = "$url/$path"; | 391 if (path != null) url = "$url/$path"; |
364 return url; | 392 return url; |
365 } | 393 } |
366 | 394 |
OLD | NEW |