| 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:isolate"); | 6 #import("dart:isolate"); |
| 7 #import("dart:io"); | 7 #import("dart:io"); |
| 8 | 8 |
| 9 void setConnectionHeaders(HttpHeaders headers) { | 9 void setConnectionHeaders(HttpHeaders headers) { |
| 10 headers.add(HttpHeaders.CONNECTION, "my-connection-header1"); | 10 headers.add(HttpHeaders.CONNECTION, "my-connection-header1"); |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 } else { | 26 } else { |
| 27 Expect.equals(3, headers[HttpHeaders.CONNECTION].length); | 27 Expect.equals(3, headers[HttpHeaders.CONNECTION].length); |
| 28 Expect.isTrue(headers[HttpHeaders.CONNECTION].some( | 28 Expect.isTrue(headers[HttpHeaders.CONNECTION].some( |
| 29 (value) => value.toLowerCase() == "close")); | 29 (value) => value.toLowerCase() == "close")); |
| 30 } | 30 } |
| 31 } | 31 } |
| 32 | 32 |
| 33 void test(int totalConnections, bool clientPersistentConnection) { | 33 void test(int totalConnections, bool clientPersistentConnection) { |
| 34 HttpServer server = new HttpServer(); | 34 HttpServer server = new HttpServer(); |
| 35 server.onError = (e) => Expect.fail("Unexpected error $e"); | 35 server.onError = (e) => Expect.fail("Unexpected error $e"); |
| 36 server.listen("127.0.0.1", 0, totalConnections); | 36 server.listen("127.0.0.1", 0, backlog: totalConnections); |
| 37 server.defaultRequestHandler = (HttpRequest request, HttpResponse response) { | 37 server.defaultRequestHandler = (HttpRequest request, HttpResponse response) { |
| 38 // Check expected request. | 38 // Check expected request. |
| 39 Expect.equals(clientPersistentConnection, request.persistentConnection); | 39 Expect.equals(clientPersistentConnection, request.persistentConnection); |
| 40 Expect.equals(clientPersistentConnection, response.persistentConnection); | 40 Expect.equals(clientPersistentConnection, response.persistentConnection); |
| 41 checkExpectedConnectionHeaders(request.headers, | 41 checkExpectedConnectionHeaders(request.headers, |
| 42 request.persistentConnection); | 42 request.persistentConnection); |
| 43 | 43 |
| 44 // Generate response. If the client signaled non-persistent | 44 // Generate response. If the client signaled non-persistent |
| 45 // connection the server should not need to set it. | 45 // connection the server should not need to set it. |
| 46 if (request.persistentConnection) { | 46 if (request.persistentConnection) { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 71 } | 71 } |
| 72 }; | 72 }; |
| 73 } | 73 } |
| 74 } | 74 } |
| 75 | 75 |
| 76 | 76 |
| 77 void main() { | 77 void main() { |
| 78 test(2, false); | 78 test(2, false); |
| 79 test(2, true); | 79 test(2, true); |
| 80 } | 80 } |
| OLD | NEW |