]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - usr.bin/cpio/test/test_passthrough_reverse.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / usr.bin / cpio / test / test_passthrough_reverse.c
1 /*-
2  * Copyright (c) 2003-2007 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 #include "test.h"
26 __FBSDID("$FreeBSD$");
27
28 /*
29  * As reported by Bernd Walter:  Some people are in the habit of
30  * using "find -d" to generate a list for cpio -p because that
31  * copies the top-level dir last, which preserves owner and mode
32  * information.  That's not necessary for bsdcpio (libarchive defers
33  * restoring directory information), but bsdcpio should still generate
34  * the correct results with this usage.
35  */
36
37 DEFINE_TEST(test_passthrough_reverse)
38 {
39         struct stat st;
40         int fd, r;
41         int filelist;
42         int oldumask;
43
44         oldumask = umask(0);
45
46         /*
47          * Create an assortment of files on disk.
48          */
49         filelist = open("filelist", O_CREAT | O_WRONLY, 0644);
50
51         /* Directory. */
52         assertEqualInt(0, mkdir("dir", 0743));
53
54         /* File with 10 bytes content. */
55         fd = open("dir/file", O_CREAT | O_WRONLY, 0644);
56         assert(fd >= 0);
57         assertEqualInt(10, write(fd, "123456789", 10));
58         close(fd);
59         write(filelist, "dir/file\n", 9);
60
61         /* Write dir last. */
62         write(filelist, "dir\n", 4);
63
64         /* All done. */
65         close(filelist);
66
67
68         /*
69          * Use cpio passthrough mode to copy files to another directory.
70          */
71         r = systemf("%s -pdvm out <filelist >stdout 2>stderr", testprog);
72         failure("Error invoking %s -pd out", testprog);
73         assertEqualInt(r, 0);
74
75         assertEqualInt(0, chdir("out"));
76
77         /* Verify stderr and stdout. */
78         assertTextFileContents("out/dir/file\nout/dir\n1 block\n",
79             "../stderr");
80         assertEmptyFile("../stdout");
81
82         /* dir */
83         r = lstat("dir", &st);
84         if (r == 0) {
85                 assertEqualInt(r, 0);
86                 assert(S_ISDIR(st.st_mode));
87                 failure("st.st_mode=0%o",  st.st_mode);
88 #if defined(_WIN32) && !defined(__CYGWIN__)
89                 assertEqualInt(0700, st.st_mode & 0700);
90 #else
91                 assertEqualInt(0743, st.st_mode & 0777);
92 #endif
93         }
94
95
96         /* Regular file. */
97         r = lstat("dir/file", &st);
98         failure("Failed to stat dir/file, errno=%d", errno);
99         assertEqualInt(r, 0);
100         if (r == 0) {
101                 assert(S_ISREG(st.st_mode));
102 #if defined(_WIN32) && !defined(__CYGWIN__)
103                 assertEqualInt(0600, st.st_mode & 0700);
104 #else
105                 assertEqualInt(0644, st.st_mode & 0777);
106 #endif
107                 assertEqualInt(10, st.st_size);
108                 assertEqualInt(1, st.st_nlink);
109         }
110
111         umask(oldumask);
112 }