1 /* lib/vfs - test vfs_s_get_path_mangle() function
3 Copyright (C) 2011 Free Software Foundation, Inc.
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"
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"
37 #define ETALON_VFS_URL_NAME "test2://user:pass@host.net"
39 struct vfs_s_subclass test_subclass1
, test_subclass2
, test_subclass3
;
40 struct vfs_class vfs_test_ops1
, vfs_test_ops2
, vfs_test_ops3
;
43 test1_mock_open_archive(struct vfs_s_super
*super
, const vfs_path_t
*vpath
, const vfs_path_element_t
*vpath_element
)
45 struct vfs_s_inode
*root
;
46 char *spath
= vfs_path_to_str (vpath
);
48 fail_unless(strcmp("/" ETALON_VFS_URL_NAME ARCH_NAME
, spath
) == 0,
49 "etalon(%s) doesn't equal to actual(%s)", "/" ETALON_VFS_URL_NAME ARCH_NAME
, spath
);
51 super
->name
= g_strdup (spath
);
52 super
->data
= g_new (char *, 1);
53 root
= vfs_s_new_inode (vpath_element
->class, super
, NULL
);
60 test1_mock_archive_same (const vfs_path_element_t
*vpath_element
, struct vfs_s_super
*super
,
61 const vfs_path_t
*vpath
, void *cookie
)
63 vfs_path_element_t
*path_element
= vfs_path_get_by_index(vpath
, -1);
69 if (strcmp(ARCH_NAME
, path_element
->path
) != 0)
78 str_init_strings (NULL
);
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
);
111 str_uninit_strings ();
116 vfs_die (const char *m
)
118 printf("VFS_DIE: '%s'\n", m
);
121 /* --------------------------------------------------------------------------------------------- */
123 START_TEST (test_vfs_s_get_path_mangle
)
125 struct vfs_s_super
*archive
;
128 vfs_path_t
*vpath
= vfs_path_from_str("/" ETALON_VFS_NAME ARCH_NAME
"#test1:/" ETALON_PATH
);
130 result
= vfs_s_get_path_mangle (vpath
, &archive
, 0);
132 fail_unless(strcmp(ETALON_PATH
, result
) == 0,
133 "expected(%s) doesn't equal to actual(%s)", ETALON_PATH
, result
);
135 fail_unless(strcmp("/" ETALON_VFS_URL_NAME ARCH_NAME
,archive
->name
) == 0,
136 "expected(%s) doesn't equal to actual(%s)", "/" ETALON_VFS_URL_NAME ARCH_NAME
, archive
->name
);
143 /* --------------------------------------------------------------------------------------------- */
150 Suite
*s
= suite_create (TEST_SUITE_NAME
);
151 TCase
*tc_core
= tcase_create ("Core");
154 tcase_add_checked_fixture (tc_core
, setup
, teardown
);
156 /* Add new tests here: *************** */
157 tcase_add_test (tc_core
, test_vfs_s_get_path_mangle
);
158 /* *********************************** */
160 suite_add_tcase (s
, tc_core
);
161 sr
= srunner_create (s
);
162 srunner_set_log (sr
, "vfs_s_get_path_mangle.log");
163 srunner_run_all (sr
, CK_NORMAL
);
164 number_failed
= srunner_ntests_failed (sr
);
166 return (number_failed
== 0) ? 0 : 1;
169 /* --------------------------------------------------------------------------------------------- */