2014-02-24 14:08:58 +04:00
|
|
|
/*
|
|
|
|
* libcsync -- a library to sync a directory with another
|
|
|
|
*
|
|
|
|
* Copyright (c) 2008-2013 by Andreas Schneider <asn@cryptomilk.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2008-05-09 11:54:08 +04:00
|
|
|
#include <string.h>
|
|
|
|
|
2012-10-19 12:57:40 +04:00
|
|
|
#include "torture.h"
|
2008-05-09 11:54:08 +04:00
|
|
|
|
|
|
|
#include "csync_private.h"
|
|
|
|
|
2016-09-02 16:49:54 +03:00
|
|
|
static int setup(void **state) {
|
2012-10-19 12:57:40 +04:00
|
|
|
CSYNC *csync;
|
|
|
|
int rc;
|
2008-05-09 11:54:08 +04:00
|
|
|
|
2012-10-19 12:57:40 +04:00
|
|
|
rc = system("mkdir -p /tmp/check_csync1");
|
|
|
|
assert_int_equal(rc, 0);
|
2008-05-09 11:54:08 +04:00
|
|
|
|
2016-11-15 20:47:04 +03:00
|
|
|
csync_create(&csync, "/tmp/check_csync1");
|
2008-05-09 11:54:08 +04:00
|
|
|
|
2012-10-19 12:57:40 +04:00
|
|
|
*state = csync;
|
2016-09-02 16:49:54 +03:00
|
|
|
return 0;
|
2008-05-09 11:54:08 +04:00
|
|
|
}
|
|
|
|
|
2016-09-02 16:49:54 +03:00
|
|
|
static int setup_module(void **state) {
|
2012-10-19 12:57:40 +04:00
|
|
|
CSYNC *csync;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = system("mkdir -p /tmp/check_csync1");
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
2016-11-15 20:47:04 +03:00
|
|
|
csync_create(&csync, "/tmp/check_csync1");
|
2008-05-09 11:54:08 +04:00
|
|
|
|
2012-10-19 12:57:40 +04:00
|
|
|
*state = csync;
|
2016-09-02 16:49:54 +03:00
|
|
|
return 0;
|
2008-05-09 11:54:08 +04:00
|
|
|
}
|
|
|
|
|
2016-09-02 16:49:54 +03:00
|
|
|
static int teardown(void **state) {
|
2017-08-14 17:19:52 +03:00
|
|
|
CSYNC *csync = (CSYNC*)*state;
|
2012-10-19 12:57:40 +04:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = csync_destroy(csync);
|
|
|
|
|
|
|
|
rc = system("rm -rf /tmp/check_csync");
|
|
|
|
assert_int_equal(rc, 0);
|
|
|
|
|
|
|
|
rc = system("rm -rf /tmp/check_csync1");
|
|
|
|
assert_int_equal(rc, 0);
|
2008-05-09 12:57:08 +04:00
|
|
|
|
2012-10-19 12:57:40 +04:00
|
|
|
*state = NULL;
|
2016-09-02 16:49:54 +03:00
|
|
|
|
|
|
|
return 0;
|
2008-05-09 12:57:08 +04:00
|
|
|
}
|
|
|
|
|
2012-10-19 12:57:40 +04:00
|
|
|
static void check_csync_init(void **state)
|
|
|
|
{
|
2017-08-14 17:19:52 +03:00
|
|
|
CSYNC *csync = (CSYNC*)*state;
|
2008-05-09 11:54:08 +04:00
|
|
|
|
2016-09-02 16:49:54 +03:00
|
|
|
csync_init(csync, "");
|
2008-05-09 11:54:08 +04:00
|
|
|
|
2012-10-19 12:57:40 +04:00
|
|
|
assert_int_equal(csync->status & CSYNC_STATUS_INIT, 1);
|
2016-09-02 16:49:54 +03:00
|
|
|
|
2012-10-19 12:57:40 +04:00
|
|
|
}
|
2008-05-09 11:54:08 +04:00
|
|
|
|
2012-10-19 12:57:40 +04:00
|
|
|
int torture_run_tests(void)
|
|
|
|
{
|
2016-09-02 16:49:54 +03:00
|
|
|
const struct CMUnitTest tests[] = {
|
|
|
|
cmocka_unit_test_setup_teardown(check_csync_init, setup, teardown),
|
|
|
|
cmocka_unit_test_setup_teardown(check_csync_init, setup_module, teardown),
|
2012-10-19 12:57:40 +04:00
|
|
|
};
|
2008-05-09 11:54:08 +04:00
|
|
|
|
2016-09-02 16:49:54 +03:00
|
|
|
return cmocka_run_group_tests(tests, NULL, NULL);
|
2008-05-09 11:54:08 +04:00
|
|
|
}
|
|
|
|
|