1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29 #ifndef TEST_IO_H
30 #define TEST_IO_H
31
32 #include "../public/nsapi.h"
33
34 #include "test.h"
35
36 #include "../util/io.h"
37
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41
42 UCX_TEST(test_io_http_stream_parse_chunk_header_hdronly_first);
43 UCX_TEST(test_io_http_stream_parse_chunk_header_hdronly);
44 UCX_TEST(test_io_http_stream_parse_chunk_header_hdronly_seq_fail);
45 UCX_TEST(test_io_http_stream_parse_chunk_header_hdr_data);
46 UCX_TEST(test_io_http_stream_parse_chunk_header_empty);
47 UCX_TEST(test_io_http_stream_parse_chunk_header_partial_first);
48 UCX_TEST(test_io_http_stream_parse_chunk_header_partial);
49 UCX_TEST(test_io_http_stream_parse_chunk_header_invalid);
50 UCX_TEST(test_io_http_stream_parse_chunk_header_zero);
51
52 UCX_TEST(test_io_httpstream_write);
53 UCX_TEST(test_io_httpstream_chunked_write);
54 UCX_TEST(test_io_httpstream_chunked_write_xx);
55 UCX_TEST(test_io_httpstream_chunked_write_end);
56 UCX_TEST(test_io_httpstream_chunked_write_partial_header);
57 UCX_TEST(test_io_httpstream_chunked_write_partial_data);
58 UCX_TEST(test_io_httpstream_chunked_write_partial_trailer);
59 UCX_TEST(test_io_httpstream_chunked_write_partial_trailer_partial_header);
60 UCX_TEST(test_io_httpstream_chunked_write_data_2x);
61 UCX_TEST(test_io_httpstream_chunked_write_xx_limit);
62
63
64 #ifdef __cplusplus
65 }
66 #endif
67
68 #endif
69
70