]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - lib/libarchive/test/test_write_compress_program.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / lib / libarchive / test / test_write_compress_program.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 char buff[1000000];
29 char buff2[64];
30
31 DEFINE_TEST(test_write_compress_program)
32 {
33 #if ARCHIVE_VERSION_NUMBER < 1009000
34         skipping("archive_write_set_compress_program()");
35 #else
36         struct archive_entry *ae;
37         struct archive *a;
38         size_t used;
39         int blocksize = 1024;
40         int r;
41         const char *compprog, *decompprog;
42
43         decompprog = external_gzip_program(1);
44         if ((compprog = external_gzip_program(0)) == NULL) {
45                 skipping("There is no gzip compression "
46                     "program in this platform");
47                 return;
48         }
49
50         /* Create a new archive in memory. */
51         /* Write it through an external "gzip" program. */
52         assert((a = archive_write_new()) != NULL);
53         assertA(0 == archive_write_set_format_ustar(a));
54         r = archive_write_set_compression_program(a, compprog);
55         if (r == ARCHIVE_FATAL) {
56                 skipping("Write compression via external "
57                     "program unsupported on this platform");
58                 archive_write_finish(a);
59                 return;
60         }
61         assertA(0 == archive_write_set_bytes_per_block(a, blocksize));
62         assertA(0 == archive_write_set_bytes_in_last_block(a, blocksize));
63         assertA(blocksize == archive_write_get_bytes_in_last_block(a));
64         assertA(0 == archive_write_open_memory(a, buff, sizeof(buff), &used));
65         assertA(blocksize == archive_write_get_bytes_in_last_block(a));
66
67         /*
68          * Write a file to it.
69          */
70         assert((ae = archive_entry_new()) != NULL);
71         archive_entry_set_mtime(ae, 1, 10);
72         archive_entry_copy_pathname(ae, "file");
73         archive_entry_set_mode(ae, S_IFREG | 0755);
74         archive_entry_set_size(ae, 8);
75
76         assertA(0 == archive_write_header(a, ae));
77         archive_entry_free(ae);
78         assertA(8 == archive_write_data(a, "12345678", 9));
79
80         /* Close out the archive. */
81         assertA(0 == archive_write_close(a));
82         assertA(0 == archive_write_finish(a));
83
84         /*
85          * Now, read the data back through the built-in gzip support.
86          */
87         assert((a = archive_read_new()) != NULL);
88         assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_all(a));
89         assertEqualIntA(a, ARCHIVE_OK, archive_read_support_compression_all(a));
90         r = archive_read_support_compression_gzip(a);
91         /* The compression_gzip() handler will fall back to gunzip
92          * automatically, but if we know gunzip isn't available, then
93          * skip the rest. */
94         if (r != ARCHIVE_OK && decompprog == NULL) {
95                 skipping("No gzip decompression is available; "
96                     "unable to verify gzip compression");
97                 assertEqualInt(ARCHIVE_OK, archive_read_finish(a));
98                 return;
99         }
100         assertEqualIntA(a, ARCHIVE_OK, archive_read_open_memory(a, buff, used));
101
102         if (!assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae))) {
103                 archive_read_finish(a);
104                 return;
105         }
106
107         assertEqualInt(1, archive_entry_mtime(ae));
108         assertEqualInt(0, archive_entry_atime(ae));
109         assertEqualInt(0, archive_entry_ctime(ae));
110         assertEqualString("file", archive_entry_pathname(ae));
111         assertEqualInt((S_IFREG | 0755), archive_entry_mode(ae));
112         assertEqualInt(8, archive_entry_size(ae));
113         assertEqualIntA(a, 8, archive_read_data(a, buff2, 10));
114         assertEqualMem(buff2, "12345678", 8);
115
116         /* Verify the end of the archive. */
117         assertEqualIntA(a, ARCHIVE_EOF, archive_read_next_header(a, &ae));
118         assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
119         assertEqualInt(ARCHIVE_OK, archive_read_finish(a));
120 #endif
121 }