1 /*-
2 * Copyright (c) 2012 Michihiro NAKAJIMA
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
27 /*
28 * Read a zip file that has a zip comment in the end of the central
29 * directory record.
30 */
DEFINE_TEST(test_read_format_zip_mac_metadata)31 DEFINE_TEST(test_read_format_zip_mac_metadata)
32 {
33 const char *refname = "test_read_format_zip_mac_metadata.zip";
34 char *p;
35 size_t s;
36 struct archive *a;
37 struct archive_entry *ae;
38 const unsigned char appledouble[] = {
39 0x00, 0x05, 0x16, 0x07, 0x00, 0x02, 0x00, 0x00,
40 0x4d, 0x61, 0x63, 0x20, 0x4f, 0x53, 0x20, 0x58,
41 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20,
42 0x00, 0x02, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00,
43 0x00, 0x32, 0x00, 0x00, 0x00, 0xed, 0x00, 0x00,
44 0x00, 0x02, 0x00, 0x00, 0x01, 0x1f, 0x00, 0x00,
45 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
46 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
47 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
48 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
49 0x00, 0x00, 0x00, 0x00, 0x41, 0x54, 0x54, 0x52,
50 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x1f,
51 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x87,
52 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
53 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
54 0x00, 0x00, 0x00, 0x98, 0x00, 0x00, 0x00, 0x87,
55 0x00, 0x00, 0x13, 0x63, 0x6f, 0x6d, 0x2e, 0x61,
56 0x70, 0x70, 0x6c, 0x65, 0x2e, 0x61, 0x63, 0x6c,
57 0x2e, 0x74, 0x65, 0x78, 0x74, 0x00, 0x00, 0x00,
58 0x21, 0x23, 0x61, 0x63, 0x6c, 0x20, 0x31, 0x0a,
59 0x75, 0x73, 0x65, 0x72, 0x3a, 0x46, 0x46, 0x46,
60 0x46, 0x45, 0x45, 0x45, 0x45, 0x2d, 0x44, 0x44,
61 0x44, 0x44, 0x2d, 0x43, 0x43, 0x43, 0x43, 0x2d,
62 0x42, 0x42, 0x42, 0x42, 0x2d, 0x41, 0x41, 0x41,
63 0x41, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x43,
64 0x39, 0x3a, 0x47, 0x75, 0x65, 0x73, 0x74, 0x3a,
65 0x32, 0x30, 0x31, 0x3a, 0x64, 0x65, 0x6e, 0x79,
66 0x3a, 0x72, 0x65, 0x61, 0x64, 0x0a, 0x67, 0x72,
67 0x6f, 0x75, 0x70, 0x3a, 0x41, 0x42, 0x43, 0x44,
68 0x45, 0x46, 0x41, 0x42, 0x2d, 0x43, 0x44, 0x45,
69 0x46, 0x2d, 0x41, 0x42, 0x43, 0x44, 0x2d, 0x45,
70 0x46, 0x41, 0x42, 0x2d, 0x43, 0x44, 0x45, 0x46,
71 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x35, 0x30,
72 0x3a, 0x61, 0x64, 0x6d, 0x69, 0x6e, 0x3a, 0x38,
73 0x30, 0x3a, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x3a,
74 0x77, 0x72, 0x69, 0x74, 0x65, 0x0a, 0x00
75 };
76
77 extract_reference_file(refname);
78 p = slurpfile(&s, "%s", refname);
79
80 /* Mac metadata can only be extracted with the seeking reader. */
81 assert((a = archive_read_new()) != NULL);
82 assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_zip(a));
83 assertEqualIntA(a, ARCHIVE_OK, archive_read_set_option(a, "zip", "mac-ext", "1"));
84 assertEqualIntA(a, ARCHIVE_OK, read_open_memory_seek(a, p, s, 1));
85
86 if (archive_zlib_version() != NULL) {
87 assertEqualIntA(a, ARCHIVE_OK,
88 archive_read_next_header(a, &ae));
89 } else {
90 assertEqualIntA(a, ARCHIVE_WARN,
91 archive_read_next_header(a, &ae));
92 assertEqualString(archive_error_string(a),
93 "Unsupported ZIP compression method (deflation)");
94 assert(archive_errno(a) != 0);
95 }
96 assertEqualInt(archive_entry_is_encrypted(ae), 0);
97 assertEqualIntA(a, archive_read_has_encrypted_entries(a), 0);
98 assertEqualString("file3", archive_entry_pathname(ae));
99 assertEqualInt(AE_IFREG | 0644, archive_entry_mode(ae));
100 failure("Mac metadata should be set");
101 if (archive_zlib_version() != NULL) {
102 const void *metadata;
103 if (assert((metadata = archive_entry_mac_metadata(ae, &s))
104 != NULL)) {
105 assertEqualMem(metadata, appledouble,
106 sizeof(appledouble));
107 }
108 } else {
109 assert(archive_entry_mac_metadata(ae, &s) == NULL);
110 }
111 assertEqualIntA(a, ARCHIVE_EOF, archive_read_next_header(a, &ae));
112 assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
113 assertEqualIntA(a, ARCHIVE_OK, archive_read_free(a));
114
115 free(p);
116 }
117