mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Add tests for GPathBuf
This commit is contained in:
parent
f60f432b6c
commit
2015723a4f
@ -476,6 +476,230 @@ test_build_pathv (void)
|
||||
check_string (g_build_pathv ("::", args), "::::x::y::z::::");
|
||||
}
|
||||
|
||||
#ifndef g_assert_path_buf_equal
|
||||
#define g_assert_path_buf_equal(p1,p2) \
|
||||
G_STMT_START { \
|
||||
if (g_path_buf_equal ((p1), (p2))) ; else { \
|
||||
char *__p1 = g_path_buf_to_path ((p1)); \
|
||||
char *__p2 = g_path_buf_to_path ((p2)); \
|
||||
g_assertion_message_cmpstr (G_LOG_DOMAIN, __FILE__, __LINE__, G_STRFUNC, \
|
||||
#p1 " == " #p2, __p1, "==", __p2); \
|
||||
g_free (__p1); \
|
||||
g_free (__p2); \
|
||||
} \
|
||||
} G_STMT_END
|
||||
#endif
|
||||
|
||||
static void
|
||||
test_pathbuf_init (void)
|
||||
{
|
||||
#ifdef G_OS_UNIX
|
||||
GPathBuf buf, cmp;
|
||||
char *path;
|
||||
|
||||
g_test_message ("Initializing empty path buf");
|
||||
g_path_buf_init (&buf);
|
||||
g_assert_null (g_path_buf_to_path (&buf));
|
||||
g_path_buf_clear (&buf);
|
||||
|
||||
g_test_message ("Initializing with empty path");
|
||||
g_path_buf_init_from_path (&buf, NULL);
|
||||
g_assert_null (g_path_buf_to_path (&buf));
|
||||
g_path_buf_clear (&buf);
|
||||
|
||||
g_test_message ("Initializing with full path");
|
||||
g_path_buf_init_from_path (&buf, "/usr/bin/echo");
|
||||
path = g_path_buf_clear_to_path (&buf);
|
||||
g_assert_nonnull (path);
|
||||
g_assert_cmpstr (path, ==, "/usr/bin/echo");
|
||||
g_free (path);
|
||||
|
||||
g_test_message ("Initializing with no path");
|
||||
g_path_buf_init (&buf);
|
||||
g_assert_null (g_path_buf_to_path (&buf));
|
||||
g_path_buf_clear (&buf);
|
||||
|
||||
g_test_message ("Allocating GPathBuf on the heap");
|
||||
GPathBuf *allocated = g_path_buf_new ();
|
||||
g_assert_null (g_path_buf_to_path (allocated));
|
||||
g_path_buf_clear (allocated);
|
||||
|
||||
g_path_buf_init_from_path (allocated, "/bin/sh");
|
||||
path = g_path_buf_to_path (allocated);
|
||||
g_assert_cmpstr (path, ==, "/bin/sh");
|
||||
g_free (path);
|
||||
|
||||
g_path_buf_clear (allocated);
|
||||
g_assert_null (g_path_buf_to_path (allocated));
|
||||
g_assert_null (g_path_buf_free_to_path (allocated));
|
||||
|
||||
g_path_buf_init_from_path (&buf, "/usr/bin/bash");
|
||||
allocated = g_path_buf_copy (&buf);
|
||||
g_assert_path_buf_equal (allocated, allocated);
|
||||
g_assert_path_buf_equal (allocated, &buf);
|
||||
g_path_buf_clear (&buf);
|
||||
|
||||
g_path_buf_init_from_path (&cmp, "/usr/bin/bash");
|
||||
g_assert_path_buf_equal (allocated, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
|
||||
g_path_buf_free (allocated);
|
||||
#elif defined(G_OS_WIN32)
|
||||
GPathBuf buf;
|
||||
char *path;
|
||||
|
||||
g_path_buf_init_from_path (&buf, "C:\\windows\\system32.dll");
|
||||
path = g_path_buf_clear_to_path (&buf);
|
||||
g_assert_nonnull (path);
|
||||
g_assert_cmpstr (path, ==, "C:\\windows\\system32.dll");
|
||||
g_free (path);
|
||||
|
||||
g_path_buf_init (&buf);
|
||||
g_assert_null (g_path_buf_to_path (&buf));
|
||||
g_path_buf_clear (&buf);
|
||||
|
||||
g_test_message ("Allocating GPathBuf on the heap");
|
||||
GPathBuf *allocated = g_path_buf_new ();
|
||||
g_assert_null (g_path_buf_to_path (allocated));
|
||||
g_path_buf_clear (allocated);
|
||||
|
||||
g_path_buf_init_from_path (allocated, "C:\\does-not-exist.txt");
|
||||
path = g_path_buf_to_path (allocated);
|
||||
g_assert_cmpstr (path, ==, "C:\\does-not-exist.txt");
|
||||
g_free (path);
|
||||
|
||||
g_path_buf_clear (allocated);
|
||||
g_assert_null (g_path_buf_to_path (allocated));
|
||||
g_assert_null (g_path_buf_free_to_path (allocated));
|
||||
#else
|
||||
g_test_skip ("Unsupported platform"):
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
test_pathbuf_push_pop (void)
|
||||
{
|
||||
#ifdef G_OS_UNIX
|
||||
GPathBuf buf, cmp;
|
||||
|
||||
g_test_message ("Pushing relative path component");
|
||||
g_path_buf_init_from_path (&buf, "/tmp");
|
||||
g_path_buf_push (&buf, ".X11-unix/X0");
|
||||
|
||||
g_path_buf_init_from_path (&cmp, "/tmp/.X11-unix/X0");
|
||||
g_assert_path_buf_equal (&buf, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
|
||||
g_test_message ("Pushing absolute path component");
|
||||
g_path_buf_push (&buf, "/etc/locale.conf");
|
||||
g_path_buf_init_from_path (&cmp, "/etc/locale.conf");
|
||||
g_assert_path_buf_equal (&buf, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
g_path_buf_clear (&buf);
|
||||
|
||||
g_test_message ("Popping a path component");
|
||||
g_path_buf_init_from_path (&buf, "/bin/sh");
|
||||
|
||||
g_assert_true (g_path_buf_pop (&buf));
|
||||
g_path_buf_init_from_path (&cmp, "/bin");
|
||||
g_assert_path_buf_equal (&buf, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
|
||||
g_assert_true (g_path_buf_pop (&buf));
|
||||
g_path_buf_init_from_path (&cmp, "/");
|
||||
g_assert_path_buf_equal (&buf, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
|
||||
g_test_message ("Can't pop the last element of a path buffer");
|
||||
g_assert_false (g_path_buf_pop (&buf));
|
||||
|
||||
g_path_buf_clear (&buf);
|
||||
g_path_buf_clear (&cmp);
|
||||
#elif defined(G_OS_WIN32)
|
||||
GPathBuf buf, cmp;
|
||||
|
||||
g_test_message ("Pushing relative path component");
|
||||
g_path_buf_init_from_path (&buf, "C:\\");
|
||||
g_path_buf_push (&buf, "windows");
|
||||
g_path_buf_push (&buf, "system32.dll");
|
||||
|
||||
g_test_message ("Popping a path component");
|
||||
g_path_buf_init_from_path (&cmp, "C:\\windows\\system32.dll");
|
||||
g_assert_path_buf_equal (&buf, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
|
||||
g_assert_true (g_path_buf_pop (&buf));
|
||||
g_path_buf_init_from_path (&cmp, "C:\\windows");
|
||||
g_assert_path_buf_equal (&buf, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
|
||||
g_assert_true (g_path_buf_pop (&buf));
|
||||
g_path_buf_init_from_path (&cmp, "C:");
|
||||
g_assert_path_buf_equal (&buf, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
|
||||
g_test_message ("Can't pop the last element of a path buffer");
|
||||
g_assert_false (g_path_buf_pop (&buf));
|
||||
|
||||
g_path_buf_clear (&buf);
|
||||
g_path_buf_clear (&cmp);
|
||||
#else
|
||||
g_test_skip ("Unsupported platform"):
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
test_pathbuf_filename_extension (void)
|
||||
{
|
||||
#ifdef G_OS_UNIX
|
||||
GPathBuf buf, cmp;
|
||||
|
||||
g_path_buf_init (&buf);
|
||||
g_assert_false (g_path_buf_set_filename (&buf, "foo"));
|
||||
g_assert_false (g_path_buf_set_extension (&buf, "txt"));
|
||||
g_assert_null (g_path_buf_to_path (&buf));
|
||||
g_path_buf_clear (&buf);
|
||||
|
||||
g_path_buf_init_from_path (&buf, "/");
|
||||
g_path_buf_set_filename (&buf, "bar");
|
||||
|
||||
g_path_buf_init_from_path (&cmp, "/bar");
|
||||
g_assert_path_buf_equal (&buf, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
|
||||
g_path_buf_set_filename (&buf, "baz.txt");
|
||||
g_path_buf_init_from_path (&cmp, "/baz.txt");
|
||||
g_assert_path_buf_equal (&buf, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
|
||||
g_path_buf_push (&buf, "/usr");
|
||||
g_path_buf_push (&buf, "lib64");
|
||||
g_path_buf_push (&buf, "libc");
|
||||
g_assert_true (g_path_buf_set_extension (&buf, "so.6"));
|
||||
|
||||
g_path_buf_init_from_path (&cmp, "/usr/lib64/libc.so.6");
|
||||
g_assert_path_buf_equal (&buf, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
|
||||
g_path_buf_clear (&buf);
|
||||
#elif defined(G_OS_WIN32)
|
||||
GPathBuf buf, cmp;
|
||||
|
||||
g_path_buf_init_from_path (&buf, "C:\\");
|
||||
g_path_buf_push (&buf, "windows");
|
||||
g_path_buf_push (&buf, "system32");
|
||||
g_assert_true (g_path_buf_set_extension (&buf, "dll"));
|
||||
|
||||
g_path_buf_init_from_path (&cmp, "C:\\windows\\system32.dll");
|
||||
g_assert_path_buf_equal (&buf, &cmp);
|
||||
g_path_buf_clear (&cmp);
|
||||
|
||||
g_path_buf_clear (&buf);
|
||||
#else
|
||||
g_test_skip ("Unsupported platform"):
|
||||
#endif
|
||||
}
|
||||
|
||||
static void
|
||||
test_build_filename (void)
|
||||
{
|
||||
@ -2638,6 +2862,9 @@ main (int argc,
|
||||
g_test_add_func ("/fileutils/build-pathv", test_build_pathv);
|
||||
g_test_add_func ("/fileutils/build-filename", test_build_filename);
|
||||
g_test_add_func ("/fileutils/build-filenamev", test_build_filenamev);
|
||||
g_test_add_func ("/fileutils/pathbuf/init", test_pathbuf_init);
|
||||
g_test_add_func ("/fileutils/pathbuf/push-pop", test_pathbuf_push_pop);
|
||||
g_test_add_func ("/fileutils/pathbuf/filename-extension", test_pathbuf_filename_extension);
|
||||
g_test_add_func ("/fileutils/mkdir-with-parents", test_mkdir_with_parents);
|
||||
g_test_add_func ("/fileutils/mkdir-with-parents-permission", test_mkdir_with_parents_permission);
|
||||
g_test_add_func ("/fileutils/format-size-for-display", test_format_size_for_display);
|
||||
|
Loading…
Reference in New Issue
Block a user