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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 /// | 232 /// |
233 /// [root] indicates which server should be accessed, and defaults to "web". | 233 /// [root] indicates which server should be accessed, and defaults to "web". |
234 void postShould405(String urlPath, {String root}) { | 234 void postShould405(String urlPath, {String root}) { |
235 schedule(() { | 235 schedule(() { |
236 return http.post(_getServerUrlSync(root, urlPath)).then((response) { | 236 return http.post(_getServerUrlSync(root, urlPath)).then((response) { |
237 expect(response.statusCode, equals(405)); | 237 expect(response.statusCode, equals(405)); |
238 }); | 238 }); |
239 }, "request $urlPath"); | 239 }, "request $urlPath"); |
240 } | 240 } |
241 | 241 |
| 242 /// Schedules an HTTP request to the (theoretically) running pub server with |
| 243 /// [urlPath] and verifies that it cannot be connected to. |
| 244 /// |
| 245 /// [root] indicates which server should be accessed, and defaults to "web". |
| 246 void requestShouldNotConnect(String urlPath, {String root}) { |
| 247 schedule(() { |
| 248 return expect(http.get(_getServerUrlSync(root, urlPath)), |
| 249 throwsA(new isInstanceOf<SocketException>())); |
| 250 }, "request $urlPath"); |
| 251 } |
| 252 |
242 /// Reads lines from pub serve's stdout until it prints the build success | 253 /// Reads lines from pub serve's stdout until it prints the build success |
243 /// message. | 254 /// message. |
244 /// | 255 /// |
245 /// The schedule will not proceed until the output is found. If not found, it | 256 /// The schedule will not proceed until the output is found. If not found, it |
246 /// will eventually time out. | 257 /// will eventually time out. |
247 void waitForBuildSuccess() => | 258 void waitForBuildSuccess() => |
248 _pubServer.stdout.expect(consumeThrough(contains("successfully"))); | 259 _pubServer.stdout.expect(consumeThrough(contains("successfully"))); |
249 | 260 |
250 /// Schedules opening a web socket connection to the currently running pub | 261 /// Schedules opening a web socket connection to the currently running pub |
251 /// serve. | 262 /// serve. |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
330 /// included. Unlike [getServerUrl], this should only be called after the ports | 341 /// included. Unlike [getServerUrl], this should only be called after the ports |
331 /// are known. | 342 /// are known. |
332 String _getServerUrlSync([String root, String path]) { | 343 String _getServerUrlSync([String root, String path]) { |
333 if (root == null) root = 'web'; | 344 if (root == null) root = 'web'; |
334 expect(_ports, contains(root)); | 345 expect(_ports, contains(root)); |
335 var url = "http://127.0.0.1:${_ports[root]}"; | 346 var url = "http://127.0.0.1:${_ports[root]}"; |
336 if (path != null) url = "$url/$path"; | 347 if (path != null) url = "$url/$path"; |
337 return url; | 348 return url; |
338 } | 349 } |
339 | 350 |
OLD | NEW |