mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
5d18c5e5ec
BUG: https://bugzilla.samba.org/show_bug.cgi?id=12878 Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Alexander Bokovoy <ab@samba.org>
78 lines
1.6 KiB
C
78 lines
1.6 KiB
C
#include <errno.h>
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <setjmp.h>
|
|
#include <stdint.h>
|
|
#include <unistd.h>
|
|
#include <sys/stat.h>
|
|
#include <cmocka.h>
|
|
|
|
#include "include/config.h"
|
|
#include "librpc/gen_ndr/ndr_samr.h"
|
|
#include "source3/rpc_server/srv_pipe.h"
|
|
#include "librpc/gen_ndr/srv_samr.h"
|
|
|
|
static int setup_samr(void **state)
|
|
{
|
|
rpc_samr_init(NULL);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int teardown(void **state)
|
|
{
|
|
unsetenv("UNITTEST_DUMMY_MODULE_LOADED");
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int teardown_samr(void **state)
|
|
{
|
|
rpc_samr_shutdown();
|
|
|
|
teardown(state);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void test_is_known_pipename(void **state)
|
|
{
|
|
struct ndr_syntax_id syntax_id = ndr_table_samr.syntax_id;
|
|
bool is_pipename_ok;
|
|
|
|
is_pipename_ok = is_known_pipename("samr", &syntax_id);
|
|
assert_true(is_pipename_ok);
|
|
}
|
|
|
|
static void test_is_known_pipename_slash(void **state)
|
|
{
|
|
struct ndr_syntax_id syntax_id = ndr_table_samr.syntax_id;
|
|
bool is_pipename_ok;
|
|
char dummy_module_path[4096] = {0};
|
|
const char *module_env;
|
|
|
|
snprintf(dummy_module_path,
|
|
sizeof(dummy_module_path),
|
|
"%s/bin/modules/rpc/test_dummy_module.so",
|
|
SRCDIR);
|
|
|
|
is_pipename_ok = is_known_pipename(dummy_module_path, &syntax_id);
|
|
assert_false(is_pipename_ok);
|
|
|
|
module_env = getenv("UNITTEST_DUMMY_MODULE_LOADED");
|
|
assert_null(module_env);
|
|
}
|
|
|
|
int main(void) {
|
|
const struct CMUnitTest tests[] = {
|
|
cmocka_unit_test_setup_teardown(test_is_known_pipename,
|
|
setup_samr,
|
|
teardown_samr),
|
|
cmocka_unit_test_teardown(test_is_known_pipename_slash,
|
|
teardown),
|
|
};
|
|
|
|
cmocka_set_message_output(CM_OUTPUT_SUBUNIT);
|
|
return cmocka_run_group_tests(tests, NULL, NULL);
|
|
}
|