| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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("dart:io"); | 6 import "dart:io"; |
| 7 #import("dart:uri"); | 7 import "dart:uri"; |
| 8 | 8 |
| 9 HttpServer setupServer() { | 9 HttpServer setupServer() { |
| 10 HttpServer server = new HttpServer(); | 10 HttpServer server = new HttpServer(); |
| 11 server.listen("127.0.0.1", 0, backlog: 5); | 11 server.listen("127.0.0.1", 0, backlog: 5); |
| 12 | 12 |
| 13 void addRedirectHandler(int number, int statusCode) { | 13 void addRedirectHandler(int number, int statusCode) { |
| 14 server.addRequestHandler( | 14 server.addRequestHandler( |
| 15 (HttpRequest request) => request.path == "/$number", | 15 (HttpRequest request) => request.path == "/$number", |
| 16 (HttpRequest request, HttpResponse response) { | 16 (HttpRequest request, HttpResponse response) { |
| 17 response.headers.set(HttpHeaders.LOCATION, | 17 response.headers.set(HttpHeaders.LOCATION, |
| (...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 349 main() { | 349 main() { |
| 350 testManualRedirect(); | 350 testManualRedirect(); |
| 351 testManualRedirectWithHeaders(); | 351 testManualRedirectWithHeaders(); |
| 352 testAutoRedirect(); | 352 testAutoRedirect(); |
| 353 testAutoRedirectWithHeaders(); | 353 testAutoRedirectWithHeaders(); |
| 354 testAutoRedirect301POST(); | 354 testAutoRedirect301POST(); |
| 355 testAutoRedirect303POST(); | 355 testAutoRedirect303POST(); |
| 356 testAutoRedirectLimit(); | 356 testAutoRedirectLimit(); |
| 357 testRedirectLoop(); | 357 testRedirectLoop(); |
| 358 } | 358 } |
| OLD | NEW |