2 lib/vfs - manipulations with temp files and dirs
4 Copyright (C) 2012-2016
5 Free Software Foundation, Inc.
8 Slava Zanko <slavazanko@gmail.com>, 2012, 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"
31 #define HAVE_CHARSET 1
34 #include "lib/charsets.h"
36 #include "lib/strutil.h"
37 #include "lib/vfs/xdirentry.h"
38 #include "lib/vfs/path.h"
40 #include "src/vfs/local/local.c"
43 struct vfs_s_subclass test_subclass1
, test_subclass2
, test_subclass3
;
44 struct vfs_class vfs_test_ops1
, vfs_test_ops2
, vfs_test_ops3
;
46 /* --------------------------------------------------------------------------------------------- */
52 str_init_strings (NULL
);
56 vfs_setup_work_dir ();
59 /* --------------------------------------------------------------------------------------------- */
66 str_uninit_strings ();
69 /* --------------------------------------------------------------------------------------------- */
73 START_TEST (test_mc_tmpdir
)
78 const char *env_tmpdir
;
81 tmpdir
= mc_tmpdir ();
82 env_tmpdir
= g_getenv ("MC_TMPDIR");
85 fail_unless (g_file_test (tmpdir
, G_FILE_TEST_EXISTS
| G_FILE_TEST_IS_DIR
),
86 "\nNo such directory: %s\n", tmpdir
);
87 mctest_assert_str_eq (env_tmpdir
, tmpdir
);
93 /* --------------------------------------------------------------------------------------------- */
97 START_TEST (test_mc_mkstemps
)
101 vfs_path_t
*pname_vpath
= NULL
;
106 fd
= mc_mkstemps (&pname_vpath
, "mctest-", NULL
);
107 begin_pname
= g_build_filename (mc_tmpdir (), "mctest-", (char *) NULL
);
111 mctest_assert_int_ne (fd
, -1);
112 fail_unless (g_file_test
113 (vfs_path_as_str (pname_vpath
), G_FILE_TEST_EXISTS
| G_FILE_TEST_IS_REGULAR
),
114 "\nNo such file: %s\n", vfs_path_as_str (pname_vpath
));
115 unlink (vfs_path_as_str (pname_vpath
));
116 fail_unless (strncmp (vfs_path_as_str (pname_vpath
), begin_pname
, strlen (begin_pname
)) == 0,
117 "\nstart of %s should be equal to %s\n", vfs_path_as_str (pname_vpath
),
119 vfs_path_free (pname_vpath
);
125 /* --------------------------------------------------------------------------------------------- */
132 Suite
*s
= suite_create (TEST_SUITE_NAME
);
133 TCase
*tc_core
= tcase_create ("Core");
136 tcase_add_checked_fixture (tc_core
, setup
, teardown
);
138 /* Add new tests here: *************** */
139 tcase_add_test (tc_core
, test_mc_tmpdir
);
140 tcase_add_test (tc_core
, test_mc_mkstemps
);
141 /* *********************************** */
143 suite_add_tcase (s
, tc_core
);
144 sr
= srunner_create (s
);
145 srunner_set_log (sr
, "tempdir.log");
146 srunner_run_all (sr
, CK_ENV
);
147 number_failed
= srunner_ntests_failed (sr
);
149 return (number_failed
== 0) ? EXIT_SUCCESS
: EXIT_FAILURE
;
152 /* --------------------------------------------------------------------------------------------- */