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 import "package:expect/expect.dart"; | 5 import "package:expect/expect.dart"; |
6 import "dart:async"; | 6 import "dart:async"; |
7 import "dart:math"; | 7 import "dart:math"; |
8 | 8 |
| 9 part '../../../sdk/lib/io/common.dart'; |
9 part "../../../sdk/lib/io/io_sink.dart"; | 10 part "../../../sdk/lib/io/io_sink.dart"; |
10 part "../../../sdk/lib/io/http.dart"; | 11 part "../../../sdk/lib/io/http.dart"; |
11 part "../../../sdk/lib/io/http_impl.dart"; | 12 part "../../../sdk/lib/io/http_impl.dart"; |
12 part "../../../sdk/lib/io/http_parser.dart"; | 13 part "../../../sdk/lib/io/http_parser.dart"; |
13 part "../../../sdk/lib/io/http_utils.dart"; | 14 part "../../../sdk/lib/io/http_utils.dart"; |
14 part "../../../sdk/lib/io/socket.dart"; | 15 part "../../../sdk/lib/io/socket.dart"; |
15 | 16 |
16 void testParseHttpDate() { | 17 void testParseHttpDate() { |
17 DateTime date; | 18 DateTime date; |
18 date = new DateTime.utc(1999, DateTime.JUNE, 11, 18, 46, 53, 0); | 19 date = new DateTime.utc(1999, DateTime.JUNE, 11, 18, 46, 53, 0); |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 test(2013, DateTime.JANUARY, 15, 21, 47, 38, "Tue, 15-Jan-2013 21:47:38 GMT"); | 105 test(2013, DateTime.JANUARY, 15, 21, 47, 38, "Tue, 15-Jan-2013 21:47:38 GMT"); |
105 test(1970, DateTime.JANUARY, 01, 00, 00, 01, "Thu, 01-Jan-1970 00:00:01 GMT"); | 106 test(1970, DateTime.JANUARY, 01, 00, 00, 01, "Thu, 01-Jan-1970 00:00:01 GMT"); |
106 } | 107 } |
107 | 108 |
108 void main() { | 109 void main() { |
109 testParseHttpDate(); | 110 testParseHttpDate(); |
110 testFormatParseHttpDate(); | 111 testFormatParseHttpDate(); |
111 testParseHttpDateFailures(); | 112 testParseHttpDateFailures(); |
112 testParseHttpCookieDate(); | 113 testParseHttpCookieDate(); |
113 } | 114 } |
OLD | NEW |