Add more tests for VFS
[midnight-commander.git] / lib / tests / vfs / vfs_s_get_path_mangle.c
blob319a462fb8d09bf356975c3fdd626c0cbead885e
1 /* lib/vfs - test vfs_s_get_path_mangle() function
3 Copyright (C) 2011 Free Software Foundation, Inc.
5 Written by:
6 Slava Zanko <slavazanko@gmail.com>, 2011
8 This program is free software; you can redistribute it and/or
9 modify it under the terms of the GNU Library General Public License
10 as published by the Free Software Foundation; either version 2 of
11 the License, or (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU Library General Public License for more details.
18 You should have received a copy of the GNU Library General Public
19 License along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23 #define TEST_SUITE_NAME "/lib/vfs"
25 #include <check.h>
28 #include "lib/global.h"
29 #include "lib/strutil.h"
30 #include "lib/vfs/direntry.c" /* for testing static methods */
32 #include "src/vfs/local/local.c"
34 #define ARCH_NAME "/path/to/some/file.ext"
35 #define ETALON_PATH "path/to/test1_file.ext"
36 #define ETALON_VFS_NAME "#test2:user:pass@host.net"
38 struct vfs_s_subclass test_subclass1, test_subclass2, test_subclass3;
39 struct vfs_class vfs_test_ops1, vfs_test_ops2, vfs_test_ops3;
41 static int
42 test1_mock_open_archive(struct vfs_class *me, struct vfs_s_super *super,
43 const char *archive_name, char *op)
45 struct vfs_s_inode *root;
47 (void) op;
49 fail_unless(strcmp(ETALON_VFS_NAME ARCH_NAME, archive_name) == 0,
50 "etalon(%s) doesn't equal to actual(%s)", ETALON_VFS_NAME ARCH_NAME, archive_name);
52 super->name = g_strdup (archive_name);
53 super->data = g_new (char *, 1);
54 root = vfs_s_new_inode (me, super, NULL);
55 super->root = root;
57 return 0;
60 static int
61 test1_mock_archive_same (struct vfs_class *me, struct vfs_s_super *super,
62 const char *archive_name, char *op, void *cookie)
64 (void) me;
65 (void) super;
66 (void) op;
67 (void) cookie;
69 if (strcmp(ARCH_NAME, archive_name) != 0)
70 return 0;
71 return 1;
74 static void
75 setup (void)
78 str_init_strings (NULL);
80 vfs_init ();
81 init_localfs ();
82 vfs_setup_work_dir ();
85 test_subclass1.flags = VFS_S_REMOTE;
86 vfs_s_init_class (&vfs_test_ops1, &test_subclass1);
88 vfs_test_ops1.name = "testfs1";
89 vfs_test_ops1.flags = VFSF_NOLINKS;
90 vfs_test_ops1.prefix = "test1:";
91 vfs_register_class (&vfs_test_ops1);
92 test_subclass1.open_archive = test1_mock_open_archive;
93 test_subclass1.archive_same = test1_mock_archive_same;
94 test_subclass1.archive_check = NULL;
96 vfs_s_init_class (&vfs_test_ops2, &test_subclass2);
97 vfs_test_ops2.name = "testfs2";
98 vfs_test_ops2.prefix = "test2:";
99 vfs_register_class (&vfs_test_ops2);
101 vfs_s_init_class (&vfs_test_ops3, &test_subclass3);
102 vfs_test_ops3.name = "testfs3";
103 vfs_test_ops3.prefix = "test3:";
104 vfs_register_class (&vfs_test_ops3);
107 static void
108 teardown (void)
110 vfs_shut ();
114 void
115 vfs_die (const char *m)
117 printf("VFS_DIE: '%s'\n", m);
120 /* --------------------------------------------------------------------------------------------- */
122 START_TEST (test_vfs_s_get_path_mangle)
124 struct vfs_s_super *archive;
126 const char *result;
127 char *path = g_strdup(ETALON_VFS_NAME ARCH_NAME"#test1:/"ETALON_PATH);
129 struct vfs_class *me;
130 me = vfs_get_class(path);
132 result = vfs_s_get_path_mangle (me, path, &archive, 0);
134 fail_unless(strcmp(ETALON_PATH, result) == 0,
135 "expected(%s) doesn't equal to actual(%s)", ETALON_PATH, result);
137 fail_unless(strcmp(ETALON_VFS_NAME ARCH_NAME,archive->name) == 0,
138 "expected(%s) doesn't equal to actual(%s)", ETALON_VFS_NAME ARCH_NAME, archive->name);
140 g_free(path);
143 END_TEST
145 /* --------------------------------------------------------------------------------------------- */
148 main (void)
150 int number_failed;
152 Suite *s = suite_create (TEST_SUITE_NAME);
153 TCase *tc_core = tcase_create ("Core");
154 SRunner *sr;
156 tcase_add_checked_fixture (tc_core, setup, teardown);
158 /* Add new tests here: *************** */
159 tcase_add_test (tc_core, test_vfs_s_get_path_mangle);
160 /* *********************************** */
162 suite_add_tcase (s, tc_core);
163 sr = srunner_create (s);
164 srunner_set_log (sr, "get_vfs_class.log");
165 srunner_run_all (sr, CK_NORMAL);
166 number_failed = srunner_ntests_failed (sr);
167 srunner_free (sr);
168 return (number_failed == 0) ? 0 : 1;
171 /* --------------------------------------------------------------------------------------------- */