1 /*-
2  * Copyright (c) 2003-2007 Tim Kientzle
3  * Copyright (c) 2012 Michihiro NAKAJIMA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  */
26 #include "test.h"
27 
DEFINE_TEST(test_option_a)28 DEFINE_TEST(test_option_a)
29 {
30 	size_t s;
31 	char *p;
32 
33 	/* Create a file. */
34 	assertMakeFile("f", 0644, "a");
35 
36 	/* Test1: archive it with .tar.Z suffix. */
37 	assertEqualInt(0,
38 	    systemf("%s -acf test1.tar.Z f 2>test1.err", testprog));
39 	assertEmptyFile("test1.err");
40 	/* Check that the archive file has a compress signature. */
41 	p = slurpfile(&s, "test1.tar.Z");
42 	assert(s > 2);
43 	failure("The archive should be compressed");
44 	assertEqualMem(p, "\x1f\x9d", 2);
45 	free(p);
46 
47 	/* Test2: archive it with .taZ suffix. */
48 	assertEqualInt(0,
49 	    systemf("%s -acf test2.taZ f 2>test2.err", testprog));
50 	assertEmptyFile("test2.err");
51 	/* Check that the archive file has a compress signature. */
52 	p = slurpfile(&s, "test2.taZ");
53 	assert(s > 2);
54 	failure("The archive should be compressed");
55 	assertEqualMem(p, "\x1f\x9d", 2);
56 	free(p);
57 
58 	/* Test3: archive it with .tar.Z.uu suffix. */
59 	assertEqualInt(0,
60 	    systemf("%s -acf test3.tar.Z.uu f 2>test3.err", testprog));
61 	assertEmptyFile("test3.err");
62 	/* Check that the archive file has a compress signature. */
63 	p = slurpfile(&s, "test3.tar.Z.uu");
64 	assert(s > 12);
65 	failure("The archive should be uuencoded");
66 	assertEqualMem(p, "begin 644 -\n", 12);
67 	free(p);
68 
69 	/* Test4: archive it with .zip suffix. */
70 	assertEqualInt(0,
71 	    systemf("%s -acf test4.zip f 2>test4.err", testprog));
72 	assertEmptyFile("test4.err");
73 	/* Check that the archive file has a compress signature. */
74 	p = slurpfile(&s, "test4.zip");
75 	assert(s > 4);
76 	failure("The archive should be zipped");
77 	assertEqualMem(p, "\x50\x4b\x03\x04", 4);
78 	free(p);
79 
80 	/* Test5: archive it with .tar.Z suffix and --uuencode option. */
81 	assertEqualInt(0,
82 	    systemf("%s -acf test5.tar.Z --uuencode f 2>test5.err",
83 		testprog));
84 	assertEmptyFile("test5.err");
85 	/* Check that the archive file has a compress signature. */
86 	p = slurpfile(&s, "test5.tar.Z");
87 	assert(s > 2);
88 	failure("The archive should be compressed, ignoring --uuencode option");
89 	assertEqualMem(p, "\x1f\x9d", 2);
90 	free(p);
91 
92 	/* Test6: archive it with .xxx suffix(unknown suffix) and
93 	 * --uuencode option. */
94 	assertEqualInt(0,
95 	    systemf("%s -acf test6.xxx --uuencode f 2>test6.err",
96 		testprog));
97 	assertEmptyFile("test6.err");
98 	/* Check that the archive file has a compress signature. */
99 	p = slurpfile(&s, "test6.xxx");
100 	assert(s > 12);
101 	failure("The archive should be uuencoded");
102 	assertEqualMem(p, "begin 644 -\n", 12);
103 	free(p);
104 
105 	/* Test7: archive it with .tar.Z suffix using a long-name option. */
106 	assertEqualInt(0,
107 	    systemf("%s --auto-compress -cf test7.tar.Z f 2>test7.err",
108 		testprog));
109 	assertEmptyFile("test7.err");
110 	/* Check that the archive file has a compress signature. */
111 	p = slurpfile(&s, "test7.tar.Z");
112 	assert(s > 2);
113 	failure("The archive should be compressed");
114 	assertEqualMem(p, "\x1f\x9d", 2);
115 	free(p);
116 }
117