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
96
97
98
99
100
|
/*
* Copyright (C) 2010 Colin Watson.
*
* This file is part of libpipeline.
*
* libpipeline 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 2 of the License, or (at
* your option) any later version.
*
* libpipeline 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 libpipeline; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA.
*/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <string.h>
#include "common.h"
/* Include private definitions so that we can inspect arguments. */
#include "pipeline-private.h"
const char *program_name = "argstr";
START_TEST (test_argstr_trivial)
{
pipecmd *cmd;
cmd = pipecmd_new_argstr ("/bin/simple");
ck_assert_str_eq (cmd->name, "/bin/simple");
ck_assert_int_eq (cmd->u.process.argc, 1);
ck_assert_str_eq (cmd->u.process.argv[0], "simple");
pipecmd_free (cmd);
}
END_TEST
START_TEST (test_argstr_torture)
{
pipecmd *cmd;
cmd = pipecmd_new_argstr (
"x' \\' \\$\\'\\\"\" \\'\\$\\\"\\\\ \" \\\"");
ck_assert_str_eq (cmd->name, "x \\");
ck_assert_int_eq (cmd->u.process.argc, 3);
ck_assert_str_eq (cmd->u.process.argv[0], "x \\");
ck_assert_str_eq (cmd->u.process.argv[1], "$'\" \\'$\"\\ ");
ck_assert_str_eq (cmd->u.process.argv[2], "\"");
pipecmd_free (cmd);
}
END_TEST
START_TEST (test_argstr_exec)
{
pipecmd *cmd;
cmd = pipecmd_new_argstr ("exec /bin/foo bar");
ck_assert_str_eq (cmd->name, "/bin/foo");
ck_assert_int_eq (cmd->u.process.argc, 2);
ck_assert_str_eq (cmd->u.process.argv[0], "foo");
ck_assert_str_eq (cmd->u.process.argv[1], "bar");
pipecmd_free (cmd);
}
END_TEST
START_TEST (test_argstr_excess_whitespace)
{
pipecmd *cmd;
cmd = pipecmd_new_argstr (" /bin/foo \tbar\t");
ck_assert_str_eq (cmd->name, "/bin/foo");
ck_assert_int_eq (cmd->u.process.argc, 2);
ck_assert_str_eq (cmd->u.process.argv[0], "foo");
ck_assert_str_eq (cmd->u.process.argv[1], "bar");
pipecmd_free (cmd);
}
END_TEST
static Suite *argstr_suite (void)
{
Suite *s = suite_create ("Argstr");
TEST_CASE (s, argstr, trivial);
TEST_CASE (s, argstr, torture);
TEST_CASE (s, argstr, exec);
TEST_CASE (s, argstr, excess_whitespace);
return s;
}
MAIN (argstr)
|