mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
8a2c763d26
Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
98 lines
2.4 KiB
C
98 lines
2.4 KiB
C
/*
|
|
* Unix SMB/CIFS implementation.
|
|
*
|
|
* Copyright (C) 2018-2019 Andreas Schneider <asn@samba.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <setjmp.h>
|
|
#include <cmocka.h>
|
|
#include <time.h>
|
|
#include <sys/time.h>
|
|
|
|
#include "lib/cmdline/cmdline.h"
|
|
|
|
static void torture_cmdline_sanity_check_good(void **state)
|
|
{
|
|
bool ok;
|
|
struct poptOption long_options_good[] = {
|
|
POPT_AUTOHELP
|
|
POPT_COMMON_SAMBA
|
|
POPT_COMMON_CONNECTION
|
|
POPT_COMMON_CREDENTIALS
|
|
POPT_COMMON_VERSION
|
|
POPT_LEGACY_S3
|
|
POPT_TABLEEND
|
|
};
|
|
|
|
ok = samba_cmdline_sanity_check(long_options_good);
|
|
assert_true(ok);
|
|
}
|
|
|
|
static void torture_cmdline_sanity_check_bad(void **state)
|
|
{
|
|
bool ok;
|
|
|
|
struct poptOption long_options_bad[] = {
|
|
POPT_AUTOHELP
|
|
POPT_COMMON_SAMBA
|
|
POPT_COMMON_SAMBA
|
|
POPT_TABLEEND
|
|
};
|
|
|
|
ok = samba_cmdline_sanity_check(long_options_bad);
|
|
assert_false(ok);
|
|
}
|
|
|
|
static void torture_cmdline_burn(void **state)
|
|
{
|
|
char arg1[] = "-U Administrator%secret";
|
|
char arg2[] = "--user=Administrator%secret";
|
|
char arg3[] = "--user=Administrator%super%secret";
|
|
char arg4[] = "--password=super%secret";
|
|
|
|
char *argv[] = { arg1, arg2, arg3, arg4, NULL };
|
|
int argc = 4;
|
|
|
|
samba_cmdline_burn(argc, argv);
|
|
|
|
assert_string_equal(arg1, "-U Administrator");
|
|
assert_string_equal(arg2, "--user=Administrator");
|
|
assert_string_equal(arg3, "--user=Administrator");
|
|
assert_string_equal(arg4, "--password");
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int rc;
|
|
const struct CMUnitTest tests[] = {
|
|
cmocka_unit_test(torture_cmdline_sanity_check_good),
|
|
cmocka_unit_test(torture_cmdline_sanity_check_bad),
|
|
cmocka_unit_test(torture_cmdline_burn),
|
|
};
|
|
|
|
if (argc == 2) {
|
|
cmocka_set_test_filter(argv[1]);
|
|
}
|
|
cmocka_set_message_output(CM_OUTPUT_SUBUNIT);
|
|
|
|
rc = cmocka_run_group_tests(tests, NULL, NULL);
|
|
|
|
return rc;
|
|
}
|