1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/*
* 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 "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;
}
|