| 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 "package:expect/expect.dart"; |
| 7 import "dart:isolate"; | 7 import "dart:isolate"; |
| 8 import "dart:io"; | 8 import "dart:io"; |
| 9 | 9 |
| 10 void test(int totalConnections, [String body]) { | 10 void test(int totalConnections, [String body]) { |
| 11 HttpServer.bind().then((server) { | 11 HttpServer.bind("127.0.0.1", 0).then((server) { |
| 12 | 12 |
| 13 server.listen((HttpRequest request) { | 13 server.listen((HttpRequest request) { |
| 14 HttpResponse response = request.response; | 14 HttpResponse response = request.response; |
| 15 // Cannot mutate request headers. | 15 // Cannot mutate request headers. |
| 16 Expect.throws(() => request.headers.add("X-Request-Header", "value"), | 16 Expect.throws(() => request.headers.add("X-Request-Header", "value"), |
| 17 (e) => e is HttpException); | 17 (e) => e is HttpException); |
| 18 Expect.equals("value", request.headers.value("X-Request-Header")); | 18 Expect.equals("value", request.headers.value("X-Request-Header")); |
| 19 request.listen((_) {}, onDone: () { | 19 request.listen((_) {}, onDone: () { |
| 20 // Can still mutate response headers as long as no data has been sent. | 20 // Can still mutate response headers as long as no data has been sent. |
| 21 response.headers.add("X-Response-Header", "value"); | 21 response.headers.add("X-Response-Header", "value"); |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 }); | 72 }); |
| 73 } | 73 } |
| 74 | 74 |
| 75 }); | 75 }); |
| 76 } | 76 } |
| 77 | 77 |
| 78 void main() { | 78 void main() { |
| 79 test(5); | 79 test(5); |
| 80 test(5, "Hello and goodbye"); | 80 test(5, "Hello and goodbye"); |
| 81 } | 81 } |
| OLD | NEW |