2012-10-19 20:21:37 +04:00
|
|
|
#include <stdlib.h>
|
2008-04-07 19:16:41 +04:00
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
#include "torture.h"
|
2008-04-07 19:16:41 +04:00
|
|
|
|
|
|
|
#include "vio/csync_vio_handle.h"
|
|
|
|
#include "vio/csync_vio_handle_private.h"
|
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
static void check_csync_vio_handle_new(void **state)
|
2008-04-07 19:16:41 +04:00
|
|
|
{
|
2012-10-19 20:21:37 +04:00
|
|
|
int *number;
|
|
|
|
csync_vio_handle_t *handle;
|
2008-04-07 19:16:41 +04:00
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
(void) state; /* unused */
|
2008-04-07 19:16:41 +04:00
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
number = malloc(sizeof(int));
|
|
|
|
*number = 42;
|
2008-04-07 19:16:41 +04:00
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
handle = csync_vio_handle_new("/tmp", (csync_vio_method_handle_t *) number);
|
|
|
|
assert_non_null(handle);
|
|
|
|
assert_string_equal(handle->uri, "/tmp");
|
2008-04-07 19:16:41 +04:00
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
free(handle->method_handle);
|
|
|
|
|
|
|
|
csync_vio_handle_destroy(handle);
|
2008-04-07 19:16:41 +04:00
|
|
|
}
|
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
static void check_csync_vio_handle_new_null(void **state)
|
2008-04-07 19:16:41 +04:00
|
|
|
{
|
2012-10-19 20:21:37 +04:00
|
|
|
int *number;
|
|
|
|
csync_vio_handle_t *handle;
|
2008-04-07 19:16:41 +04:00
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
(void) state; /* unused */
|
2008-04-07 19:16:41 +04:00
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
number = malloc(sizeof(int));
|
|
|
|
*number = 42;
|
2008-04-07 19:16:41 +04:00
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
handle = csync_vio_handle_new(NULL, (csync_vio_method_handle_t *) number);
|
|
|
|
assert_null(handle);
|
2008-04-07 19:16:41 +04:00
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
handle = csync_vio_handle_new((char *) "/tmp", NULL);
|
|
|
|
assert_null(handle);
|
2008-04-07 19:16:41 +04:00
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
free(number);
|
2008-04-07 19:16:41 +04:00
|
|
|
}
|
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
int torture_run_tests(void)
|
|
|
|
{
|
|
|
|
const UnitTest tests[] = {
|
|
|
|
unit_test(check_csync_vio_handle_new),
|
|
|
|
unit_test(check_csync_vio_handle_new_null),
|
|
|
|
};
|
2008-04-07 19:16:41 +04:00
|
|
|
|
2012-10-19 20:21:37 +04:00
|
|
|
return run_tests(tests);
|
2008-04-07 19:16:41 +04:00
|
|
|
}
|
|
|
|
|