nextcloud-desktop/csync/tests/std_tests/check_std_c_str.c

132 lines
3.2 KiB
C
Raw Normal View History

/*
* 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-02-27 20:56:47 +03:00
#include <errno.h>
#include <stdlib.h>
2008-02-27 20:56:47 +03:00
#include <string.h>
#include <stdio.h>
2008-02-27 20:56:47 +03:00
#include "torture.h"
2008-02-27 20:56:47 +03:00
#include "std/c_string.h"
static void check_c_streq_equal(void **state)
2008-02-27 20:56:47 +03:00
{
(void) state; /* unused */
2008-02-27 20:56:47 +03:00
assert_true(c_streq("test", "test"));
2008-02-27 20:56:47 +03:00
}
static void check_c_streq_not_equal(void **state)
2008-02-27 20:56:47 +03:00
{
(void) state; /* unused */
2008-02-27 20:56:47 +03:00
assert_false(c_streq("test", "test2"));
}
2008-02-27 20:56:47 +03:00
static void check_c_streq_null(void **state)
{
(void) state; /* unused */
2008-02-27 20:56:47 +03:00
assert_false(c_streq(NULL, "test"));
assert_false(c_streq("test", NULL));
assert_false(c_streq(NULL, NULL));
2008-02-27 20:56:47 +03:00
}
static void check_c_strlist_new(void **state)
2008-02-27 20:56:47 +03:00
{
c_strlist_t *strlist = NULL;
2008-02-27 20:56:47 +03:00
(void) state; /* unused */
2008-02-27 20:56:47 +03:00
strlist = c_strlist_new(42);
assert_non_null(strlist);
assert_int_equal(strlist->size, 42);
assert_int_equal(strlist->count, 0);
c_strlist_destroy(strlist);
2008-02-27 20:56:47 +03:00
}
static void check_c_strlist_add(void **state)
2008-02-27 20:56:47 +03:00
{
int rc;
size_t i = 0;
c_strlist_t *strlist = NULL;
(void) state; /* unused */
2008-02-27 20:56:47 +03:00
strlist = c_strlist_new(42);
assert_non_null(strlist);
assert_int_equal(strlist->size, 42);
assert_int_equal(strlist->count, 0);
2008-02-27 20:56:47 +03:00
for (i = 0; i < strlist->size; i++) {
rc = c_strlist_add(strlist, (char *) "foobar");
assert_int_equal(rc, 0);
}
2008-02-27 20:56:47 +03:00
assert_int_equal(strlist->count, 42);
assert_string_equal(strlist->vector[0], "foobar");
assert_string_equal(strlist->vector[41], "foobar");
2008-02-27 20:56:47 +03:00
c_strlist_destroy(strlist);
2008-02-27 20:56:47 +03:00
}
static void check_c_strlist_expand(void **state)
2008-03-20 12:34:58 +03:00
{
c_strlist_t *strlist;
size_t i = 0;
int rc;
(void) state; /* unused */
2008-03-20 12:34:58 +03:00
strlist = c_strlist_new(42);
assert_non_null(strlist);
assert_int_equal(strlist->size, 42);
assert_int_equal(strlist->count, 0);
2008-03-20 12:34:58 +03:00
strlist = c_strlist_expand(strlist, 84);
assert_non_null(strlist);
assert_int_equal(strlist->size, 84);
2008-03-20 12:34:58 +03:00
for (i = 0; i < strlist->size; i++) {
rc = c_strlist_add(strlist, (char *) "foobar");
assert_int_equal(rc, 0);
}
2008-03-20 12:34:58 +03:00
c_strlist_destroy(strlist);
2008-03-20 12:34:58 +03:00
}
2008-02-27 20:56:47 +03:00
int torture_run_tests(void)
{
const UnitTest tests[] = {
unit_test(check_c_streq_equal),
unit_test(check_c_streq_not_equal),
unit_test(check_c_streq_null),
unit_test(check_c_strlist_new),
unit_test(check_c_strlist_add),
unit_test(check_c_strlist_expand),
};
return run_tests(tests);
2008-02-27 20:56:47 +03:00
}