src/server/test/httpclient.h

Wed, 25 Feb 2026 22:38:51 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Wed, 25 Feb 2026 22:38:51 +0100
changeset 705
30de3bfd0412
parent 704
778dcf4ad63c
permissions
-rw-r--r--

add httpclient request body tests

701
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
1 /*
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
3 *
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
4 * Copyright 2026 Olaf Wintermann. All rights reserved.
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
5 *
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
6 * Redistribution and use in source and binary forms, with or without
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
7 * modification, are permitted provided that the following conditions are met:
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
8 *
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
9 * 1. Redistributions of source code must retain the above copyright
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
10 * notice, this list of conditions and the following disclaimer.
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
11 *
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
12 * 2. Redistributions in binary form must reproduce the above copyright
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer in the
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
14 * documentation and/or other materials provided with the distribution.
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
15 *
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
26 * POSSIBILITY OF SUCH DAMAGE.
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
27 */
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
28
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
29 #ifndef TEST_HTTPCLIENT_H
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
30 #define TEST_HTTPCLIENT_H
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
31
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
32 #include "test.h"
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
33
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
34 #ifdef __cplusplus
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
35 extern "C" {
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
36 #endif
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
37
704
778dcf4ad63c fix multiple reads could corrupt the httpclient buffer content
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 703
diff changeset
38 void http_client_tests_init(void);
778dcf4ad63c fix multiple reads could corrupt the httpclient buffer content
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 703
diff changeset
39 void http_client_tests_cleanup(void);
778dcf4ad63c fix multiple reads could corrupt the httpclient buffer content
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 703
diff changeset
40
701
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
41 CX_TEST(test_http_client_simple_get1);
703
395c62fac7e5 add more httpclient tests
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 701
diff changeset
42 CX_TEST(test_http_client_simple_get_line_io);
395c62fac7e5 add more httpclient tests
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 701
diff changeset
43 CX_TEST(test_http_client_simple_get_small_blocksize);
395c62fac7e5 add more httpclient tests
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 701
diff changeset
44 CX_TEST(test_http_client_simple_get_1b_blocksize);
705
30de3bfd0412 add httpclient request body tests
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 704
diff changeset
45 CX_TEST(test_http_client_post_ctlen);
30de3bfd0412 add httpclient request body tests
Olaf Wintermann <olaf.wintermann@gmail.com>
parents: 704
diff changeset
46 CX_TEST(test_http_client_post_chunked);
701
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
47
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
48
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
49 #ifdef __cplusplus
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
50 }
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
51 #endif
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
52
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
53 #endif /* TEST_HTTPCLIENT_H */
936e5487418a add first full httpclient test
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
diff changeset
54

mercurial