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 free(p); 47 48 /* Test2: archive it with .taZ suffix. */ 49 assertEqualInt(0, 50 systemf("%s -acf test2.taZ f 2>test2.err", testprog)); 51 assertEmptyFile("test2.err"); 52 /* Check that the archive file has a compress signature. */ 53 p = slurpfile(&s, "test2.taZ"); 54 assert(s > 2); 55 failure("The archive should be compressed"); 56 assertEqualMem(p, "\x1f\x9d", 2); 57 free(p); 58 59 /* Test3: archive it with .tar.Z.uu suffix. */ 60 assertEqualInt(0, 61 systemf("%s -acf test3.tar.Z.uu f 2>test3.err", testprog)); 62 assertEmptyFile("test3.err"); 63 /* Check that the archive file has a compress signature. */ 64 p = slurpfile(&s, "test3.tar.Z.uu"); 65 assert(s > 12); 66 failure("The archive should be uuencoded"); 67 assertEqualMem(p, "begin 644 -\n", 12); 68 free(p); 69 70 /* Test4: archive it with .zip suffix. */ 71 assertEqualInt(0, 72 systemf("%s -acf test4.zip f 2>test4.err", testprog)); 73 assertEmptyFile("test4.err"); 74 /* Check that the archive file has a compress signature. */ 75 p = slurpfile(&s, "test4.zip"); 76 assert(s > 4); 77 failure("The archive should be zipped"); 78 assertEqualMem(p, "\x50\x4b\x03\x04", 4); 79 free(p); 80 81 /* Test5: archive it with .tar.Z suffix and --uuencode option. */ 82 assertEqualInt(0, 83 systemf("%s -acf test5.tar.Z --uuencode f 2>test5.err", 84 testprog)); 85 assertEmptyFile("test5.err"); 86 /* Check that the archive file has a compress signature. */ 87 p = slurpfile(&s, "test5.tar.Z"); 88 assert(s > 2); 89 failure("The archive should be compressed, ignoring --uuencode option"); 90 assertEqualMem(p, "\x1f\x9d", 2); 91 free(p); 92 93 /* Test6: archive it with .xxx suffix(unknown suffix) and 94 * --uuencode option. */ 95 assertEqualInt(0, 96 systemf("%s -acf test6.xxx --uuencode f 2>test6.err", 97 testprog)); 98 assertEmptyFile("test6.err"); 99 /* Check that the archive file has a compress signature. */ 100 p = slurpfile(&s, "test6.xxx"); 101 assert(s > 12); 102 failure("The archive should be uuencoded"); 103 assertEqualMem(p, "begin 644 -\n", 12); 104 free(p); 105 106 /* Test7: archive it with .tar.Z suffix using a long-name option. */ 107 assertEqualInt(0, 108 systemf("%s --auto-compress -cf test7.tar.Z f 2>test7.err", 109 testprog)); 110 assertEmptyFile("test7.err"); 111 /* Check that the archive file has a compress signature. */ 112 p = slurpfile(&s, "test7.tar.Z"); 113 assert(s > 2); 114 failure("The archive should be compressed"); 115 assertEqualMem(p, "\x1f\x9d", 2); 116 free(p); 117 } 118