2011-03-10 05:48:02 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-04-03 14:28:34 -04:00
|
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-03-10 05:48:02 -05:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2011-03-10 05:48:02 -05:00
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2011-05-21 07:22:11 -04:00
|
|
|
#include "curlcheck.h"
|
2011-01-04 10:13:58 -05:00
|
|
|
|
2016-09-30 11:15:05 -04:00
|
|
|
#include "strcase.h"
|
2011-01-04 10:13:58 -05:00
|
|
|
|
2016-04-03 14:28:34 -04:00
|
|
|
static CURLcode unit_setup(void) {return CURLE_OK;}
|
|
|
|
static void unit_stop(void) {}
|
2011-01-04 10:13:58 -05:00
|
|
|
|
|
|
|
UNITTEST_START
|
|
|
|
|
|
|
|
int rc;
|
|
|
|
|
2016-10-31 04:53:34 -04:00
|
|
|
rc = curl_strequal("iii", "III");
|
2016-04-03 14:28:34 -04:00
|
|
|
fail_unless(rc != 0, "return code should be zero");
|
2011-01-04 10:13:58 -05:00
|
|
|
|
2016-10-31 04:53:34 -04:00
|
|
|
rc = curl_strequal("iiia", "III");
|
2016-04-03 14:28:34 -04:00
|
|
|
fail_unless(rc == 0, "return code should be zero");
|
2011-01-04 10:13:58 -05:00
|
|
|
|
2016-10-31 04:53:34 -04:00
|
|
|
rc = curl_strequal("iii", "IIIa");
|
2016-04-03 14:28:34 -04:00
|
|
|
fail_unless(rc == 0, "return code should be zero");
|
2011-01-04 10:13:58 -05:00
|
|
|
|
2016-10-31 04:53:34 -04:00
|
|
|
rc = curl_strequal("iiiA", "IIIa");
|
2016-04-03 14:28:34 -04:00
|
|
|
fail_unless(rc != 0, "return code should be non-zero");
|
2011-01-04 10:13:58 -05:00
|
|
|
|
2016-10-31 04:53:34 -04:00
|
|
|
rc = curl_strnequal("iii", "III", 3);
|
2016-04-03 14:28:34 -04:00
|
|
|
fail_unless(rc != 0, "return code should be non-zero");
|
2011-01-04 10:13:58 -05:00
|
|
|
|
2016-10-31 04:53:34 -04:00
|
|
|
rc = curl_strnequal("iiiABC", "IIIcba", 3);
|
2016-04-03 14:28:34 -04:00
|
|
|
fail_unless(rc != 0, "return code should be non-zero");
|
2011-01-04 10:13:58 -05:00
|
|
|
|
2016-10-31 04:53:34 -04:00
|
|
|
rc = curl_strnequal("ii", "II", 3);
|
2016-04-03 14:28:34 -04:00
|
|
|
fail_unless(rc != 0, "return code should be non-zero");
|
2011-01-04 10:13:58 -05:00
|
|
|
|
|
|
|
UNITTEST_STOP
|