diff options
Diffstat (limited to 'tests/HTTP')
-rw-r--r-- | tests/HTTP/CMakeLists.txt | 13 | ||||
-rw-r--r-- | tests/HTTP/HTTPRequest1.data | 3 | ||||
-rw-r--r-- | tests/HTTP/HTTPResponse1.data | 1 | ||||
-rw-r--r-- | tests/HTTP/HTTPResponse2.data | 1 |
4 files changed, 17 insertions, 1 deletions
diff --git a/tests/HTTP/CMakeLists.txt b/tests/HTTP/CMakeLists.txt index cb2329adc..04e82caf9 100644 --- a/tests/HTTP/CMakeLists.txt +++ b/tests/HTTP/CMakeLists.txt @@ -44,11 +44,22 @@ endif() +set (TEST_DATA_FILES + HTTPRequest1.data + HTTPRequest2.data + HTTPResponse1.data + HTTPResponse2.data +) + +source_group("Data Files" FILES ${TEST_DATA_FILES}) + + + # Define individual test executables: # HTTPMessageParser_file: Feed file contents into a cHTTPResponseParser and print the callbacks as they're called: -add_executable(HTTPMessageParser_file-exe HTTPMessageParser_file.cpp) +add_executable(HTTPMessageParser_file-exe HTTPMessageParser_file.cpp ${TEST_DATA_FILES}) target_link_libraries(HTTPMessageParser_file-exe HTTP Network OSSupport) # UrlClientTest: Tests the UrlClient class by requesting a few things off the internet: diff --git a/tests/HTTP/HTTPRequest1.data b/tests/HTTP/HTTPRequest1.data index cac43c06c..cdfb7f7fb 100644 --- a/tests/HTTP/HTTPRequest1.data +++ b/tests/HTTP/HTTPRequest1.data @@ -1,5 +1,8 @@ GET /some/url HTTP/1.1
Note: This is a test of a regular request
Content-Length: 3
+Empty-Header:
+Almost-Empty-Header: a
+Two-Char-Header: 12
bla
\ No newline at end of file diff --git a/tests/HTTP/HTTPResponse1.data b/tests/HTTP/HTTPResponse1.data index 97e0b23c3..f6eb47217 100644 --- a/tests/HTTP/HTTPResponse1.data +++ b/tests/HTTP/HTTPResponse1.data @@ -6,5 +6,6 @@ Note3: The data is 2 bytes longer than the actual request, parser should indicat Header1: Value1
Header2: Value2
Content-Length: 3
+Empty-Header:
bla
diff --git a/tests/HTTP/HTTPResponse2.data b/tests/HTTP/HTTPResponse2.data index d708c4758..cb8dde4a2 100644 --- a/tests/HTTP/HTTPResponse2.data +++ b/tests/HTTP/HTTPResponse2.data @@ -2,6 +2,7 @@ HTTP/1.0 200 OK Note: This is a Chunked transfer encoding test
Header2: Value2
Transfer-Encoding: chunked
+Empty-Header:
4
Wiki
|