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

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

Issue 11348005: Change the handling og the HTTP content length (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Minor fix Created 8 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « tests/standalone/io/http_content_length_test.dart ('k') | no next file » | 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) 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('dart:math'); 5 #import('dart:math');
6 #import('dart:scalarlist'); 6 #import('dart:scalarlist');
7 7
8 #source("../../../runtime/bin/http_parser.dart"); 8 #source("../../../runtime/bin/http_parser.dart");
9 9
10 class HttpParserTest { 10 class HttpParserTest {
11 static void runAllTests() { 11 static void runAllTests() {
12 testParseRequest(); 12 testParseRequest();
13 testParseResponse(); 13 testParseResponse();
14 testParseInvalidRequest(); 14 testParseInvalidRequest();
15 testParseInvalidResponse(); 15 testParseInvalidResponse();
16 } 16 }
17 17
18 static void _testParseRequest(String request, 18 static void _testParseRequest(String request,
19 String expectedMethod, 19 String expectedMethod,
20 String expectedUri, 20 String expectedUri,
21 {int expectedContentLength: -1, 21 {int expectedContentLength: 0,
22 int expectedBytesReceived: 0, 22 int expectedBytesReceived: 0,
23 Map expectedHeaders: null, 23 Map expectedHeaders: null,
24 bool chunked: false, 24 bool chunked: false,
25 bool upgrade: false, 25 bool upgrade: false,
26 int unparsedLength: 0, 26 int unparsedLength: 0,
27 bool connectionClose: false, 27 bool connectionClose: false,
28 String expectedVersion: "1.1"}) { 28 String expectedVersion: "1.1"}) {
29 _HttpParser httpParser; 29 _HttpParser httpParser;
30 bool headersCompleteCalled; 30 bool headersCompleteCalled;
31 bool dataEndCalled; 31 bool dataEndCalled;
(...skipping 805 matching lines...) Expand 10 before | Expand all | Expand 10 after
837 0123456789012345678901234567890\r 837 0123456789012345678901234567890\r
838 0\r\n\r\n"""; 838 0\r\n\r\n""";
839 _testParseInvalidResponse(response); 839 _testParseInvalidResponse(response);
840 } 840 }
841 } 841 }
842 842
843 843
844 void main() { 844 void main() {
845 HttpParserTest.runAllTests(); 845 HttpParserTest.runAllTests();
846 } 846 }
OLDNEW
« no previous file with comments | « tests/standalone/io/http_content_length_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698