Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/pkg
Path: blob/main/external/curl/tests/libtest/lib1301.c
2651 views
1
/***************************************************************************
2
* _ _ ____ _
3
* Project ___| | | | _ \| |
4
* / __| | | | |_) | |
5
* | (__| |_| | _ <| |___
6
* \___|\___/|_| \_\_____|
7
*
8
* Copyright (C) Daniel Stenberg, <[email protected]>, et al.
9
*
10
* This software is licensed as described in the file COPYING, which
11
* you should have received as part of this distribution. The terms
12
* are also available at https://curl.se/docs/copyright.html.
13
*
14
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
15
* copies of the Software, and permit persons to whom the Software is
16
* furnished to do so, under the terms of the COPYING file.
17
*
18
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
* KIND, either express or implied.
20
*
21
* SPDX-License-Identifier: curl
22
*
23
***************************************************************************/
24
#include "first.h"
25
26
#define t1301_fail_unless(expr, msg) \
27
do { \
28
if(!(expr)) { \
29
curl_mfprintf(stderr, "%s:%d Assertion '%s' FAILED: %s\n", \
30
__FILE__, __LINE__, #expr, msg); \
31
return TEST_ERR_FAILURE; \
32
} \
33
} while(0)
34
35
static CURLcode test_lib1301(const char *URL)
36
{
37
int rc;
38
(void)URL;
39
40
rc = curl_strequal("iii", "III");
41
t1301_fail_unless(rc != 0, "return code should be non-zero");
42
43
rc = curl_strequal("iiia", "III");
44
t1301_fail_unless(rc == 0, "return code should be zero");
45
46
rc = curl_strequal("iii", "IIIa");
47
t1301_fail_unless(rc == 0, "return code should be zero");
48
49
rc = curl_strequal("iiiA", "IIIa");
50
t1301_fail_unless(rc != 0, "return code should be non-zero");
51
52
rc = curl_strnequal("iii", "III", 3);
53
t1301_fail_unless(rc != 0, "return code should be non-zero");
54
55
rc = curl_strnequal("iiiABC", "IIIcba", 3);
56
t1301_fail_unless(rc != 0, "return code should be non-zero");
57
58
rc = curl_strnequal("ii", "II", 3);
59
t1301_fail_unless(rc != 0, "return code should be non-zero");
60
61
return CURLE_OK;
62
}
63
64