This source file includes following definitions.
- test1_mock_open_archive
- test1_mock_archive_same
- setup
- teardown
- vfs_die
- START_TEST
- main
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 #define TEST_SUITE_NAME "/lib/vfs"
27
28 #include "tests/mctest.h"
29
30 #include "lib/strutil.h"
31 #include "lib/vfs/direntry.c"
32
33 #include "src/vfs/local/local.c"
34
35 #define ARCH_NAME "/path/to/some/file.ext"
36 #define ETALON_PATH "path/to/test1_file.ext"
37 #define ETALON_VFS_NAME "#test2:user:pass@host.net"
38 #define ETALON_VFS_URL_NAME "test2://user:pass@host.net"
39
40 static struct vfs_s_subclass test_subclass1, test_subclass2, test_subclass3;
41 static struct vfs_class *vfs_test_ops1 = VFS_CLASS (&test_subclass1);
42 static struct vfs_class *vfs_test_ops2 = VFS_CLASS (&test_subclass2);
43 static struct vfs_class *vfs_test_ops3 = VFS_CLASS (&test_subclass3);
44
45
46
47 static int
48 test1_mock_open_archive (struct vfs_s_super *super, const vfs_path_t *vpath,
49 const vfs_path_element_t *vpath_element)
50 {
51 struct vfs_s_inode *root;
52
53 mctest_assert_str_eq (vfs_path_as_str (vpath), "/" ETALON_VFS_URL_NAME ARCH_NAME);
54
55 super->name = g_strdup (vfs_path_as_str (vpath));
56 root = vfs_s_new_inode (vpath_element->class, super, NULL);
57 super->root = root;
58 return 0;
59 }
60
61
62
63 static int
64 test1_mock_archive_same (const vfs_path_element_t *vpath_element, struct vfs_s_super *super,
65 const vfs_path_t *vpath, void *cookie)
66 {
67 const char *path;
68
69 (void) vpath_element;
70 (void) super;
71 (void) cookie;
72
73 path = vfs_path_get_last_path_str (vpath);
74 return (strcmp (ARCH_NAME, path) != 0 ? 0 : 1);
75 }
76
77
78
79
80 static void
81 setup (void)
82 {
83 str_init_strings (NULL);
84
85 vfs_init ();
86 vfs_init_localfs ();
87 vfs_setup_work_dir ();
88
89 vfs_init_subclass (&test_subclass1, "testfs1", VFSF_NOLINKS | VFSF_REMOTE, "test1");
90 test_subclass1.open_archive = test1_mock_open_archive;
91 test_subclass1.archive_same = test1_mock_archive_same;
92 test_subclass1.archive_check = NULL;
93 vfs_register_class (vfs_test_ops1);
94
95 vfs_init_subclass (&test_subclass2, "testfs2", VFSF_UNKNOWN, "test2");
96 vfs_register_class (vfs_test_ops2);
97
98 vfs_init_subclass (&test_subclass3, "testfs3", VFSF_UNKNOWN, "test3");
99 vfs_register_class (vfs_test_ops3);
100 }
101
102
103
104
105 static void
106 teardown (void)
107 {
108 vfs_shut ();
109 str_uninit_strings ();
110 }
111
112 void
113 vfs_die (const char *m)
114 {
115 printf ("VFS_DIE: '%s'\n", m);
116 }
117
118
119
120
121 START_TEST (test_vfs_s_get_path)
122 {
123
124 struct vfs_s_super *archive;
125 const char *result;
126
127
128 vfs_path_t *vpath = vfs_path_from_str_flags (
129 "/" ETALON_VFS_NAME ARCH_NAME "#test1:/" ETALON_PATH, VPF_USE_DEPRECATED_PARSER);
130
131 result = vfs_s_get_path (vpath, &archive, 0);
132
133
134 mctest_assert_str_eq (result, ETALON_PATH);
135 mctest_assert_str_eq (archive->name, "/" ETALON_VFS_URL_NAME ARCH_NAME);
136
137 g_free (vpath);
138 }
139 END_TEST
140
141
142
143 int
144 main (void)
145 {
146 TCase *tc_core;
147
148 tc_core = tcase_create ("Core");
149
150 tcase_add_checked_fixture (tc_core, setup, teardown);
151
152
153 tcase_add_test (tc_core, test_vfs_s_get_path);
154
155
156 return mctest_run_all (tc_core);
157 }
158
159