]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - usr.bin/tar/test/test_patterns.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / usr.bin / tar / test / test_patterns.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 DEFINE_TEST(test_patterns)
29 {
30         int fd, r;
31         const char *reffile2 = "test_patterns_2.tgz";
32         const char *reffile3 = "test_patterns_3.tgz";
33         const char *p;
34
35         /*
36          * Test basic command-line pattern handling.
37          */
38
39         /*
40          * Test 1: Files on the command line that don't get matched
41          * didn't produce an error.
42          *
43          * John Baldwin reported this problem in PR bin/121598
44          */
45         fd = open("foo", O_CREAT | O_WRONLY, 0644);
46         assert(fd >= 0);
47         close(fd);
48         r = systemf("%s zcfv tar1.tgz foo > tar1a.out 2> tar1a.err", testprog);
49         assertEqualInt(r, 0);
50         r = systemf("%s zxfv tar1.tgz foo bar > tar1b.out 2> tar1b.err", testprog);
51         failure("tar should return non-zero because a file was given on the command line that's not in the archive");
52         assert(r != 0);
53
54         /*
55          * Test 2: Check basic matching of full paths that start with /
56          */
57         extract_reference_file(reffile2);
58
59         r = systemf("%s tf %s /tmp/foo/bar > tar2a.out 2> tar2a.err",
60             testprog, reffile2);
61         assertEqualInt(r, 0);
62         p = "/tmp/foo/bar/\n/tmp/foo/bar/baz\n";
63         assertFileContents(p, strlen(p), "tar2a.out");
64         assertEmptyFile("tar2a.err");
65
66         /*
67          * Test 3 archive has some entries starting with '/' and some not.
68          */
69         extract_reference_file(reffile3);
70
71         /* Test 3a:  Pattern tmp/foo/bar should not match /tmp/foo/bar */
72         r = systemf("%s xf %s tmp/foo/bar > tar3a.out 2> tar3a.err",
73             testprog, reffile3);
74         assert(r != 0);
75         assertEmptyFile("tar3a.out");
76
77         /* Test 3b:  Pattern /tmp/foo/baz should not match tmp/foo/baz */
78         assertNonEmptyFile("tar3a.err");
79         /* Again, with the '/' */
80         r = systemf("%s xf %s /tmp/foo/baz > tar3b.out 2> tar3b.err",
81             testprog, reffile3);
82         assert(r != 0);
83         assertEmptyFile("tar3b.out");
84         assertNonEmptyFile("tar3b.err");
85
86         /* Test 3c: ./tmp/foo/bar should not match /tmp/foo/bar */
87         r = systemf("%s xf %s ./tmp/foo/bar > tar3c.out 2> tar3c.err",
88             testprog, reffile3);
89         assert(r != 0);
90         assertEmptyFile("tar3c.out");
91         assertNonEmptyFile("tar3c.err");
92
93         /* Test 3d: ./tmp/foo/baz should match tmp/foo/baz */
94         r = systemf("%s xf %s ./tmp/foo/baz > tar3d.out 2> tar3d.err",
95             testprog, reffile3);
96         assertEqualInt(r, 0);
97         assertEmptyFile("tar3d.out");
98         assertEmptyFile("tar3d.err");
99         assertEqualInt(0, access("tmp/foo/baz/bar", F_OK));
100 }