| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- #include <config.h>
- #include <glib.h>
- #include <string.h>
- #include <stdio.h>
- #ifdef HAVE_UNISTD_H
- #include <unistd.h>
- #endif
- #ifdef G_OS_UNIX
- #include <pthread.h>
- #endif
- #include "test.h"
- /* This test is just to be used with valgrind */
- RESULT
- test_dir ()
- {
- GDir *dir;
- GError *error;
- const gchar *name;
- /*
- dir = g_dir_open (NULL, 0, NULL);
- */
- dir = g_dir_open ("", 0, NULL);
- if (dir != NULL)
- return FAILED ("1 Should be an error");
- dir = g_dir_open ("", 9, NULL);
- if (dir != NULL)
- return FAILED ("2 Should be an error");
- error = NULL;
- dir = g_dir_open (".ljasdslakjd", 9, &error);
- if (dir != NULL)
- return FAILED ("3 opendir should fail");
- if (error == NULL)
- return FAILED ("4 got no error");
- g_error_free (error);
- error = NULL;
- dir = g_dir_open (g_get_tmp_dir (), 9, &error);
- if (dir == NULL)
- return FAILED ("5 opendir should succeed");
- if (error != NULL)
- return FAILED ("6 got an error");
- name = NULL;
- name = g_dir_read_name (dir);
- if (name == NULL)
- return FAILED ("7 didn't read a file name");
- while ((name = g_dir_read_name (dir)) != NULL) {
- if (strcmp (name, ".") == 0)
- return FAILED (". directory found");
- if (strcmp (name, "..") == 0)
- return FAILED (".. directory found");
- }
- g_dir_close (dir);
- return OK;
- }
- static Test dir_tests [] = {
- {"g_dir_*", test_dir},
- {NULL, NULL}
- };
- DEFINE_TEST_GROUP_INIT(dir_tests_init, dir_tests)
|