You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.1 KiB

#include <check.h>
#include <opensync/opensync.h>
#include <opensync/opensync_internals.h>
START_TEST (user_create)
{
OSyncUserInfo *osuser = osync_user_new(NULL);
fail_unless(osuser != NULL, "osuser == NULL on creation");
fail_unless(osync_user_get_confdir(osuser) != NULL, "confdir == NULL on creation");
}
END_TEST
START_TEST (user_confdir)
{
OSyncUserInfo *osuser = osync_user_new(NULL);
fail_unless(osync_user_get_confdir(osuser) != NULL, "configdir == NULL on creation");
osync_user_set_confdir(osuser, "test");
if (g_ascii_strcasecmp (osync_user_get_confdir(osuser), "test") != 0)
fail("configpath == \"test\"");
}
END_TEST
Suite *env_suite(void)
{
Suite *s = suite_create("User");
TCase *tc_core = tcase_create("Core");
suite_add_tcase (s, tc_core);
tcase_add_test(tc_core, user_create);
tcase_add_test(tc_core, user_confdir);
return s;
}
int main(void)
{
int nf;
Suite *s = env_suite();
SRunner *sr;
sr = srunner_create(s);
// srunner_set_fork_status (sr, CK_NOFORK);
srunner_run_all(sr, CK_NORMAL);
nf = srunner_ntests_failed(sr);
srunner_free(sr);
return (nf == 0) ? EXIT_SUCCESS : EXIT_FAILURE;
}