]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - lib/libarchive/test/test_open_fd.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / lib / libarchive / test / test_open_fd.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
29 DEFINE_TEST(test_open_fd)
30 {
31         char buff[64];
32         struct archive_entry *ae;
33         struct archive *a;
34         int fd;
35
36         fd = open("test.tar", O_RDWR | O_CREAT, 0777);
37         assert(fd >= 0);
38         if (fd < 0)
39                 return;
40
41         /* Write an archive through this fd. */
42         assert((a = archive_write_new()) != NULL);
43         assertEqualIntA(a, ARCHIVE_OK, archive_write_set_format_ustar(a));
44         assertEqualIntA(a, ARCHIVE_OK, archive_write_set_compression_none(a));
45         assertEqualIntA(a, ARCHIVE_OK, archive_write_open_fd(a, fd));
46
47         /*
48          * Write a file to it.
49          */
50         assert((ae = archive_entry_new()) != NULL);
51         archive_entry_set_mtime(ae, 1, 0);
52         archive_entry_copy_pathname(ae, "file");
53         archive_entry_set_mode(ae, S_IFREG | 0755);
54         archive_entry_set_size(ae, 8);
55         assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
56         archive_entry_free(ae);
57         assertEqualIntA(a, 8, archive_write_data(a, "12345678", 9));
58
59         /*
60          * Write a second file to it.
61          */
62         assert((ae = archive_entry_new()) != NULL);
63         archive_entry_copy_pathname(ae, "file2");
64         archive_entry_set_mode(ae, S_IFREG | 0755);
65         archive_entry_set_size(ae, 819200);
66         assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
67         archive_entry_free(ae);
68
69         /* Close out the archive. */
70         assertEqualIntA(a, ARCHIVE_OK, archive_write_close(a));
71         assertEqualInt(ARCHIVE_OK, archive_write_finish(a));
72
73         /*
74          * Now, read the data back.
75          */
76         assert(lseek(fd, 0, SEEK_SET) == 0);
77         assert((a = archive_read_new()) != NULL);
78         assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_all(a));
79         assertEqualIntA(a, ARCHIVE_OK, archive_read_support_compression_all(a));
80         assertEqualIntA(a, ARCHIVE_OK, archive_read_open_fd(a, fd, 512));
81
82         assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
83         assertEqualInt(1, archive_entry_mtime(ae));
84         assertEqualInt(0, archive_entry_mtime_nsec(ae));
85         assertEqualInt(0, archive_entry_atime(ae));
86         assertEqualInt(0, archive_entry_ctime(ae));
87         assertEqualString("file", archive_entry_pathname(ae));
88         assert((S_IFREG | 0755) == archive_entry_mode(ae));
89         assertEqualInt(8, archive_entry_size(ae));
90         assertEqualIntA(a, 8, archive_read_data(a, buff, 10));
91         assertEqualMem(buff, "12345678", 8);
92
93         assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
94         assertEqualString("file2", archive_entry_pathname(ae));
95         assert((S_IFREG | 0755) == archive_entry_mode(ae));
96         assertEqualInt(819200, archive_entry_size(ae));
97         assertEqualIntA(a, ARCHIVE_OK, archive_read_data_skip(a));
98
99         /* Verify the end of the archive. */
100         assertEqualIntA(a, ARCHIVE_EOF, archive_read_next_header(a, &ae));
101         assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
102         assertEqualInt(ARCHIVE_OK, archive_read_finish(a));
103         close(fd);
104
105
106         /*
107          * Verify some of the error handling.
108          */
109         assert((a = archive_read_new()) != NULL);
110         assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_all(a));
111         assertEqualIntA(a, ARCHIVE_OK, archive_read_support_compression_all(a));
112         /* FD 100 shouldn't be open. */
113         assertEqualIntA(a, ARCHIVE_FATAL,
114             archive_read_open_fd(a, 100, 512));
115         assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
116         assertEqualInt(ARCHIVE_OK, archive_read_finish(a));
117 }