2011-03-10 05:48:02 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2016-04-03 10:21:10 -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:42:31 -05:00
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
|
|
|
#include "url.h" /* for Curl_safefree */
|
2011-01-04 10:42:31 -05:00
|
|
|
#include "curl_base64.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h" /* LAST include file */
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2016-06-21 09:47:12 -04:00
|
|
|
static struct Curl_easy *data;
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2016-04-03 14:28:34 -04:00
|
|
|
static CURLcode unit_setup(void)
|
2011-01-04 10:42:31 -05:00
|
|
|
{
|
|
|
|
data = curl_easy_init();
|
2013-12-01 06:05:11 -05:00
|
|
|
if(!data)
|
2011-01-06 02:53:24 -05:00
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
return CURLE_OK;
|
2011-01-04 10:42:31 -05:00
|
|
|
}
|
2011-01-06 02:53:24 -05:00
|
|
|
|
2016-04-03 14:28:34 -04:00
|
|
|
static void unit_stop(void)
|
2011-01-04 10:42:31 -05:00
|
|
|
{
|
|
|
|
curl_easy_cleanup(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
UNITTEST_START
|
|
|
|
|
|
|
|
char *output;
|
|
|
|
unsigned char *decoded;
|
2011-08-24 02:07:36 -04:00
|
|
|
size_t size = 0;
|
|
|
|
unsigned char anychar = 'x';
|
|
|
|
CURLcode rc;
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
rc = Curl_base64_encode(data, "i", 1, &output, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 4, "size should be 4");
|
2016-04-03 14:28:34 -04:00
|
|
|
verify_memory(output, "aQ==", 4);
|
2011-01-06 02:53:24 -05:00
|
|
|
Curl_safefree(output);
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
rc = Curl_base64_encode(data, "ii", 2, &output, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 4, "size should be 4");
|
2016-04-03 14:28:34 -04:00
|
|
|
verify_memory(output, "aWk=", 4);
|
2011-01-06 02:53:24 -05:00
|
|
|
Curl_safefree(output);
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
rc = Curl_base64_encode(data, "iii", 3, &output, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 4, "size should be 4");
|
2016-04-03 14:28:34 -04:00
|
|
|
verify_memory(output, "aWlp", 4);
|
2011-01-06 02:53:24 -05:00
|
|
|
Curl_safefree(output);
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
rc = Curl_base64_encode(data, "iiii", 4, &output, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 8, "size should be 8");
|
2016-04-03 14:28:34 -04:00
|
|
|
verify_memory(output, "aWlpaQ==", 8);
|
2011-01-06 02:53:24 -05:00
|
|
|
Curl_safefree(output);
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2014-07-25 02:38:16 -04:00
|
|
|
rc = Curl_base64_encode(data, "\xff\x01\xfe\x02", 4, &output, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 8, "size should be 8");
|
2016-04-03 14:28:34 -04:00
|
|
|
verify_memory(output, "/wH+Ag==", 8);
|
2014-07-25 02:38:16 -04:00
|
|
|
Curl_safefree(output);
|
|
|
|
|
|
|
|
rc = Curl_base64url_encode(data, "\xff\x01\xfe\x02", 4, &output, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 8, "size should be 8");
|
2016-04-03 14:28:34 -04:00
|
|
|
verify_memory(output, "_wH-Ag==", 8);
|
2014-07-25 02:38:16 -04:00
|
|
|
Curl_safefree(output);
|
|
|
|
|
|
|
|
rc = Curl_base64url_encode(data, "iiii", 4, &output, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 8, "size should be 8");
|
2016-04-03 14:28:34 -04:00
|
|
|
verify_memory(output, "aWlpaQ==", 8);
|
2014-07-25 02:38:16 -04:00
|
|
|
Curl_safefree(output);
|
|
|
|
|
2011-01-04 10:42:31 -05:00
|
|
|
/* 0 length makes it do strlen() */
|
2011-08-24 02:07:36 -04:00
|
|
|
rc = Curl_base64_encode(data, "iiii", 0, &output, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 8, "size should be 8");
|
2016-04-03 14:28:34 -04:00
|
|
|
verify_memory(output, "aWlpaQ==", 8);
|
2011-01-06 02:53:24 -05:00
|
|
|
Curl_safefree(output);
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
rc = Curl_base64_decode("aWlpaQ==", &decoded, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 4, "size should be 4");
|
2011-01-04 10:42:31 -05:00
|
|
|
verify_memory(decoded, "iiii", 4);
|
2011-01-06 02:53:24 -05:00
|
|
|
Curl_safefree(decoded);
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
rc = Curl_base64_decode("aWlp", &decoded, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 3, "size should be 3");
|
2011-01-04 10:42:31 -05:00
|
|
|
verify_memory(decoded, "iii", 3);
|
2011-01-06 02:53:24 -05:00
|
|
|
Curl_safefree(decoded);
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
rc = Curl_base64_decode("aWk=", &decoded, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 2, "size should be 2");
|
2011-01-04 10:42:31 -05:00
|
|
|
verify_memory(decoded, "ii", 2);
|
2011-01-06 02:53:24 -05:00
|
|
|
Curl_safefree(decoded);
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
rc = Curl_base64_decode("aQ==", &decoded, &size);
|
|
|
|
fail_unless(rc == CURLE_OK, "return code should be CURLE_OK");
|
|
|
|
fail_unless(size == 1, "size should be 1");
|
2011-01-04 10:42:31 -05:00
|
|
|
verify_memory(decoded, "i", 2);
|
2011-01-06 02:53:24 -05:00
|
|
|
Curl_safefree(decoded);
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2013-10-30 03:31:22 -04:00
|
|
|
/* This is illegal input as the data is too short */
|
2011-08-24 02:07:36 -04:00
|
|
|
size = 1; /* not zero */
|
|
|
|
decoded = &anychar; /* not NULL */
|
|
|
|
rc = Curl_base64_decode("aQ", &decoded, &size);
|
2016-04-03 10:21:10 -04:00
|
|
|
fail_unless(rc == CURLE_BAD_CONTENT_ENCODING,
|
|
|
|
"return code should be CURLE_BAD_CONTENT_ENCODING");
|
2013-10-30 03:31:22 -04:00
|
|
|
fail_unless(size == 0, "size should be 0");
|
|
|
|
fail_if(decoded, "returned pointer should be NULL");
|
|
|
|
|
|
|
|
/* This is illegal input as it contains three padding characters */
|
|
|
|
size = 1; /* not zero */
|
|
|
|
decoded = &anychar; /* not NULL */
|
|
|
|
rc = Curl_base64_decode("a===", &decoded, &size);
|
2016-04-03 10:21:10 -04:00
|
|
|
fail_unless(rc == CURLE_BAD_CONTENT_ENCODING,
|
|
|
|
"return code should be CURLE_BAD_CONTENT_ENCODING");
|
2013-10-30 03:31:22 -04:00
|
|
|
fail_unless(size == 0, "size should be 0");
|
|
|
|
fail_if(decoded, "returned pointer should be NULL");
|
|
|
|
|
|
|
|
/* This is illegal input as it contains a padding character mid input */
|
|
|
|
size = 1; /* not zero */
|
|
|
|
decoded = &anychar; /* not NULL */
|
|
|
|
rc = Curl_base64_decode("a=Q=", &decoded, &size);
|
2016-04-03 10:21:10 -04:00
|
|
|
fail_unless(rc == CURLE_BAD_CONTENT_ENCODING,
|
|
|
|
"return code should be CURLE_BAD_CONTENT_ENCODING");
|
2011-08-24 02:07:36 -04:00
|
|
|
fail_unless(size == 0, "size should be 0");
|
2011-01-06 02:53:24 -05:00
|
|
|
fail_if(decoded, "returned pointer should be NULL");
|
2011-01-04 10:42:31 -05:00
|
|
|
|
2013-12-01 06:05:11 -05:00
|
|
|
/* This is garbage input as it contains an illegal base64 character */
|
|
|
|
size = 1; /* not zero */
|
|
|
|
decoded = &anychar; /* not NULL */
|
2011-08-24 02:07:36 -04:00
|
|
|
rc = Curl_base64_decode("a\x1f==", &decoded, &size);
|
2016-04-03 10:21:10 -04:00
|
|
|
fail_unless(rc == CURLE_BAD_CONTENT_ENCODING,
|
|
|
|
"return code should be CURLE_BAD_CONTENT_ENCODING");
|
2013-12-01 06:05:11 -05:00
|
|
|
fail_unless(size == 0, "size should be 0");
|
|
|
|
fail_if(decoded, "returned pointer should be NULL");
|
2011-01-04 10:42:31 -05:00
|
|
|
|
|
|
|
UNITTEST_STOP
|