OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 | 5 |
| 6 import "package:expect/expect.dart"; |
6 import "dart:async"; | 7 import "dart:async"; |
7 import "dart:io"; | 8 import "dart:io"; |
8 import "dart:uri"; | 9 import "dart:uri"; |
9 | 10 |
10 Future<HttpServer> setupServer() { | 11 Future<HttpServer> setupServer() { |
11 Completer completer = new Completer(); | 12 Completer completer = new Completer(); |
12 HttpServer.bind().then((server) { | 13 HttpServer.bind().then((server) { |
13 | 14 |
14 var handlers = new Map<String, Function>(); | 15 var handlers = new Map<String, Function>(); |
15 addRequestHandler(String path, void handler(HttpRequest request, | 16 addRequestHandler(String path, void handler(HttpRequest request, |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
373 testManualRedirect(); | 374 testManualRedirect(); |
374 testManualRedirectWithHeaders(); | 375 testManualRedirectWithHeaders(); |
375 testAutoRedirect(); | 376 testAutoRedirect(); |
376 testAutoRedirectWithHeaders(); | 377 testAutoRedirectWithHeaders(); |
377 testAutoRedirect301POST(); | 378 testAutoRedirect301POST(); |
378 testAutoRedirect303POST(); | 379 testAutoRedirect303POST(); |
379 testAutoRedirectLimit(); | 380 testAutoRedirectLimit(); |
380 testRedirectLoop(); | 381 testRedirectLoop(); |
381 testRedirectClosingConnection(); | 382 testRedirectClosingConnection(); |
382 } | 383 } |
OLD | NEW |