xref: /third_party/curl/tests/libtest/lib1301.c (revision 13498266)
1/***************************************************************************
2 *                                  _   _ ____  _
3 *  Project                     ___| | | |  _ \| |
4 *                             / __| | | | |_) | |
5 *                            | (__| |_| |  _ <| |___
6 *                             \___|\___/|_| \_\_____|
7 *
8 * Copyright (C) Daniel Stenberg, <daniel@haxx.se>, 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 "test.h"
25
26#define fail_unless(expr, msg)                             \
27  do {                                                     \
28    if(!(expr)) {                                          \
29      fprintf(stderr, "%s:%d Assertion '%s' failed: %s\n", \
30              __FILE__, __LINE__, #expr, msg);             \
31      return 1;                                            \
32    }                                                      \
33  } while(0)
34
35int test(char *URL)
36{
37  int rc;
38  (void)URL;
39
40  rc = curl_strequal("iii", "III");
41  fail_unless(rc != 0, "return code should be non-zero");
42
43  rc = curl_strequal("iiia", "III");
44  fail_unless(rc == 0, "return code should be zero");
45
46  rc = curl_strequal("iii", "IIIa");
47  fail_unless(rc == 0, "return code should be zero");
48
49  rc = curl_strequal("iiiA", "IIIa");
50  fail_unless(rc != 0, "return code should be non-zero");
51
52  rc = curl_strnequal("iii", "III", 3);
53  fail_unless(rc != 0, "return code should be non-zero");
54
55  rc = curl_strnequal("iiiABC", "IIIcba", 3);
56  fail_unless(rc != 0, "return code should be non-zero");
57
58  rc = curl_strnequal("ii", "II", 3);
59  fail_unless(rc != 0, "return code should be non-zero");
60
61  return 0;
62}
63