2 lib/vfs - test vfs_parse_ls_lga() functionality
4 Copyright (C) 2011-2017
5 Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2011, 2013
10 This file is part of the Midnight Commander.
12 The Midnight Commander is free software: you can redistribute it
13 and/or modify it under the terms of the GNU General Public License as
14 published by the Free Software Foundation, either version 3 of the License,
15 or (at your option) any later version.
17 The Midnight Commander is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with this program. If not, see <http://www.gnu.org/licenses/>.
26 #define TEST_SUITE_NAME "/lib/vfs"
28 #include "tests/mctest.h"
32 #include "lib/vfs/utilvfs.h"
33 #include "lib/vfs/xdirentry.h"
34 #include "lib/strutil.h"
36 #include "src/vfs/local/local.c"
39 struct vfs_s_subclass test_subclass1
;
40 struct vfs_class vfs_test_ops1
;
42 struct vfs_s_entry
*vfs_root_entry
;
43 static struct vfs_s_inode
*vfs_root_inode
;
44 static struct vfs_s_super
*vfs_test_super
;
47 void message (int flags
, const char *title
, const char *text
, ...) G_GNUC_PRINTF (3, 4);
50 /* --------------------------------------------------------------------------------------------- */
56 static struct stat initstat
;
58 str_init_strings (NULL
);
62 vfs_setup_work_dir ();
64 test_subclass1
.flags
= VFS_S_REMOTE
;
65 vfs_s_init_class (&vfs_test_ops1
, &test_subclass1
);
66 vfs_test_ops1
.name
= "testfs1";
67 vfs_test_ops1
.flags
= VFSF_NOLINKS
;
68 vfs_test_ops1
.prefix
= "test1:";
69 vfs_register_class (&vfs_test_ops1
);
71 vfs_test_super
= g_new0 (struct vfs_s_super
, 1);
72 vfs_test_super
->me
= &vfs_test_ops1
;
74 vfs_root_inode
= vfs_s_new_inode (&vfs_test_ops1
, vfs_test_super
, &initstat
);
75 vfs_root_entry
= vfs_s_new_entry (&vfs_test_ops1
, "/", vfs_root_inode
);
78 /* --------------------------------------------------------------------------------------------- */
84 vfs_s_free_entry (&vfs_test_ops1
, vfs_root_entry
);
86 str_uninit_strings ();
89 /* --------------------------------------------------------------------------------------------- */
93 message (int flags
, const char *title
, const char *text
, ...)
102 p
= g_strdup_vprintf (text
, ap
);
104 printf ("message(): %s\n", p
);
108 /* --------------------------------------------------------------------------------------------- */
111 fill_stat_struct (struct stat
*etalon_stat
, int iterator
)
114 #ifdef HAVE_STRUCT_STAT_ST_MTIM
115 etalon_stat
->st_atim
.tv_nsec
= etalon_stat
->st_mtim
.tv_nsec
= etalon_stat
->st_ctim
.tv_nsec
= 0;
121 etalon_stat
->st_dev
= 0;
122 etalon_stat
->st_ino
= 0;
123 etalon_stat
->st_mode
= 0x41fd;
124 etalon_stat
->st_nlink
= 10;
125 etalon_stat
->st_uid
= 500;
126 etalon_stat
->st_gid
= 500;
127 #ifdef HAVE_STRUCT_STAT_ST_RDEV
128 etalon_stat
->st_rdev
= 0;
130 etalon_stat
->st_size
= 4096;
131 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
132 etalon_stat
->st_blksize
= 512;
134 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
135 etalon_stat
->st_blocks
= 8;
137 etalon_stat
->st_atime
= 1308838140;
138 etalon_stat
->st_mtime
= 1308838140;
139 etalon_stat
->st_ctime
= 1308838140;
142 etalon_stat
->st_dev
= 0;
143 etalon_stat
->st_ino
= 0;
144 etalon_stat
->st_mode
= 0xa1ff;
145 etalon_stat
->st_nlink
= 10;
146 etalon_stat
->st_uid
= 500;
147 etalon_stat
->st_gid
= 500;
148 #ifdef HAVE_STRUCT_STAT_ST_RDEV
149 etalon_stat
->st_rdev
= 0;
151 etalon_stat
->st_size
= 11;
152 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
153 etalon_stat
->st_blksize
= 512;
155 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
156 etalon_stat
->st_blocks
= 1;
158 etalon_stat
->st_atime
= 1268431200;
159 etalon_stat
->st_mtime
= 1268431200;
160 etalon_stat
->st_ctime
= 1268431200;
163 etalon_stat
->st_dev
= 0;
164 etalon_stat
->st_ino
= 0;
165 etalon_stat
->st_mode
= 0x41fd;
166 etalon_stat
->st_nlink
= 10;
167 etalon_stat
->st_uid
= 500;
168 etalon_stat
->st_gid
= 500;
169 #ifdef HAVE_STRUCT_STAT_ST_RDEV
170 etalon_stat
->st_rdev
= 0;
172 etalon_stat
->st_size
= 4096;
173 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
174 etalon_stat
->st_blksize
= 512;
176 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
177 etalon_stat
->st_blocks
= 8;
179 etalon_stat
->st_atime
= 1308838140;
180 etalon_stat
->st_mtime
= 1308838140;
181 etalon_stat
->st_ctime
= 1308838140;
184 etalon_stat
->st_dev
= 0;
185 etalon_stat
->st_ino
= 0;
186 etalon_stat
->st_mode
= 0x41fd;
187 etalon_stat
->st_nlink
= 10;
188 etalon_stat
->st_uid
= 500;
189 etalon_stat
->st_gid
= 500;
190 #ifdef HAVE_STRUCT_STAT_ST_RDEV
191 etalon_stat
->st_rdev
= 0;
193 etalon_stat
->st_size
= 4096;
194 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
195 etalon_stat
->st_blksize
= 512;
197 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
198 etalon_stat
->st_blocks
= 8;
200 etalon_stat
->st_atime
= 1308838140;
201 etalon_stat
->st_mtime
= 1308838140;
202 etalon_stat
->st_ctime
= 1308838140;
209 /* --------------------------------------------------------------------------------------------- */
211 /* @DataSource("test_vfs_parse_ls_lga_ds") */
213 static const struct test_vfs_parse_ls_lga_ds
215 const char *input_string
;
217 const char *expected_filename
;
218 const char *expected_linkname
;
219 const size_t expected_filepos
;
220 } test_vfs_parse_ls_lga_ds
[] =
223 "drwxrwxr-x 10 500 500 4096 Jun 23 17:09 build_root",
230 "lrwxrwxrwx 1 500 500 11 Mar 13 2010 COPYING -> doc/COPYING",
237 "drwxrwxr-x 10 500 500 4096 Jun 23 17:09 ..",
244 "drwxrwxr-x 10 500 500 4096 Jun 23 17:09 build_root",
253 /* @Test(dataSource = "test_vfs_parse_ls_lga_ds") */
255 START_PARAMETRIZED_TEST (test_vfs_parse_ls_lga
, test_vfs_parse_ls_lga_ds
)
261 struct stat etalon_stat
;
262 static struct stat test_stat
;
263 char *filename
= NULL
;
264 char *linkname
= NULL
;
265 gboolean actual_result
;
267 vfs_parse_ls_lga_init ();
269 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
270 etalon_stat
.st_blocks
= 0;
272 etalon_stat
.st_size
= 0;
273 etalon_stat
.st_mode
= 0;
274 fill_stat_struct (&etalon_stat
, _i
);
278 vfs_parse_ls_lga (data
->input_string
, &test_stat
, &filename
, &linkname
, &filepos
);
281 mctest_assert_int_eq (actual_result
, data
->expected_result
);
283 mctest_assert_str_eq (filename
, data
->expected_filename
);
284 mctest_assert_str_eq (linkname
, data
->expected_linkname
);
286 mctest_assert_int_eq (etalon_stat
.st_dev
, test_stat
.st_dev
);
287 mctest_assert_int_eq (etalon_stat
.st_ino
, test_stat
.st_ino
);
288 mctest_assert_int_eq (etalon_stat
.st_mode
, test_stat
.st_mode
);
289 mctest_assert_int_eq (etalon_stat
.st_uid
, test_stat
.st_uid
);
290 mctest_assert_int_eq (etalon_stat
.st_gid
, test_stat
.st_gid
);
291 #ifdef HAVE_STRUCT_STAT_ST_RDEV
292 mctest_assert_int_eq (etalon_stat
.st_rdev
, test_stat
.st_rdev
);
294 mctest_assert_int_eq (etalon_stat
.st_size
, test_stat
.st_size
);
295 #ifdef HAVE_STRUCT_STAT_ST_BLKSIZE
296 mctest_assert_int_eq (etalon_stat
.st_blksize
, test_stat
.st_blksize
);
298 #ifdef HAVE_STRUCT_STAT_ST_BLOCKS
299 mctest_assert_int_eq (etalon_stat
.st_blocks
, test_stat
.st_blocks
);
302 /* FIXME: these commented checks are related to time zone!
303 mctest_assert_int_eq (etalon_stat.st_atime, test_stat.st_atime);
304 mctest_assert_int_eq (etalon_stat.st_mtime, test_stat.st_mtime);
305 mctest_assert_int_eq (etalon_stat.st_ctime, test_stat.st_ctime);
308 #ifdef HAVE_STRUCT_STAT_ST_MTIM
309 mctest_assert_int_eq (0, test_stat
.st_atim
.tv_nsec
);
310 mctest_assert_int_eq (0, test_stat
.st_mtim
.tv_nsec
);
311 mctest_assert_int_eq (0, test_stat
.st_ctim
.tv_nsec
);
316 END_PARAMETRIZED_TEST
319 /* --------------------------------------------------------------------------------------------- */
323 START_TEST (test_vfs_parse_ls_lga_reorder
)
328 struct vfs_s_entry
*ent1
, *ent2
, *ent3
;
330 vfs_parse_ls_lga_init ();
333 ent1
= vfs_s_generate_entry (&vfs_test_ops1
, NULL
, vfs_root_inode
, 0);
335 ("drwxrwxr-x 10 500 500 4096 Jun 23 17:09 build_root1", &ent1
->ino
->st
,
336 &ent1
->name
, &ent1
->ino
->linkname
, &filepos
);
337 vfs_s_store_filename_leading_spaces (ent1
, filepos
);
338 vfs_s_insert_entry (&vfs_test_ops1
, vfs_root_inode
, ent1
);
342 ent2
= vfs_s_generate_entry (&vfs_test_ops1
, NULL
, vfs_root_inode
, 0);
343 vfs_parse_ls_lga ("drwxrwxr-x 10 500 500 4096 Jun 23 17:09 build_root2",
344 &ent2
->ino
->st
, &ent2
->name
, &ent2
->ino
->linkname
, &filepos
);
345 vfs_s_store_filename_leading_spaces (ent2
, filepos
);
346 vfs_s_insert_entry (&vfs_test_ops1
, vfs_root_inode
, ent2
);
349 ent3
= vfs_s_generate_entry (&vfs_test_ops1
, NULL
, vfs_root_inode
, 0);
350 vfs_parse_ls_lga ("drwxrwxr-x 10 500 500 4096 Jun 23 17:09 ..",
351 &ent3
->ino
->st
, &ent3
->name
, &ent3
->ino
->linkname
, &filepos
);
352 vfs_s_store_filename_leading_spaces (ent3
, filepos
);
353 vfs_s_insert_entry (&vfs_test_ops1
, vfs_root_inode
, ent3
);
356 vfs_s_normalize_filename_leading_spaces (vfs_root_inode
, vfs_parse_ls_lga_get_final_spaces ());
359 mctest_assert_str_eq (ent1
->name
, " build_root1");
360 mctest_assert_str_eq (ent2
->name
, " build_root2");
366 /* --------------------------------------------------------------------------------------------- */
367 #define parce_one_line(ent_index, ls_output) {\
368 ent[ent_index] = vfs_s_generate_entry (&vfs_test_ops1, NULL, vfs_root_inode, 0);\
369 if (! vfs_parse_ls_lga (ls_output,\
370 &ent[ent_index]->ino->st, &ent[ent_index]->name, &ent[ent_index]->ino->linkname, &filepos))\
372 fail ("An error occurred while parse ls output");\
375 vfs_s_store_filename_leading_spaces (ent[ent_index], filepos);\
376 vfs_s_insert_entry (&vfs_test_ops1, vfs_root_inode, ent[ent_index]);\
382 START_TEST (test_vfs_parse_ls_lga_unaligned
)
387 struct vfs_s_entry
*ent
[4];
389 vfs_parse_ls_lga_init ();
391 parce_one_line (0, "drwxrwxr-x 10 500 500 4096 Jun 23 17:09 build_root1");
392 parce_one_line (1, "drwxrwxr-x 10 500 500 4096 Jun 23 17:09 build_root2");
393 parce_one_line (2, "drwxrwxr-x 10 500 500 4096 Jun 23 17:09 ..");
395 "drwxrwxr-x 10 500 500 4096 Jun 23 17:09 build_root 0");
398 vfs_s_normalize_filename_leading_spaces (vfs_root_inode
, vfs_parse_ls_lga_get_final_spaces ());
401 mctest_assert_str_eq (ent
[0]->name
, "build_root1");
402 mctest_assert_str_eq (ent
[0]->name
, "build_root1");
403 mctest_assert_str_eq (ent
[1]->name
, " build_root2");
404 mctest_assert_str_eq (ent
[3]->name
, " build_root 0");
410 /* --------------------------------------------------------------------------------------------- */
417 Suite
*s
= suite_create (TEST_SUITE_NAME
);
418 TCase
*tc_core
= tcase_create ("Core");
421 tcase_add_checked_fixture (tc_core
, setup
, teardown
);
423 /* Add new tests here: *************** */
424 mctest_add_parameterized_test (tc_core
, test_vfs_parse_ls_lga
, test_vfs_parse_ls_lga_ds
);
425 tcase_add_test (tc_core
, test_vfs_parse_ls_lga_reorder
);
426 tcase_add_test (tc_core
, test_vfs_parse_ls_lga_unaligned
);
427 /* *********************************** */
429 suite_add_tcase (s
, tc_core
);
430 sr
= srunner_create (s
);
431 srunner_set_log (sr
, "vfs_parse_ls_lga.log");
432 srunner_run_all (sr
, CK_ENV
);
433 number_failed
= srunner_ntests_failed (sr
);
435 return (number_failed
== 0) ? EXIT_SUCCESS
: EXIT_FAILURE
;
438 /* --------------------------------------------------------------------------------------------- */