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