2011-03-10 05:48:02 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2019-05-14 10:36:15 -04:00
|
|
|
* Copyright (C) 1998 - 2019, 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"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "netrc.h"
|
2013-08-29 06:50:15 -04:00
|
|
|
#include "memdebug.h" /* LAST include file */
|
2011-02-08 01:12:37 -05:00
|
|
|
|
2013-08-19 03:48:24 -04:00
|
|
|
static char *login;
|
|
|
|
static char *password;
|
2011-05-24 11:35:08 -04:00
|
|
|
static char filename[64];
|
2011-02-08 01:12:37 -05:00
|
|
|
|
|
|
|
static CURLcode unit_setup(void)
|
|
|
|
{
|
2013-08-19 03:48:24 -04:00
|
|
|
password = strdup("");
|
|
|
|
login = strdup("");
|
2016-04-03 10:21:10 -04:00
|
|
|
if(!password || !login) {
|
|
|
|
Curl_safefree(password);
|
|
|
|
Curl_safefree(login);
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2014-01-28 17:47:20 -05:00
|
|
|
}
|
2011-02-08 01:12:37 -05:00
|
|
|
return CURLE_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void unit_stop(void)
|
|
|
|
{
|
2014-01-28 17:47:20 -05:00
|
|
|
Curl_safefree(password);
|
|
|
|
Curl_safefree(login);
|
2011-02-08 01:12:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
UNITTEST_START
|
|
|
|
int result;
|
2018-11-03 11:58:18 -04:00
|
|
|
bool login_changed;
|
|
|
|
bool password_changed;
|
2011-02-08 01:12:37 -05:00
|
|
|
|
2016-11-23 02:30:18 -05:00
|
|
|
static const char * const filename1 = "log/netrc1304";
|
2011-02-08 11:39:44 -05:00
|
|
|
memcpy(filename, filename1, strlen(filename1));
|
2011-02-08 01:12:37 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test a non existent host in our netrc file.
|
|
|
|
*/
|
2018-11-03 11:58:18 -04:00
|
|
|
result = Curl_parsenetrc("test.example.com", &login, &password,
|
|
|
|
&login_changed, &password_changed, filename);
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(result == 1, "Host not found should return 1");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(password[0] == 0, "password should not have been changed");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(login[0] == 0, "login should not have been changed");
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Test a non existent login in our netrc file.
|
|
|
|
*/
|
2013-08-19 03:48:24 -04:00
|
|
|
free(login);
|
|
|
|
login = strdup("me");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2018-11-03 11:58:18 -04:00
|
|
|
result = Curl_parsenetrc("example.com", &login, &password,
|
|
|
|
&login_changed, &password_changed, filename);
|
|
|
|
fail_unless(result == 0, "Host should have been found");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(password[0] == 0, "password should not have been changed");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(!password_changed, "password should not have been changed");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2016-04-03 10:21:10 -04:00
|
|
|
fail_unless(strncmp(login, "me", 2) == 0,
|
|
|
|
"login should not have been changed");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(!login_changed, "login should not have been changed");
|
2011-02-08 01:12:37 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test a non existent login and host in our netrc file.
|
|
|
|
*/
|
2013-08-19 03:48:24 -04:00
|
|
|
free(login);
|
|
|
|
login = strdup("me");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2018-11-03 11:58:18 -04:00
|
|
|
result = Curl_parsenetrc("test.example.com", &login, &password,
|
|
|
|
&login_changed, &password_changed, filename);
|
|
|
|
fail_unless(result == 1, "Host not found should return 1");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(password[0] == 0, "password should not have been changed");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2016-04-03 10:21:10 -04:00
|
|
|
fail_unless(strncmp(login, "me", 2) == 0,
|
|
|
|
"login should not have been changed");
|
2011-02-08 01:12:37 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test a non existent login (substring of an existing one) in our
|
|
|
|
* netrc file.
|
|
|
|
*/
|
2013-08-19 03:48:24 -04:00
|
|
|
free(login);
|
|
|
|
login = strdup("admi");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2018-11-03 11:58:18 -04:00
|
|
|
result = Curl_parsenetrc("example.com", &login, &password,
|
|
|
|
&login_changed, &password_changed, filename);
|
|
|
|
fail_unless(result == 0, "Host should have been found");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(password[0] == 0, "password should not have been changed");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(!password_changed, "password should not have been changed");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2016-04-03 10:21:10 -04:00
|
|
|
fail_unless(strncmp(login, "admi", 4) == 0,
|
|
|
|
"login should not have been changed");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(!login_changed, "login should not have been changed");
|
2011-02-08 01:12:37 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test a non existent login (superstring of an existing one)
|
|
|
|
* in our netrc file.
|
|
|
|
*/
|
2013-08-19 03:48:24 -04:00
|
|
|
free(login);
|
|
|
|
login = strdup("adminn");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2018-11-03 11:58:18 -04:00
|
|
|
result = Curl_parsenetrc("example.com", &login, &password,
|
|
|
|
&login_changed, &password_changed, filename);
|
|
|
|
fail_unless(result == 0, "Host should have been found");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(password[0] == 0, "password should not have been changed");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(!password_changed, "password should not have been changed");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2016-04-03 10:21:10 -04:00
|
|
|
fail_unless(strncmp(login, "adminn", 6) == 0,
|
|
|
|
"login should not have been changed");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(!login_changed, "login should not have been changed");
|
2011-02-08 01:12:37 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test for the first existing host in our netrc file
|
|
|
|
* with login[0] = 0.
|
|
|
|
*/
|
2013-08-19 03:48:24 -04:00
|
|
|
free(login);
|
|
|
|
login = strdup("");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2018-11-03 11:58:18 -04:00
|
|
|
result = Curl_parsenetrc("example.com", &login, &password,
|
|
|
|
&login_changed, &password_changed, filename);
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(result == 0, "Host should have been found");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(strncmp(password, "passwd", 6) == 0,
|
|
|
|
"password should be 'passwd'");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(password_changed, "password should have been changed");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(strncmp(login, "admin", 5) == 0, "login should be 'admin'");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(login_changed, "login should have been changed");
|
2011-02-08 01:12:37 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test for the first existing host in our netrc file
|
|
|
|
* with login[0] != 0.
|
|
|
|
*/
|
2013-08-19 03:48:24 -04:00
|
|
|
free(password);
|
|
|
|
password = strdup("");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2018-11-03 11:58:18 -04:00
|
|
|
result = Curl_parsenetrc("example.com", &login, &password,
|
|
|
|
&login_changed, &password_changed, filename);
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(result == 0, "Host should have been found");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(strncmp(password, "passwd", 6) == 0,
|
|
|
|
"password should be 'passwd'");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(password_changed, "password should have been changed");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(strncmp(login, "admin", 5) == 0, "login should be 'admin'");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(!login_changed, "login should not have been changed");
|
2011-02-08 01:12:37 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test for the second existing host in our netrc file
|
|
|
|
* with login[0] = 0.
|
|
|
|
*/
|
2013-08-19 03:48:24 -04:00
|
|
|
free(password);
|
|
|
|
password = strdup("");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2013-08-19 03:48:24 -04:00
|
|
|
free(login);
|
|
|
|
login = strdup("");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2018-11-03 11:58:18 -04:00
|
|
|
result = Curl_parsenetrc("curl.example.com", &login, &password,
|
|
|
|
&login_changed, &password_changed, filename);
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(result == 0, "Host should have been found");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(strncmp(password, "none", 4) == 0,
|
|
|
|
"password should be 'none'");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(password_changed, "password should have been changed");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(strncmp(login, "none", 4) == 0, "login should be 'none'");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(login_changed, "login should have been changed");
|
2011-02-08 01:12:37 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Test for the second existing host in our netrc file
|
|
|
|
* with login[0] != 0.
|
|
|
|
*/
|
2013-08-19 03:48:24 -04:00
|
|
|
free(password);
|
|
|
|
password = strdup("");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2018-11-03 11:58:18 -04:00
|
|
|
result = Curl_parsenetrc("curl.example.com", &login, &password,
|
|
|
|
&login_changed, &password_changed, filename);
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(result == 0, "Host should have been found");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(password != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(strncmp(password, "none", 4) == 0,
|
|
|
|
"password should be 'none'");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(password_changed, "password should have been changed");
|
2014-01-28 17:47:20 -05:00
|
|
|
abort_unless(login != NULL, "returned NULL!");
|
2011-02-08 01:12:37 -05:00
|
|
|
fail_unless(strncmp(login, "none", 4) == 0, "login should be 'none'");
|
2018-11-03 11:58:18 -04:00
|
|
|
fail_unless(!login_changed, "login should not have been changed");
|
2011-02-08 01:12:37 -05:00
|
|
|
|
|
|
|
UNITTEST_STOP
|