Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Side by Side Diff: tests/standalone/io/http_parser_test.dart

Issue 1319703002: Breaking Change: merge BoringSSL branch into master (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/standalone/io/http_headers_test.dart ('k') | tests/standalone/io/http_proxy_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 class HttpParserTest { 41 class HttpParserTest {
41 static void runAllTests() { 42 static void runAllTests() {
42 testParseRequest(); 43 testParseRequest();
43 testParseResponse(); 44 testParseResponse();
44 testParseInvalidRequest(); 45 testParseInvalidRequest();
45 testParseInvalidResponse(); 46 testParseInvalidResponse();
46 } 47 }
47 48
(...skipping 880 matching lines...) Expand 10 before | Expand all | Expand 10 after
928 0123456789012345678901234567890\r 929 0123456789012345678901234567890\r
929 0\r\n\r\n"""; 930 0\r\n\r\n""";
930 _testParseInvalidResponse(response); 931 _testParseInvalidResponse(response);
931 } 932 }
932 } 933 }
933 934
934 935
935 void main() { 936 void main() {
936 HttpParserTest.runAllTests(); 937 HttpParserTest.runAllTests();
937 } 938 }
OLDNEW
« no previous file with comments | « tests/standalone/io/http_headers_test.dart ('k') | tests/standalone/io/http_proxy_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698