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_HTTPCLIENT_H
30 #define TEST_HTTPCLIENT_H
31
32 #include "test.h"
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 void http_client_tests_init(
void);
39 void http_client_tests_cleanup(
void);
40
41 CX_TEST(test_http_client_simple_get1);
42 CX_TEST(test_http_client_simple_get_line_io);
43 CX_TEST(test_http_client_simple_get_small_blocksize);
44 CX_TEST(test_http_client_simple_get_1b_blocksize);
45 CX_TEST(test_http_client_post_ctlen);
46 CX_TEST(test_http_client_post_ctlen_large);
47 CX_TEST(test_http_client_post_chunked);
48 CX_TEST(test_http_client_get_incorrect_ctlen);
49 CX_TEST(test_http_client_broken_response);
50
51 #ifdef __cplusplus
52 }
53 #endif
54
55 #endif
56
57