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 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
#include <test.h>
/* Protect against duplicate definition of symbol CF_FNCALL_TYPES since we are
* including evalfunction.c */
#define CFENGINE_EVALFUNCTION_TEST_C
#include <eval_context.h>
#include <evalfunction.c>
static bool netgroup_more = false;
#if SETNETGRENT_RETURNS_INT
int
#else
void
#endif
setnetgrent(const char *netgroup)
{
if (strcmp(netgroup, "valid_netgroup") == 0)
{
netgroup_more = true;
#if SETNETGRENT_RETURNS_INT
return 1;
#else
return;
#endif
}
netgroup_more = false;
#if SETNETGRENT_RETURNS_INT
return 0;
#endif
}
int getnetgrent(char **hostp, char **userp, char **domainp)
{
if (netgroup_more)
{
*hostp = NULL;
*userp = "user";
*domainp = NULL;
netgroup_more = false;
return 1;
}
else
{
return 0;
}
}
static void test_hostinnetgroup_found(void)
{
EvalContext *ctx = EvalContextNew();
FnCallResult res;
Rlist *args = NULL;
RlistAppendScalar(&args, "valid_netgroup");
res = FnCallHostInNetgroup(ctx, NULL, NULL, args);
assert_string_equal("any", (char *) res.rval.item);
RvalDestroy(res.rval);
RlistDestroy(args);
EvalContextDestroy(ctx);
}
static void test_hostinnetgroup_not_found(void)
{
EvalContext *ctx = EvalContextNew();
FnCallResult res;
Rlist *args = NULL;
RlistAppendScalar(&args, "invalid_netgroup");
res = FnCallHostInNetgroup(ctx, NULL, NULL, args);
assert_string_equal("!any", (char *) res.rval.item);
RvalDestroy(res.rval);
RlistDestroy(args);
EvalContextDestroy(ctx);
}
#define basename_single_testcase(input, suffix, expected) \
{ \
FnCallResult res; \
Rlist *args = NULL; \
\
RlistAppendScalar(&args, input); \
if (suffix != NULL) \
{ \
RlistAppendScalar(&args, suffix); \
} \
\
FnCall *call = FnCallNew("basename", args); \
\
res = FnCallBasename(NULL, NULL, call, args); \
assert_string_equal(expected, (char *) res.rval.item); \
\
RvalDestroy(res.rval); \
FnCallDestroy(call); \
}
static void test_basename(void)
{
basename_single_testcase("/", NULL, "/");
basename_single_testcase("//", NULL, "/");
basename_single_testcase("///", NULL, "/");
basename_single_testcase("///////", NULL, "/");
basename_single_testcase("./", NULL, ".");
basename_single_testcase(".", NULL, ".");
basename_single_testcase("", NULL, "");
basename_single_testcase("/foo/bar", NULL, "bar");
basename_single_testcase("/foo/bar/", NULL, "bar");
basename_single_testcase("//a//b///c////", NULL, "c");
basename_single_testcase("", "", "");
basename_single_testcase("/", "", "/");
basename_single_testcase("/foo/bar.txt", ".txt", "bar");
basename_single_testcase("/foo/bar.txt/", ".txt", "bar");
basename_single_testcase("//a//b///c////", "", "c");
basename_single_testcase("//a//b///c////", "blah", "c");
basename_single_testcase("//a//b///c.csv////", ".csv", "c");
}
int main()
{
PRINT_TEST_BANNER();
const UnitTest tests[] = {
unit_test(test_hostinnetgroup_found),
unit_test(test_hostinnetgroup_not_found),
unit_test(test_basename),
};
return run_tests(tests);
}
|