Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
cb2628ec
Commit
cb2628ec
authored
Apr 28, 2017
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initialize HTTP test cases on first use to work around MSVC initialization ordering.
parent
01917db9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
239 additions
and
201 deletions
+239
-201
http-test.c++
c++/src/kj/compat/http-test.c++
+239
-201
No files found.
c++/src/kj/compat/http-test.c++
View file @
cb2628ec
...
@@ -555,167 +555,175 @@ void testHttpServerRequest(kj::AsyncIoContext& io,
...
@@ -555,167 +555,175 @@ void testHttpServerRequest(kj::AsyncIoContext& io,
KJ_EXPECT
(
service
.
getRequestCount
()
==
1
);
KJ_EXPECT
(
service
.
getRequestCount
()
==
1
);
}
}
auto
HUGE_STRING
=
kj
::
strArray
(
kj
::
repeat
(
"abcdefgh"
,
4096
),
""
);
kj
::
ArrayPtr
<
const
HttpRequestTestCase
>
requestTestCases
()
{
auto
HUGE_REQUEST
=
kj
::
str
(
static
const
auto
HUGE_STRING
=
kj
::
strArray
(
kj
::
repeat
(
"abcdefgh"
,
4096
),
""
);
"GET / HTTP/1.1
\r\n
"
static
const
auto
HUGE_REQUEST
=
kj
::
str
(
"Host: "
,
HUGE_STRING
,
"
\r\n
"
"GET / HTTP/1.1
\r\n
"
"
\r\n
"
);
"Host: "
,
HUGE_STRING
,
"
\r\n
"
"
\r\n
"
);
static
const
HttpRequestTestCase
REQUEST_TEST_CASES
[]
{
static
const
HttpRequestTestCase
REQUEST_TEST_CASES
[]
{
{
{
"GET /foo/bar HTTP/1.1
\r\n
"
"GET /foo/bar HTTP/1.1
\r\n
"
"Host: example.com
\r\n
"
"Host: example.com
\r\n
"
"
\r\n
"
,
"
\r\n
"
,
HttpMethod
::
GET
,
HttpMethod
::
GET
,
"/foo/bar"
,
"/foo/bar"
,
{{
HttpHeaderId
::
HOST
,
"example.com"
}},
{{
HttpHeaderId
::
HOST
,
"example.com"
}},
nullptr
,
{},
nullptr
,
{},
},
},
{
{
"HEAD /foo/bar HTTP/1.1
\r\n
"
"HEAD /foo/bar HTTP/1.1
\r\n
"
"Host: example.com
\r\n
"
"Host: example.com
\r\n
"
"
\r\n
"
,
"
\r\n
"
,
HttpMethod
::
HEAD
,
HttpMethod
::
HEAD
,
"/foo/bar"
,
"/foo/bar"
,
{{
HttpHeaderId
::
HOST
,
"example.com"
}},
{{
HttpHeaderId
::
HOST
,
"example.com"
}},
nullptr
,
{},
nullptr
,
{},
},
},
{
{
"POST / HTTP/1.1
\r\n
"
"POST / HTTP/1.1
\r\n
"
"Content-Length: 9
\r\n
"
"Content-Length: 9
\r\n
"
"Host: example.com
\r\n
"
"Host: example.com
\r\n
"
"Content-Type: text/plain
\r\n
"
"Content-Type: text/plain
\r\n
"
"
\r\n
"
"
\r\n
"
"foobarbaz"
,
"foobarbaz"
,
HttpMethod
::
POST
,
"/"
,
{
{
HttpHeaderId
::
HOST
,
"example.com"
},
{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
},
},
9
,
{
"foo"
,
"bar"
,
"baz"
},
},
HttpMethod
::
POST
,
"/"
,
{
{
{
HttpHeaderId
::
HOST
,
"example.com"
},
"POST / HTTP/1.1
\r\n
"
{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
},
"Transfer-Encoding: chunked
\r\n
"
"Host: example.com
\r\n
"
"Content-Type: text/plain
\r\n
"
"
\r\n
"
"3
\r\n
"
"foo
\r\n
"
"6
\r\n
"
"barbaz
\r\n
"
"0
\r\n
"
"
\r\n
"
,
HttpMethod
::
POST
,
"/"
,
{
{
HttpHeaderId
::
HOST
,
"example.com"
},
{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
},
},
nullptr
,
{
"foo"
,
"barbaz"
},
},
},
9
,
{
"foo"
,
"bar"
,
"baz"
},
},
{
"POST / HTTP/1.1
\r\n
"
"Transfer-Encoding: chunked
\r\n
"
"Host: example.com
\r\n
"
"Content-Type: text/plain
\r\n
"
"
\r\n
"
"3
\r\n
"
"foo
\r\n
"
"6
\r\n
"
"barbaz
\r\n
"
"0
\r\n
"
"
\r\n
"
,
HttpMethod
::
POST
,
"/"
,
{
{
{
HttpHeaderId
::
HOST
,
"example.com"
},
"POST / HTTP/1.1
\r\n
"
{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
},
"Transfer-Encoding: chunked
\r\n
"
"Host: example.com
\r\n
"
"Content-Type: text/plain
\r\n
"
"
\r\n
"
"1d
\r\n
"
"0123456789abcdef0123456789abc
\r\n
"
"0
\r\n
"
"
\r\n
"
,
HttpMethod
::
POST
,
"/"
,
{
{
HttpHeaderId
::
HOST
,
"example.com"
},
{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
},
},
nullptr
,
{
"0123456789abcdef0123456789abc"
},
},
},
nullptr
,
{
"foo"
,
"barbaz"
},
},
{
"POST / HTTP/1.1
\r\n
"
"Transfer-Encoding: chunked
\r\n
"
"Host: example.com
\r\n
"
"Content-Type: text/plain
\r\n
"
"
\r\n
"
"1d
\r\n
"
"0123456789abcdef0123456789abc
\r\n
"
"0
\r\n
"
"
\r\n
"
,
HttpMethod
::
POST
,
"/"
,
{
{
{
HttpHeaderId
::
HOST
,
"example.com"
},
HUGE_REQUEST
,
{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
},
HttpMethod
::
GET
,
"/"
,
{{
HttpHeaderId
::
HOST
,
HUGE_STRING
}},
nullptr
,
{}
},
},
nullptr
,
{
"0123456789abcdef0123456789abc"
},
};
},
{
return
REQUEST_TEST_CASES
;
HUGE_REQUEST
,
}
HttpMethod
::
GET
,
kj
::
ArrayPtr
<
const
HttpResponseTestCase
>
responseTestCases
()
{
"/"
,
static
const
HttpResponseTestCase
RESPONSE_TEST_CASES
[]
{
{{
HttpHeaderId
::
HOST
,
HUGE_STRING
}},
{
nullptr
,
{}
"HTTP/1.1 200 OK
\r\n
"
},
"Content-Type: text/plain
\r\n
"
};
"Connection: close
\r\n
"
"
\r\n
"
"baz qux"
,
static
const
HttpResponseTestCase
RESPONSE_TEST_CASES
[]
{
200
,
"OK"
,
{
{{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
}},
"HTTP/1.1 200 OK
\r\n
"
nullptr
,
{
"baz qux"
},
"Content-Type: text/plain
\r\n
"
"Connection: close
\r\n
"
"
\r\n
"
"baz qux"
,
200
,
"OK"
,
HttpMethod
::
GET
,
{{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
}},
CLIENT_ONLY
,
// Server never sends connection: close
nullptr
,
{
"baz qux"
},
},
HttpMethod
::
GET
,
{
CLIENT_ONLY
,
// Server never sends connection: close
"HTTP/1.1 200 OK
\r\n
"
},
"Content-Length: 123
\r\n
"
"Content-Type: text/plain
\r\n
"
"
\r\n
"
,
{
200
,
"OK"
,
"HTTP/1.1 200 OK
\r\n
"
{{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
}},
"Content-Length: 123
\r\n
"
123
,
{},
"Content-Type: text/plain
\r\n
"
"
\r\n
"
,
200
,
"OK"
,
HttpMethod
::
HEAD
,
{{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
}},
},
123
,
{},
HttpMethod
::
HEAD
,
{
},
"HTTP/1.1 200 OK
\r\n
"
"Content-Length: 8
\r\n
"
"Content-Type: text/plain
\r\n
"
"
\r\n
"
"quxcorge"
,
{
200
,
"OK"
,
"HTTP/1.1 200 OK
\r\n
"
{{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
}},
"Content-Length: 8
\r\n
"
8
,
{
"qux"
,
"corge"
}
"Content-Type: text/plain
\r\n
"
},
"
\r\n
"
"quxcorge"
,
200
,
"OK"
,
{
{{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
}},
"HTTP/1.1 200 OK
\r\n
"
8
,
{
"qux"
,
"corge"
}
"Transfer-Encoding: chunked
\r\n
"
},
"Content-Type: text/plain
\r\n
"
"
\r\n
"
"3
\r\n
"
"qux
\r\n
"
"5
\r\n
"
"corge
\r\n
"
"0
\r\n
"
"
\r\n
"
,
{
200
,
"OK"
,
"HTTP/1.1 200 OK
\r\n
"
{{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
}},
"Transfer-Encoding: chunked
\r\n
"
nullptr
,
{
"qux"
,
"corge"
}
"Content-Type: text/plain
\r\n
"
},
"
\r\n
"
};
"3
\r\n
"
"qux
\r\n
"
"5
\r\n
"
"corge
\r\n
"
"0
\r\n
"
"
\r\n
"
,
200
,
"OK"
,
return
RESPONSE_TEST_CASES
;
{{
HttpHeaderId
::
CONTENT_TYPE
,
"text/plain"
}},
}
nullptr
,
{
"qux"
,
"corge"
}
},
};
KJ_TEST
(
"HttpClient requests"
)
{
KJ_TEST
(
"HttpClient requests"
)
{
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
for
(
auto
&
testCase
:
REQUEST_TEST_CASES
)
{
for
(
auto
&
testCase
:
requestTestCases
()
)
{
if
(
testCase
.
side
==
SERVER_ONLY
)
continue
;
if
(
testCase
.
side
==
SERVER_ONLY
)
continue
;
KJ_CONTEXT
(
testCase
.
raw
);
KJ_CONTEXT
(
testCase
.
raw
);
testHttpClientRequest
(
io
,
testCase
);
testHttpClientRequest
(
io
,
testCase
);
...
@@ -726,7 +734,7 @@ KJ_TEST("HttpClient responses") {
...
@@ -726,7 +734,7 @@ KJ_TEST("HttpClient responses") {
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
size_t
FRAGMENT_SIZES
[]
=
{
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
16
,
31
,
kj
::
maxValue
};
size_t
FRAGMENT_SIZES
[]
=
{
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
16
,
31
,
kj
::
maxValue
};
for
(
auto
&
testCase
:
RESPONSE_TEST_CASES
)
{
for
(
auto
&
testCase
:
responseTestCases
()
)
{
if
(
testCase
.
side
==
SERVER_ONLY
)
continue
;
if
(
testCase
.
side
==
SERVER_ONLY
)
continue
;
for
(
size_t
fragmentSize
:
FRAGMENT_SIZES
)
{
for
(
size_t
fragmentSize
:
FRAGMENT_SIZES
)
{
KJ_CONTEXT
(
testCase
.
raw
,
fragmentSize
);
KJ_CONTEXT
(
testCase
.
raw
,
fragmentSize
);
...
@@ -759,7 +767,7 @@ KJ_TEST("HttpServer requests") {
...
@@ -759,7 +767,7 @@ KJ_TEST("HttpServer requests") {
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
for
(
auto
&
testCase
:
REQUEST_TEST_CASES
)
{
for
(
auto
&
testCase
:
requestTestCases
()
)
{
if
(
testCase
.
side
==
CLIENT_ONLY
)
continue
;
if
(
testCase
.
side
==
CLIENT_ONLY
)
continue
;
KJ_CONTEXT
(
testCase
.
raw
);
KJ_CONTEXT
(
testCase
.
raw
);
testHttpServerRequest
(
io
,
testCase
,
testHttpServerRequest
(
io
,
testCase
,
...
@@ -790,7 +798,7 @@ KJ_TEST("HttpServer responses") {
...
@@ -790,7 +798,7 @@ KJ_TEST("HttpServer responses") {
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
for
(
auto
&
testCase
:
RESPONSE_TEST_CASES
)
{
for
(
auto
&
testCase
:
responseTestCases
()
)
{
if
(
testCase
.
side
==
CLIENT_ONLY
)
continue
;
if
(
testCase
.
side
==
CLIENT_ONLY
)
continue
;
KJ_CONTEXT
(
testCase
.
raw
);
KJ_CONTEXT
(
testCase
.
raw
);
testHttpServerRequest
(
io
,
testHttpServerRequest
(
io
,
...
@@ -800,90 +808,96 @@ KJ_TEST("HttpServer responses") {
...
@@ -800,90 +808,96 @@ KJ_TEST("HttpServer responses") {
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
static
const
HttpTestCase
PIPELINE_TESTS
[]
=
{
kj
::
ArrayPtr
<
const
HttpTestCase
>
pipelineTestCases
()
{
{
static
const
HttpTestCase
PIPELINE_TESTS
[]
=
{
{
{
"GET / HTTP/1.1
\r\n
"
{
"
\r\n
"
,
"GET / HTTP/1.1
\r\n
"
"
\r\n
"
,
HttpMethod
::
GET
,
"/"
,
{},
nullptr
,
{},
HttpMethod
::
GET
,
"/"
,
{},
nullptr
,
{},
},
},
{
{
"HTTP/1.1 200 OK
\r\n
"
"HTTP/1.1 200 OK
\r\n
"
"Content-Length: 7
\r\n
"
"Content-Length: 7
\r\n
"
"
\r\n
"
"
\r\n
"
"foo bar"
,
"foo bar"
,
200
,
"OK"
,
{},
7
,
{
"foo bar"
}
200
,
"OK"
,
{},
7
,
{
"foo bar"
}
},
},
},
},
{
{
{
"POST /foo HTTP/1.1
\r\n
"
{
"Content-Length: 6
\r\n
"
"POST /foo HTTP/1.1
\r\n
"
"
\r\n
"
"Content-Length: 6
\r\n
"
"grault"
,
"
\r\n
"
"grault"
,
HttpMethod
::
POST
,
"/foo"
,
{},
6
,
{
"grault"
},
HttpMethod
::
POST
,
"/foo"
,
{},
6
,
{
"grault"
},
},
{
"HTTP/1.1 404 Not Found
\r\n
"
"Content-Length: 13
\r\n
"
"
\r\n
"
"baz qux corge"
,
404
,
"Not Found"
,
{},
13
,
{
"baz qux corge"
}
},
},
},
{
"HTTP/1.1 404 Not Found
\r\n
"
"Content-Length: 13
\r\n
"
"
\r\n
"
"baz qux corge"
,
404
,
"Not Found"
,
{},
13
,
{
"baz qux corge"
}
},
},
{
{
"POST /bar HTTP/1.1
\r\n
"
"Transfer-Encoding: chunked
\r\n
"
"
\r\n
"
"6
\r\n
"
"garply
\r\n
"
"5
\r\n
"
"waldo
\r\n
"
"0
\r\n
"
"
\r\n
"
,
HttpMethod
::
POST
,
"/bar"
,
{},
nullptr
,
{
"garply"
,
"waldo"
},
},
{
{
"HTTP/1.1 200 OK
\r\n
"
{
"Transfer-Encoding: chunked
\r\n
"
"POST /bar HTTP/1.1
\r\n
"
"
\r\n
"
"Transfer-Encoding: chunked
\r\n
"
"4
\r\n
"
"
\r\n
"
"fred
\r\n
"
"6
\r\n
"
"5
\r\n
"
"garply
\r\n
"
"plugh
\r\n
"
"5
\r\n
"
"0
\r\n
"
"waldo
\r\n
"
"
\r\n
"
,
"0
\r\n
"
"
\r\n
"
,
200
,
"OK"
,
{},
nullptr
,
{
"fred"
,
"plugh"
}
HttpMethod
::
POST
,
"/bar"
,
{},
nullptr
,
{
"garply"
,
"waldo"
},
},
{
"HTTP/1.1 200 OK
\r\n
"
"Transfer-Encoding: chunked
\r\n
"
"
\r\n
"
"4
\r\n
"
"fred
\r\n
"
"5
\r\n
"
"plugh
\r\n
"
"0
\r\n
"
"
\r\n
"
,
200
,
"OK"
,
{},
nullptr
,
{
"fred"
,
"plugh"
}
},
},
},
},
{
{
{
"HEAD / HTTP/1.1
\r\n
"
{
"
\r\n
"
,
"HEAD / HTTP/1.1
\r\n
"
"
\r\n
"
,
HttpMethod
::
HEAD
,
"/"
,
{},
nullptr
,
{},
HttpMethod
::
HEAD
,
"/"
,
{},
nullptr
,
{},
},
},
{
{
"HTTP/1.1 200 OK
\r\n
"
"HTTP/1.1 200 OK
\r\n
"
"Content-Length: 7
\r\n
"
"Content-Length: 7
\r\n
"
"
\r\n
"
,
"
\r\n
"
,
200
,
"OK"
,
{},
7
,
{
"foo bar"
}
200
,
"OK"
,
{},
7
,
{
"foo bar"
}
},
},
},
},
};
};
return
PIPELINE_TESTS
;
}
KJ_TEST
(
"HttpClient pipeline"
)
{
KJ_TEST
(
"HttpClient pipeline"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -933,6 +947,8 @@ KJ_TEST("HttpClient pipeline") {
...
@@ -933,6 +947,8 @@ KJ_TEST("HttpClient pipeline") {
}
}
KJ_TEST
(
"HttpClient parallel pipeline"
)
{
KJ_TEST
(
"HttpClient parallel pipeline"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -986,6 +1002,8 @@ KJ_TEST("HttpClient parallel pipeline") {
...
@@ -986,6 +1002,8 @@ KJ_TEST("HttpClient parallel pipeline") {
}
}
KJ_TEST
(
"HttpServer pipeline"
)
{
KJ_TEST
(
"HttpServer pipeline"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -1011,6 +1029,8 @@ KJ_TEST("HttpServer pipeline") {
...
@@ -1011,6 +1029,8 @@ KJ_TEST("HttpServer pipeline") {
}
}
KJ_TEST
(
"HttpServer parallel pipeline"
)
{
KJ_TEST
(
"HttpServer parallel pipeline"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -1037,6 +1057,8 @@ KJ_TEST("HttpServer parallel pipeline") {
...
@@ -1037,6 +1057,8 @@ KJ_TEST("HttpServer parallel pipeline") {
}
}
KJ_TEST
(
"HttpClient <-> HttpServer"
)
{
KJ_TEST
(
"HttpClient <-> HttpServer"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -1082,6 +1104,8 @@ KJ_TEST("HttpClient <-> HttpServer") {
...
@@ -1082,6 +1104,8 @@ KJ_TEST("HttpClient <-> HttpServer") {
// -----------------------------------------------------------------------------
// -----------------------------------------------------------------------------
KJ_TEST
(
"HttpServer request timeout"
)
{
KJ_TEST
(
"HttpServer request timeout"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -1100,6 +1124,8 @@ KJ_TEST("HttpServer request timeout") {
...
@@ -1100,6 +1124,8 @@ KJ_TEST("HttpServer request timeout") {
}
}
KJ_TEST
(
"HttpServer pipeline timeout"
)
{
KJ_TEST
(
"HttpServer pipeline timeout"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -1146,6 +1172,8 @@ private:
...
@@ -1146,6 +1172,8 @@ private:
};
};
KJ_TEST
(
"HttpServer no response"
)
{
KJ_TEST
(
"HttpServer no response"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -1170,6 +1198,8 @@ KJ_TEST("HttpServer no response") {
...
@@ -1170,6 +1198,8 @@ KJ_TEST("HttpServer no response") {
}
}
KJ_TEST
(
"HttpServer disconnected"
)
{
KJ_TEST
(
"HttpServer disconnected"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -1188,6 +1218,8 @@ KJ_TEST("HttpServer disconnected") {
...
@@ -1188,6 +1218,8 @@ KJ_TEST("HttpServer disconnected") {
}
}
KJ_TEST
(
"HttpServer overloaded"
)
{
KJ_TEST
(
"HttpServer overloaded"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -1206,6 +1238,8 @@ KJ_TEST("HttpServer overloaded") {
...
@@ -1206,6 +1238,8 @@ KJ_TEST("HttpServer overloaded") {
}
}
KJ_TEST
(
"HttpServer unimplemented"
)
{
KJ_TEST
(
"HttpServer unimplemented"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -1224,6 +1258,8 @@ KJ_TEST("HttpServer unimplemented") {
...
@@ -1224,6 +1258,8 @@ KJ_TEST("HttpServer unimplemented") {
}
}
KJ_TEST
(
"HttpServer threw exception"
)
{
KJ_TEST
(
"HttpServer threw exception"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
@@ -1264,6 +1300,8 @@ private:
...
@@ -1264,6 +1300,8 @@ private:
};
};
KJ_TEST
(
"HttpServer threw exception after starting response"
)
{
KJ_TEST
(
"HttpServer threw exception after starting response"
)
{
auto
PIPELINE_TESTS
=
pipelineTestCases
();
auto
io
=
kj
::
setupAsyncIo
();
auto
io
=
kj
::
setupAsyncIo
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
auto
pipe
=
io
.
provider
->
newTwoWayPipe
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment