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