| 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 library dart.io; | 5 library dart.io; |
| 6 | 6 |
| 7 import "package:expect/expect.dart"; | 7 import "package:expect/expect.dart"; |
| 8 import "dart:async"; | 8 import "dart:async"; |
| 9 import "dart:collection"; | 9 import "dart:collection"; |
| 10 import "dart:convert"; | 10 import "dart:convert"; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 part "../../../sdk/lib/io/http_parser.dart"; | 28 part "../../../sdk/lib/io/http_parser.dart"; |
| 29 part "../../../sdk/lib/io/http_headers.dart"; | 29 part "../../../sdk/lib/io/http_headers.dart"; |
| 30 part "../../../sdk/lib/io/http_session.dart"; | 30 part "../../../sdk/lib/io/http_session.dart"; |
| 31 part "../../../sdk/lib/io/io_service.dart"; | 31 part "../../../sdk/lib/io/io_service.dart"; |
| 32 part "../../../sdk/lib/io/io_sink.dart"; | 32 part "../../../sdk/lib/io/io_sink.dart"; |
| 33 part "../../../sdk/lib/io/platform.dart"; | 33 part "../../../sdk/lib/io/platform.dart"; |
| 34 part "../../../sdk/lib/io/platform_impl.dart"; | 34 part "../../../sdk/lib/io/platform_impl.dart"; |
| 35 part "../../../sdk/lib/io/service_object.dart"; | 35 part "../../../sdk/lib/io/service_object.dart"; |
| 36 part "../../../sdk/lib/io/secure_socket.dart"; | 36 part "../../../sdk/lib/io/secure_socket.dart"; |
| 37 part "../../../sdk/lib/io/secure_server_socket.dart"; | 37 part "../../../sdk/lib/io/secure_server_socket.dart"; |
| 38 part "../../../sdk/lib/io/security_context.dart"; |
| 38 part "../../../sdk/lib/io/socket.dart"; | 39 part "../../../sdk/lib/io/socket.dart"; |
| 39 | 40 |
| 40 void testMultiValue() { | 41 void testMultiValue() { |
| 41 _HttpHeaders headers = new _HttpHeaders("1.1"); | 42 _HttpHeaders headers = new _HttpHeaders("1.1"); |
| 42 Expect.isNull(headers[HttpHeaders.PRAGMA]); | 43 Expect.isNull(headers[HttpHeaders.PRAGMA]); |
| 43 headers.add(HttpHeaders.PRAGMA, "pragma1"); | 44 headers.add(HttpHeaders.PRAGMA, "pragma1"); |
| 44 Expect.equals(1, headers[HttpHeaders.PRAGMA].length); | 45 Expect.equals(1, headers[HttpHeaders.PRAGMA].length); |
| 45 Expect.equals(1, headers["pragma"].length); | 46 Expect.equals(1, headers["pragma"].length); |
| 46 Expect.equals(1, headers["Pragma"].length); | 47 Expect.equals(1, headers["Pragma"].length); |
| 47 Expect.equals(1, headers["PRAGMA"].length); | 48 Expect.equals(1, headers["PRAGMA"].length); |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 566 testHeaderValue(); | 567 testHeaderValue(); |
| 567 testContentType(); | 568 testContentType(); |
| 568 testContentTypeCache(); | 569 testContentTypeCache(); |
| 569 testCookie(); | 570 testCookie(); |
| 570 testInvalidCookie(); | 571 testInvalidCookie(); |
| 571 testHeaderLists(); | 572 testHeaderLists(); |
| 572 testInvalidFieldName(); | 573 testInvalidFieldName(); |
| 573 testInvalidFieldValue(); | 574 testInvalidFieldValue(); |
| 574 testClear(); | 575 testClear(); |
| 575 } | 576 } |
| OLD | NEW |