1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
#include <stic.h>
#include <string.h> /* strdup() */
#include <stdlib.h> /* free() */
#include "../../src/utils/path.h"
/* XXX: get_ext and split_ext share test data. */
#define TEST_EXT(full, expected_ext, expected_root_len) \
int root_len; \
const char *ext; \
char *const name = strdup(full); \
\
split_ext(name, &root_len, &ext); \
\
assert_string_equal(expected_ext, ext); \
assert_int_equal((expected_root_len), root_len); \
\
free(name);
TEST(empty_string)
{
TEST_EXT("", "", 0);
}
TEST(empty_extension)
{
TEST_EXT("file.", "", 4);
}
TEST(empty_root)
{
TEST_EXT(".ext", "", 4);
}
TEST(empty_root_double_extension)
{
TEST_EXT(".ext1.ext2", "ext2", 5);
}
TEST(filename_no_extension)
{
TEST_EXT("withoutext", "", 10);
}
TEST(filename_unary_extension)
{
TEST_EXT("with.ext", "ext", 4);
}
TEST(filename_binary_extensions)
{
TEST_EXT("with.two.ext", "ext", 8);
}
TEST(path_no_extension)
{
TEST_EXT("/home/user.name/file", "", 20);
}
TEST(path_unary_extension)
{
TEST_EXT("/home/user.name/file.ext", "ext", 20);
}
TEST(path_binary_extensions)
{
TEST_EXT("/home/user.name/file.double.ext", "ext", 27);
}
/* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */
/* vim: set cinoptions+=t0 filetype=c : */
|