xref: /freebsd/contrib/libarchive/test_utils/test_common.h (revision f0574f5cf69e168cc4ea71ebbe5fdec9ec9a3dfe)
1 /*
2  * Copyright (c) 2003-2017 Tim Kientzle
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  *
25  * $FreeBSD$
26  */
27 
28 #ifndef	TEST_COMMON_H
29 #define	TEST_COMMON_H
30 
31 /*
32  * The goal of this file (and the matching test.c) is to
33  * simplify the very repetitive test-*.c test programs.
34  */
35 #if defined(HAVE_CONFIG_H)
36 /* Most POSIX platforms use the 'configure' script to build config.h */
37 #include "config.h"
38 #elif defined(__FreeBSD__)
39 /* Building as part of FreeBSD system requires a pre-built config.h. */
40 #include "config_freebsd.h"
41 #elif defined(_WIN32) && !defined(__CYGWIN__)
42 /* Win32 can't run the 'configure' script. */
43 #include "config_windows.h"
44 #else
45 /* Warn if the library hasn't been (automatically or manually) configured. */
46 #error Oops: No config.h and no pre-built configuration in test.h.
47 #endif
48 
49 #include <sys/types.h>  /* Windows requires this before sys/stat.h */
50 #include <sys/stat.h>
51 
52 #if HAVE_DIRENT_H
53 #include <dirent.h>
54 #endif
55 #ifdef HAVE_DIRECT_H
56 #include <direct.h>
57 #define dirent direct
58 #endif
59 #include <errno.h>
60 #include <fcntl.h>
61 #ifdef HAVE_IO_H
62 #include <io.h>
63 #endif
64 #ifdef HAVE_STDINT_H
65 #include <stdint.h>
66 #endif
67 #include <stdio.h>
68 #include <stdlib.h>
69 #include <string.h>
70 #include <ctype.h>
71 #include <time.h>
72 #ifdef HAVE_UNISTD_H
73 #include <unistd.h>
74 #endif
75 #include <wchar.h>
76 #ifdef HAVE_ACL_LIBACL_H
77 #include <acl/libacl.h>
78 #endif
79 #ifdef HAVE_SYS_ACL_H
80 #include <sys/acl.h>
81 #endif
82 #ifdef HAVE_WINDOWS_H
83 #include <windows.h>
84 #endif
85 
86 /*
87  * System-specific tweaks.  We really want to minimize these
88  * as much as possible, since they make it harder to understand
89  * the mainline code.
90  */
91 
92 /* Windows (including Visual Studio and MinGW but not Cygwin) */
93 #if defined(_WIN32) && !defined(__CYGWIN__)
94 #if !defined(__BORLANDC__)
95 #undef chdir
96 #define chdir _chdir
97 #define strdup _strdup
98 #endif
99 #endif
100 
101 /* Visual Studio */
102 #if defined(_MSC_VER) && _MSC_VER < 1900
103 #define snprintf	sprintf_s
104 #endif
105 
106 #if defined(__BORLANDC__)
107 #pragma warn -8068	/* Constant out of range in comparison. */
108 #endif
109 
110 /* Haiku OS and QNX */
111 #if defined(__HAIKU__) || defined(__QNXNTO__)
112 /* Haiku and QNX have typedefs in stdint.h (needed for int64_t) */
113 #include <stdint.h>
114 #endif
115 
116 /* Get a real definition for __FBSDID if we can */
117 #if HAVE_SYS_CDEFS_H
118 #include <sys/cdefs.h>
119 #endif
120 
121 /* If not, define it so as to avoid dangling semicolons. */
122 #ifndef __FBSDID
123 #define	__FBSDID(a)     struct _undefined_hack
124 #endif
125 
126 #ifndef O_BINARY
127 #define	O_BINARY 0
128 #endif
129 
130 #include "archive_platform_acl.h"
131 #define	ARCHIVE_TEST_ACL_TYPE_POSIX1E	1
132 #define	ARCHIVE_TEST_ACL_TYPE_NFS4	2
133 
134 
135 /*
136  * Redefine DEFINE_TEST for use in defining the test functions.
137  */
138 #undef DEFINE_TEST
139 #define DEFINE_TEST(name) void name(void); void name(void)
140 
141 /* An implementation of the standard assert() macro */
142 #define assert(e)   assertion_assert(__FILE__, __LINE__, (e), #e, NULL)
143 /* chdir() and error if it fails */
144 #define assertChdir(path)  \
145   assertion_chdir(__FILE__, __LINE__, path)
146 /* Assert two files have the same file flags */
147 #define assertEqualFflags(patha, pathb)	\
148   assertion_compare_fflags(__FILE__, __LINE__, patha, pathb, 0)
149 /* Assert two integers are the same.  Reports value of each one if not. */
150 #define assertEqualInt(v1,v2) \
151   assertion_equal_int(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
152 /* Assert two strings are the same.  Reports value of each one if not. */
153 #define assertEqualString(v1,v2)   \
154   assertion_equal_string(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL, 0)
155 #define assertEqualUTF8String(v1,v2)   \
156   assertion_equal_string(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL, 1)
157 /* As above, but v1 and v2 are wchar_t * */
158 #define assertEqualWString(v1,v2)   \
159   assertion_equal_wstring(__FILE__, __LINE__, (v1), #v1, (v2), #v2, NULL)
160 /* As above, but raw blocks of bytes. */
161 #define assertEqualMem(v1, v2, l)	\
162   assertion_equal_mem(__FILE__, __LINE__, (v1), #v1, (v2), #v2, (l), #l, NULL)
163 /* Assert that memory is full of a specified byte */
164 #define assertMemoryFilledWith(v1, l, b)					\
165   assertion_memory_filled_with(__FILE__, __LINE__, (v1), #v1, (l), #l, (b), #b, NULL)
166 /* Assert two files are the same. */
167 #define assertEqualFile(f1, f2)	\
168   assertion_equal_file(__FILE__, __LINE__, (f1), (f2))
169 /* Assert that a file is empty. */
170 #define assertEmptyFile(pathname)	\
171   assertion_empty_file(__FILE__, __LINE__, (pathname))
172 /* Assert that a file is not empty. */
173 #define assertNonEmptyFile(pathname)		\
174   assertion_non_empty_file(__FILE__, __LINE__, (pathname))
175 #define assertFileAtime(pathname, sec, nsec)	\
176   assertion_file_atime(__FILE__, __LINE__, pathname, sec, nsec)
177 #define assertFileAtimeRecent(pathname)	\
178   assertion_file_atime_recent(__FILE__, __LINE__, pathname)
179 #define assertFileBirthtime(pathname, sec, nsec)	\
180   assertion_file_birthtime(__FILE__, __LINE__, pathname, sec, nsec)
181 #define assertFileBirthtimeRecent(pathname) \
182   assertion_file_birthtime_recent(__FILE__, __LINE__, pathname)
183 /* Assert that a file exists; supports printf-style arguments. */
184 #define assertFileExists(pathname) \
185   assertion_file_exists(__FILE__, __LINE__, pathname)
186 /* Assert that a file exists. */
187 #define assertFileNotExists(pathname) \
188   assertion_file_not_exists(__FILE__, __LINE__, pathname)
189 /* Assert that file contents match a string. */
190 #define assertFileContents(data, data_size, pathname) \
191   assertion_file_contents(__FILE__, __LINE__, data, data_size, pathname)
192 /* Verify that a file does not contain invalid strings */
193 #define assertFileContainsNoInvalidStrings(pathname, strings) \
194   assertion_file_contains_no_invalid_strings(__FILE__, __LINE__, pathname, strings)
195 #define assertFileMtime(pathname, sec, nsec)	\
196   assertion_file_mtime(__FILE__, __LINE__, pathname, sec, nsec)
197 #define assertFileMtimeRecent(pathname) \
198   assertion_file_mtime_recent(__FILE__, __LINE__, pathname)
199 #define assertFileNLinks(pathname, nlinks)  \
200   assertion_file_nlinks(__FILE__, __LINE__, pathname, nlinks)
201 #define assertFileSize(pathname, size)  \
202   assertion_file_size(__FILE__, __LINE__, pathname, size)
203 #define assertFileMode(pathname, mode)  \
204   assertion_file_mode(__FILE__, __LINE__, pathname, mode)
205 #define assertTextFileContents(text, pathname) \
206   assertion_text_file_contents(__FILE__, __LINE__, text, pathname)
207 #define assertFileContainsLinesAnyOrder(pathname, lines)	\
208   assertion_file_contains_lines_any_order(__FILE__, __LINE__, pathname, lines)
209 #define assertIsDir(pathname, mode)		\
210   assertion_is_dir(__FILE__, __LINE__, pathname, mode)
211 #define assertIsHardlink(path1, path2)	\
212   assertion_is_hardlink(__FILE__, __LINE__, path1, path2)
213 #define assertIsNotHardlink(path1, path2)	\
214   assertion_is_not_hardlink(__FILE__, __LINE__, path1, path2)
215 #define assertIsReg(pathname, mode)		\
216   assertion_is_reg(__FILE__, __LINE__, pathname, mode)
217 #define assertIsSymlink(pathname, contents)	\
218   assertion_is_symlink(__FILE__, __LINE__, pathname, contents)
219 /* Create a directory, report error if it fails. */
220 #define assertMakeDir(dirname, mode)	\
221   assertion_make_dir(__FILE__, __LINE__, dirname, mode)
222 #define assertMakeFile(path, mode, contents) \
223   assertion_make_file(__FILE__, __LINE__, path, mode, -1, contents)
224 #define assertMakeBinFile(path, mode, csize, contents) \
225   assertion_make_file(__FILE__, __LINE__, path, mode, csize, contents)
226 #define assertMakeHardlink(newfile, oldfile)	\
227   assertion_make_hardlink(__FILE__, __LINE__, newfile, oldfile)
228 #define assertMakeSymlink(newfile, linkto)	\
229   assertion_make_symlink(__FILE__, __LINE__, newfile, linkto)
230 #define assertSetNodump(path)	\
231   assertion_set_nodump(__FILE__, __LINE__, path)
232 #define assertUmask(mask)	\
233   assertion_umask(__FILE__, __LINE__, mask)
234 /* Assert that two files have unequal file flags */
235 #define assertUnequalFflags(patha, pathb)	\
236   assertion_compare_fflags(__FILE__, __LINE__, patha, pathb, 1)
237 #define assertUtimes(pathname, atime, atime_nsec, mtime, mtime_nsec)	\
238   assertion_utimes(__FILE__, __LINE__, pathname, atime, atime_nsec, mtime, mtime_nsec)
239 #ifndef PROGRAM
240 #define assertEntrySetAcls(entry, acls, count) \
241   assertion_entry_set_acls(__FILE__, __LINE__, entry, acls, count)
242 #define assertEntryCompareAcls(entry, acls, count, type, mode) \
243   assertion_entry_compare_acls(__FILE__, __LINE__, entry, acls, count, type, mode)
244 #endif
245 
246 /*
247  * This would be simple with C99 variadic macros, but I don't want to
248  * require that.  Instead, I insert a function call before each
249  * skipping() call to pass the file and line information down.  Crude,
250  * but effective.
251  */
252 #define skipping	\
253   skipping_setup(__FILE__, __LINE__);test_skipping
254 
255 /* Function declarations.  These are defined in test_utility.c. */
256 void failure(const char *fmt, ...);
257 int assertion_assert(const char *, int, int, const char *, void *);
258 int assertion_chdir(const char *, int, const char *);
259 int assertion_compare_fflags(const char *, int, const char *, const char *,
260     int);
261 int assertion_empty_file(const char *, int, const char *);
262 int assertion_equal_file(const char *, int, const char *, const char *);
263 int assertion_equal_int(const char *, int, long long, const char *, long long, const char *, void *);
264 int assertion_equal_mem(const char *, int, const void *, const char *, const void *, const char *, size_t, const char *, void *);
265 int assertion_memory_filled_with(const char *, int, const void *, const char *, size_t, const char *, char, const char *, void *);
266 int assertion_equal_string(const char *, int, const char *v1, const char *, const char *v2, const char *, void *, int);
267 int assertion_equal_wstring(const char *, int, const wchar_t *v1, const char *, const wchar_t *v2, const char *, void *);
268 int assertion_file_atime(const char *, int, const char *, long, long);
269 int assertion_file_atime_recent(const char *, int, const char *);
270 int assertion_file_birthtime(const char *, int, const char *, long, long);
271 int assertion_file_birthtime_recent(const char *, int, const char *);
272 int assertion_file_contains_lines_any_order(const char *, int, const char *, const char **);
273 int assertion_file_contains_no_invalid_strings(const char *, int, const char *, const char **);
274 int assertion_file_contents(const char *, int, const void *, int, const char *);
275 int assertion_file_exists(const char *, int, const char *);
276 int assertion_file_mode(const char *, int, const char *, int);
277 int assertion_file_mtime(const char *, int, const char *, long, long);
278 int assertion_file_mtime_recent(const char *, int, const char *);
279 int assertion_file_nlinks(const char *, int, const char *, int);
280 int assertion_file_not_exists(const char *, int, const char *);
281 int assertion_file_size(const char *, int, const char *, long);
282 int assertion_is_dir(const char *, int, const char *, int);
283 int assertion_is_hardlink(const char *, int, const char *, const char *);
284 int assertion_is_not_hardlink(const char *, int, const char *, const char *);
285 int assertion_is_reg(const char *, int, const char *, int);
286 int assertion_is_symlink(const char *, int, const char *, const char *);
287 int assertion_make_dir(const char *, int, const char *, int);
288 int assertion_make_file(const char *, int, const char *, int, int, const void *);
289 int assertion_make_hardlink(const char *, int, const char *newpath, const char *);
290 int assertion_make_symlink(const char *, int, const char *newpath, const char *);
291 int assertion_non_empty_file(const char *, int, const char *);
292 int assertion_set_nodump(const char *, int, const char *);
293 int assertion_text_file_contents(const char *, int, const char *buff, const char *f);
294 int assertion_umask(const char *, int, int);
295 int assertion_utimes(const char *, int, const char *, long, long, long, long );
296 int assertion_version(const char*, int, const char *, const char *);
297 
298 void skipping_setup(const char *, int);
299 void test_skipping(const char *fmt, ...);
300 
301 /* Like sprintf, then system() */
302 int systemf(const char * fmt, ...);
303 
304 /* Delay until time() returns a value after this. */
305 void sleepUntilAfter(time_t);
306 
307 /* Return true if this platform can create symlinks. */
308 int canSymlink(void);
309 
310 /* Return true if this platform can run the "bzip2" program. */
311 int canBzip2(void);
312 
313 /* Return true if this platform can run the "grzip" program. */
314 int canGrzip(void);
315 
316 /* Return true if this platform can run the "gzip" program. */
317 int canGzip(void);
318 
319 /* Return true if this platform can run the specified command. */
320 int canRunCommand(const char *);
321 
322 /* Return true if this platform can run the "lrzip" program. */
323 int canLrzip(void);
324 
325 /* Return true if this platform can run the "lz4" program. */
326 int canLz4(void);
327 
328 /* Return true if this platform can run the "lzip" program. */
329 int canLzip(void);
330 
331 /* Return true if this platform can run the "lzma" program. */
332 int canLzma(void);
333 
334 /* Return true if this platform can run the "lzop" program. */
335 int canLzop(void);
336 
337 /* Return true if this platform can run the "xz" program. */
338 int canXz(void);
339 
340 /* Return true if this filesystem can handle nodump flags. */
341 int canNodump(void);
342 
343 /* Set test ACLs */
344 int setTestAcl(const char *path);
345 
346 /* Return true if the file has large i-node number(>0xffffffff). */
347 int is_LargeInode(const char *);
348 
349 #if ARCHIVE_ACL_SUNOS
350 /* Fetch ACLs on Solaris using acl() or facl() */
351 void *sunacl_get(int cmd, int *aclcnt, int fd, const char *path);
352 #endif
353 
354 /* Suck file into string allocated via malloc(). Call free() when done. */
355 /* Supports printf-style args: slurpfile(NULL, "%s/myfile", refdir); */
356 char *slurpfile(size_t *, const char *fmt, ...);
357 
358 /* Dump block of bytes to a file. */
359 void dumpfile(const char *filename, void *, size_t);
360 
361 /* Extracts named reference file to the current directory. */
362 void extract_reference_file(const char *);
363 /* Copies named reference file to the current directory. */
364 void copy_reference_file(const char *);
365 
366 /* Extracts a list of files to the current directory.
367  * List must be NULL terminated.
368  */
369 void extract_reference_files(const char **);
370 
371 /* Subtract umask from mode */
372 mode_t umasked(mode_t expected_mode);
373 
374 /* Path to working directory for current test */
375 extern const char *testworkdir;
376 
377 #ifndef PROGRAM
378 /*
379  * Special interfaces for libarchive test harness.
380  */
381 
382 #include "archive.h"
383 #include "archive_entry.h"
384 
385 /* ACL structure */
386 struct archive_test_acl_t {
387 	int type;  /* Type of ACL */
388 	int permset; /* Permissions for this class of users. */
389 	int tag; /* Owner, User, Owning group, group, other, etc. */
390 	int qual; /* GID or UID of user/group, depending on tag. */
391 	const char *name; /* Name of user/group, depending on tag. */
392 };
393 
394 /* Set ACLs */
395 int assertion_entry_set_acls(const char *, int, struct archive_entry *,
396     struct archive_test_acl_t *, int);
397 
398 /* Compare ACLs */
399 int assertion_entry_compare_acls(const char *, int, struct archive_entry *,
400     struct archive_test_acl_t *, int, int, int);
401 
402 /* Special customized read-from-memory interface. */
403 int read_open_memory(struct archive *, const void *, size_t, size_t);
404 /* _minimal version exercises a slightly different set of libarchive APIs. */
405 int read_open_memory_minimal(struct archive *, const void *, size_t, size_t);
406 /* _seek version produces a seekable file. */
407 int read_open_memory_seek(struct archive *, const void *, size_t, size_t);
408 
409 /* Versions of above that accept an archive argument for additional info. */
410 #define assertA(e)   assertion_assert(__FILE__, __LINE__, (e), #e, (a))
411 #define assertEqualIntA(a,v1,v2)   \
412   assertion_equal_int(__FILE__, __LINE__, (v1), #v1, (v2), #v2, (a))
413 #define assertEqualStringA(a,v1,v2)   \
414   assertion_equal_string(__FILE__, __LINE__, (v1), #v1, (v2), #v2, (a), 0)
415 
416 #else	/* defined(PROGRAM) */
417 /*
418  * Special interfaces for program test harness.
419  */
420 
421 /* Pathname of exe to be tested. */
422 extern const char *testprogfile;
423 /* Name of exe to use in printf-formatted command strings. */
424 /* On Windows, this includes leading/trailing quotes. */
425 extern const char *testprog;
426 
427 void assertVersion(const char *prog, const char *base);
428 
429 #endif	/* defined(PROGRAM) */
430 
431 #ifdef USE_DMALLOC
432 #include <dmalloc.h>
433 #endif
434 
435 #endif	/* TEST_COMMON_H */
436