]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - contrib/libarchive/libarchive/test/test_read_set_format.c
MFC r368207,368607:
[FreeBSD/stable/10.git] / contrib / libarchive / libarchive / test / test_read_set_format.c
1 /*-
2  * Copyright (c) 2003-2007 Tim Kientzle
3  * Copyright (c) 2012 Andres Mejia
4  * Copyright (c) 2011-2012 Michihiro NAKAJIMA
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
17  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
20  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 #include "test.h"
28
29 DEFINE_TEST(test_read_set_format)
30 {
31   char buff[64];
32   const char reffile[] = "test_read_format_rar.rar";
33   const char test_txt[] = "test text document\r\n";
34   int size = sizeof(test_txt)-1;
35   struct archive_entry *ae;
36   struct archive *a;
37
38   extract_reference_file(reffile);
39   assert((a = archive_read_new()) != NULL);
40   assertA(0 == archive_read_set_format(a, ARCHIVE_FORMAT_RAR));
41   assertA(0 == archive_read_append_filter(a, ARCHIVE_FILTER_NONE));
42   assertA(0 == archive_read_open_filename(a, reffile, 10240));
43
44   /* First header. */
45   assertA(0 == archive_read_next_header(a, &ae));
46   assertEqualString("test.txt", archive_entry_pathname(ae));
47   assertA((int)archive_entry_mtime(ae));
48   assertA((int)archive_entry_ctime(ae));
49   assertA((int)archive_entry_atime(ae));
50   assertEqualInt(20, archive_entry_size(ae));
51   assertEqualInt(33188, archive_entry_mode(ae));
52   assertA(size == archive_read_data(a, buff, size));
53   assertEqualMem(buff, test_txt, size);
54
55   /* Second header. */
56   assertA(0 == archive_read_next_header(a, &ae));
57   assertEqualString("testlink", archive_entry_pathname(ae));
58   assertA((int)archive_entry_mtime(ae));
59   assertA((int)archive_entry_ctime(ae));
60   assertA((int)archive_entry_atime(ae));
61   assertEqualInt(0, archive_entry_size(ae));
62   assertEqualInt(41471, archive_entry_mode(ae));
63   assertEqualString("test.txt", archive_entry_symlink(ae));
64   assertEqualIntA(a, 0, archive_read_data(a, buff, sizeof(buff)));
65
66   /* Third header. */
67   assertA(0 == archive_read_next_header(a, &ae));
68   assertEqualString("testdir/test.txt", archive_entry_pathname(ae));
69   assertA((int)archive_entry_mtime(ae));
70   assertA((int)archive_entry_ctime(ae));
71   assertA((int)archive_entry_atime(ae));
72   assertEqualInt(20, archive_entry_size(ae));
73   assertEqualInt(33188, archive_entry_mode(ae));
74   assertA(size == archive_read_data(a, buff, size));
75   assertEqualMem(buff, test_txt, size);
76
77   /* Fourth header. */
78   assertA(0 == archive_read_next_header(a, &ae));
79   assertEqualString("testdir", archive_entry_pathname(ae));
80   assertA((int)archive_entry_mtime(ae));
81   assertA((int)archive_entry_ctime(ae));
82   assertA((int)archive_entry_atime(ae));
83   assertEqualInt(0, archive_entry_size(ae));
84   assertEqualInt(16877, archive_entry_mode(ae));
85
86   /* Fifth header. */
87   assertA(0 == archive_read_next_header(a, &ae));
88   assertEqualString("testemptydir", archive_entry_pathname(ae));
89   assertA((int)archive_entry_mtime(ae));
90   assertA((int)archive_entry_ctime(ae));
91   assertA((int)archive_entry_atime(ae));
92   assertEqualInt(0, archive_entry_size(ae));
93   assertEqualInt(16877, archive_entry_mode(ae));
94
95   /* Test EOF */
96   assertA(1 == archive_read_next_header(a, &ae));
97   assertEqualInt(5, archive_file_count(a));
98   assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
99   assertEqualInt(ARCHIVE_OK, archive_read_free(a));
100 }
101
102 DEFINE_TEST(test_read_set_wrong_format)
103 {
104   const char reffile[] = "test_read_format_zip.zip";
105   struct archive_entry *ae;
106   struct archive *a;
107
108   extract_reference_file(reffile);
109   assert((a = archive_read_new()) != NULL);
110   assertA(0 == archive_read_set_format(a, ARCHIVE_FORMAT_RAR));
111   assertA(0 == archive_read_append_filter(a, ARCHIVE_FILTER_NONE));
112   assertA(0 == archive_read_open_filename(a, reffile, 10240));
113
114   /* Check that this actually fails, then close the archive. */
115   assertA(archive_read_next_header(a, &ae) < (ARCHIVE_WARN));
116   assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
117   assertEqualInt(ARCHIVE_OK, archive_read_free(a));
118 }
119
120 static unsigned char archive[] = {
121 31,139,8,0,222,'C','p','C',0,3,211,'c',160,'=','0','0','0','0','7','5','U',
122 0,210,134,230,166,6,200,'4',28,'(',24,26,24,27,155,24,152,24,154,27,155,')',
123 24,24,26,152,154,25,'2','(',152,210,193,'m',12,165,197,'%',137,'E','@',167,
124 148,'d',230,226,'U','G','H',30,234,15,'8','=',10,'F',193,'(',24,5,131,28,
125 0,0,29,172,5,240,0,6,0,0};
126
127 DEFINE_TEST(test_read_append_filter)
128 {
129   struct archive_entry *ae;
130   struct archive *a;
131   int r;
132
133   assert((a = archive_read_new()) != NULL);
134   assertA(0 == archive_read_set_format(a, ARCHIVE_FORMAT_TAR));
135   r = archive_read_append_filter(a, ARCHIVE_FILTER_GZIP);
136   if (r != ARCHIVE_OK && archive_zlib_version() == NULL && !canGzip()) {
137     skipping("gzip tests require zlib or working gzip command");
138     assertEqualInt(ARCHIVE_OK, archive_read_free(a));
139     return;
140   }
141   assertEqualIntA(a, ARCHIVE_OK, r);
142   assertEqualInt(ARCHIVE_OK,
143       archive_read_open_memory(a, archive, sizeof(archive)));
144   assertEqualInt(ARCHIVE_OK, archive_read_next_header(a, &ae));
145   assertEqualInt(1, archive_file_count(a));
146   assertEqualInt(archive_filter_code(a, 0), ARCHIVE_COMPRESSION_GZIP);
147   assertEqualInt(archive_format(a), ARCHIVE_FORMAT_TAR_USTAR);
148   assertEqualInt(ARCHIVE_OK, archive_read_close(a));
149   assertEqualInt(ARCHIVE_OK,archive_read_free(a));
150 }
151
152 DEFINE_TEST(test_read_append_wrong_filter)
153 {
154   struct archive_entry *ae;
155   struct archive *a;
156   int r;
157
158   assert((a = archive_read_new()) != NULL);
159   assertA(0 == archive_read_set_format(a, ARCHIVE_FORMAT_TAR));
160   r = archive_read_append_filter(a, ARCHIVE_FILTER_XZ);
161   if (r == ARCHIVE_WARN && !canXz()) {
162     skipping("xz reading not fully supported on this platform");
163     assertEqualInt(ARCHIVE_OK, archive_read_free(a));
164     return;
165   }
166   assertEqualInt(ARCHIVE_OK,
167       archive_read_open_memory(a, archive, sizeof(archive)));
168   assertA(archive_read_next_header(a, &ae) < (ARCHIVE_WARN));
169   if (r == ARCHIVE_WARN && canXz()) {
170     assertEqualIntA(a, ARCHIVE_WARN, archive_read_close(a));
171   } else {
172     assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
173   }
174   assertEqualInt(ARCHIVE_OK,archive_read_free(a));
175 }
176
177 DEFINE_TEST(test_read_append_filter_program)
178 {
179   struct archive_entry *ae;
180   struct archive *a;
181
182   if (!canGzip()) {
183     skipping("Can't run gzip program on this platform");
184     return;
185   }
186   assert((a = archive_read_new()) != NULL);
187   assertA(0 == archive_read_set_format(a, ARCHIVE_FORMAT_TAR));
188   assertEqualIntA(a, ARCHIVE_OK,
189       archive_read_append_filter_program(a, "gzip -d"));
190   assertEqualIntA(a, ARCHIVE_OK,
191       archive_read_open_memory(a, archive, sizeof(archive)));
192   assertEqualIntA(a, ARCHIVE_OK,
193       archive_read_next_header(a, &ae));
194   assertEqualInt(archive_filter_code(a, 0), ARCHIVE_FILTER_PROGRAM);
195   assertEqualInt(archive_format(a), ARCHIVE_FORMAT_TAR_USTAR);
196   assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
197   assertEqualInt(ARCHIVE_OK, archive_read_free(a));
198 }
199
200 DEFINE_TEST(test_read_append_filter_wrong_program)
201 {
202   struct archive_entry *ae;
203   struct archive *a;
204
205   /*
206    * If we have "bunzip2 -q", try using that.
207    */
208   if (!canRunCommand("bunzip2 -h")) {
209     skipping("Can't run bunzip2 program on this platform");
210     return;
211   }
212
213   assert((a = archive_read_new()) != NULL);
214   assertA(0 == archive_read_set_format(a, ARCHIVE_FORMAT_TAR));
215   assertEqualIntA(a, ARCHIVE_OK,
216       archive_read_append_filter_program(a, "bunzip2 -q"));
217   assertEqualIntA(a, ARCHIVE_OK,
218       archive_read_open_memory(a, archive, sizeof(archive)));
219   assertA(archive_read_next_header(a, &ae) < (ARCHIVE_WARN));
220   assertEqualIntA(a, ARCHIVE_WARN, archive_read_close(a));
221   assertEqualInt(ARCHIVE_OK, archive_read_free(a));
222 }