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
|
#include <test.h>
#include <eval_context.h>
#include <evalfunction.h>
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)
{
#ifdef _AIX
return; //redmine6318
#endif
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);
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);
EvalContextDestroy(ctx);
}
int main()
{
PRINT_TEST_BANNER();
const UnitTest tests[] =
{
unit_test(test_hostinnetgroup_found),
unit_test(test_hostinnetgroup_not_found),
};
return run_tests(tests);
}
|