xref: /netbsd-src/external/bsd/libarchive/dist/libarchive/test/test_read_format_isojoliet_bz2.c (revision 65e637ab3a9cc7c3e7749c941a1011ecd65517e6)
1 /*-
2  * Copyright (c) 2003-2007 Tim Kientzle
3  * All rights reserved.
4  *
5  * Based on libarchive/test/test_read_format_isorr_bz2.c with
6  * bugs introduced by Andreas Henriksson <andreas@fatal.se> for
7  * testing ISO9660 image with Joliet extension.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
19  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21  * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
22  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29 #include "test.h"
30 
31 /*
32 Execute the following to rebuild the data for this program:
33    tail -n +35 test_read_format_isojoliet_bz2.c | /bin/sh
34 
35 rm -rf /tmp/iso
36 mkdir /tmp/iso
37 mkdir /tmp/iso/dir
38 echo "hello" >/tmp/iso/long-joliet-file-name.textfile
39 ln /tmp/iso/long-joliet-file-name.textfile /tmp/iso/hardlink
40 (cd /tmp/iso; ln -s long-joliet-file-name.textfile symlink)
41 if [ "$(uname -s)" = "Linux" ]; then # gnu coreutils touch doesn't have -h
42 TZ=utc touch -afm -t 197001020000.01 /tmp/iso /tmp/iso/long-joliet-file-name.textfile /tmp/iso/dir
43 TZ=utc touch -afm -t 197001030000.02 /tmp/iso/symlink
44 else
45 TZ=utc touch -afhm -t 197001020000.01 /tmp/iso /tmp/iso/long-joliet-file-name.textfile /tmp/iso/dir
46 TZ=utc touch -afhm -t 197001030000.02 /tmp/iso/symlink
47 fi
48 F=test_read_format_iso_joliet.iso.Z
49 mkhybrid -J -uid 1 -gid 2 /tmp/iso | compress > $F
50 uuencode $F $F > $F.uu
51 exit 1
52  */
53 
DEFINE_TEST(test_read_format_isojoliet_bz2)54 DEFINE_TEST(test_read_format_isojoliet_bz2)
55 {
56 	const char *refname = "test_read_format_iso_joliet.iso.Z";
57 	struct archive_entry *ae;
58 	struct archive *a;
59 	const void *p;
60 	size_t size;
61 	int64_t offset;
62 
63 	extract_reference_file(refname);
64 	assert((a = archive_read_new()) != NULL);
65 	assertEqualInt(0, archive_read_support_filter_all(a));
66 	assertEqualInt(0, archive_read_support_format_all(a));
67 	assertEqualInt(ARCHIVE_OK,
68 	    archive_read_set_option(a, "iso9660", "rockridge", NULL));
69 	assertEqualInt(ARCHIVE_OK,
70 	    archive_read_open_filename(a, refname, 10240));
71 
72 	/* First entry is '.' root directory. */
73 	assertEqualInt(0, archive_read_next_header(a, &ae));
74 	assertEqualString(".", archive_entry_pathname(ae));
75 	assertEqualInt(AE_IFDIR, archive_entry_filetype(ae));
76 	assertEqualInt(2048, archive_entry_size(ae));
77 	assertEqualInt(86401, archive_entry_mtime(ae));
78 	assertEqualInt(0, archive_entry_mtime_nsec(ae));
79 	assertEqualInt(86401, archive_entry_ctime(ae));
80 	assertEqualInt(3, archive_entry_stat(ae)->st_nlink);
81 	assertEqualInt(0, archive_entry_uid(ae));
82 	assertEqualIntA(a, ARCHIVE_EOF,
83 	    archive_read_data_block(a, &p, &size, &offset));
84 	assertEqualInt((int)size, 0);
85 	assertEqualInt(archive_entry_is_encrypted(ae), 0);
86 	assertEqualIntA(a, archive_read_has_encrypted_entries(a), ARCHIVE_READ_FORMAT_ENCRYPTION_UNSUPPORTED);
87 
88 	/* A directory. */
89 	assertEqualInt(0, archive_read_next_header(a, &ae));
90 	assertEqualString("dir", archive_entry_pathname(ae));
91 	assertEqualInt(AE_IFDIR, archive_entry_filetype(ae));
92 	assertEqualInt(2048, archive_entry_size(ae));
93 	assertEqualInt(86401, archive_entry_mtime(ae));
94 	assertEqualInt(86401, archive_entry_atime(ae));
95 	assertEqualInt(archive_entry_is_encrypted(ae), 0);
96 	assertEqualIntA(a, archive_read_has_encrypted_entries(a), ARCHIVE_READ_FORMAT_ENCRYPTION_UNSUPPORTED);
97 
98 	/* A regular file with two names ("hardlink" gets returned
99 	 * first, so it's not marked as a hardlink). */
100 	assertEqualInt(0, archive_read_next_header(a, &ae));
101 	assertEqualString("hardlink",
102 	    archive_entry_pathname(ae));
103 	assertEqualInt(AE_IFREG, archive_entry_filetype(ae));
104 	assert(archive_entry_hardlink(ae) == NULL);
105 	assertEqualInt(6, archive_entry_size(ae));
106 	assertEqualInt(0, archive_read_data_block(a, &p, &size, &offset));
107 	assertEqualInt(6, (int)size);
108 	assertEqualInt(0, offset);
109 	assertEqualMem(p, "hello\n", 6);
110 
111 	/* Second name for the same regular file (this happens to be
112 	 * returned second, so does get marked as a hardlink). */
113 	assertEqualInt(0, archive_read_next_header(a, &ae));
114 	assertEqualString("long-joliet-file-name.textfile",
115 	    archive_entry_pathname(ae));
116 	assertEqualInt(AE_IFREG, archive_entry_filetype(ae));
117 	assertEqualString("hardlink",
118 	    archive_entry_hardlink(ae));
119 	assert(!archive_entry_size_is_set(ae));
120 
121 	/* A symlink to the regular file. */
122 	assertEqualInt(0, archive_read_next_header(a, &ae));
123 	assertEqualString("symlink", archive_entry_pathname(ae));
124 	assertEqualInt(0, archive_entry_size(ae));
125 	assertEqualInt(172802, archive_entry_mtime(ae));
126 	assertEqualInt(172802, archive_entry_atime(ae));
127 	assertEqualInt(archive_entry_is_encrypted(ae), 0);
128 	assertEqualIntA(a, archive_read_has_encrypted_entries(a), ARCHIVE_READ_FORMAT_ENCRYPTION_UNSUPPORTED);
129 
130 	/* End of archive. */
131 	assertEqualInt(ARCHIVE_EOF, archive_read_next_header(a, &ae));
132 
133 	/* Verify archive format. */
134 	assertEqualInt(archive_filter_code(a, 0), ARCHIVE_FILTER_COMPRESS);
135 
136 	/* Close the archive. */
137 	assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
138 	assertEqualInt(ARCHIVE_OK, archive_read_free(a));
139 }
140 
141