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 __FBSDID("$FreeBSD$"); 28 29 DEFINE_TEST(test_option_a) 30 { 31 size_t s; 32 char *p; 33 34 /* Create a file. */ 35 assertMakeFile("f", 0644, "a"); 36 37 /* Test1: archive it with .tar.Z suffix. */ 38 assertEqualInt(0, 39 systemf("%s -acf test1.tar.Z f 2>test1.err", testprog)); 40 assertEmptyFile("test1.err"); 41 /* Check that the archive file has a compress signature. */ 42 p = slurpfile(&s, "test1.tar.Z"); 43 assert(s > 2); 44 failure("The archive should be compressed"); 45 assertEqualMem(p, "\x1f\x9d", 2); 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 57 /* Test3: archive it with .tar.Z.uu suffix. */ 58 assertEqualInt(0, 59 systemf("%s -acf test3.tar.Z.uu f 2>test3.err", testprog)); 60 assertEmptyFile("test3.err"); 61 /* Check that the archive file has a compress signature. */ 62 p = slurpfile(&s, "test3.tar.Z.uu"); 63 assert(s > 12); 64 failure("The archive should be uuencoded"); 65 assertEqualMem(p, "begin 644 -\n", 12); 66 67 /* Test4: archive it with .zip suffix. */ 68 assertEqualInt(0, 69 systemf("%s -acf test4.zip f 2>test4.err", testprog)); 70 assertEmptyFile("test4.err"); 71 /* Check that the archive file has a compress signature. */ 72 p = slurpfile(&s, "test4.zip"); 73 assert(s > 4); 74 failure("The archive should be zipped"); 75 assertEqualMem(p, "\x50\x4b\x03\x04", 4); 76 77 /* Test5: archive it with .tar.Z suffix and --uuencode option. */ 78 assertEqualInt(0, 79 systemf("%s -acf test5.tar.Z --uuencode f 2>test5.err", 80 testprog)); 81 assertEmptyFile("test5.err"); 82 /* Check that the archive file has a compress signature. */ 83 p = slurpfile(&s, "test5.tar.Z"); 84 assert(s > 2); 85 failure("The archive should be compressed, ignoring --uuencode option"); 86 assertEqualMem(p, "\x1f\x9d", 2); 87 88 /* Test6: archive it with .xxx suffix(unknown suffix) and 89 * --uuencode option. */ 90 assertEqualInt(0, 91 systemf("%s -acf test6.xxx --uuencode f 2>test6.err", 92 testprog)); 93 assertEmptyFile("test6.err"); 94 /* Check that the archive file has a compress signature. */ 95 p = slurpfile(&s, "test6.xxx"); 96 assert(s > 12); 97 failure("The archive should be uuencoded"); 98 assertEqualMem(p, "begin 644 -\n", 12); 99 100 /* Test7: archive it with .tar.Z suffix using a long-name option. */ 101 assertEqualInt(0, 102 systemf("%s --auto-compress -cf test7.tar.Z f 2>test7.err", 103 testprog)); 104 assertEmptyFile("test7.err"); 105 /* Check that the archive file has a compress signature. */ 106 p = slurpfile(&s, "test7.tar.Z"); 107 assert(s > 2); 108 failure("The archive should be compressed"); 109 assertEqualMem(p, "\x1f\x9d", 2); 110 } 111