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
28static void
29test1(void)
30{
31	struct archive_entry *ae;
32	struct archive *a;
33	const char *name = "test_read_format_iso.iso.Z";
34
35	extract_reference_file(name);
36
37	assert((a = archive_read_new()) != NULL);
38	assertEqualIntA(a, ARCHIVE_OK,
39	    archive_read_support_filter_all(a));
40	assertEqualIntA(a, ARCHIVE_OK,
41	    archive_read_support_format_all(a));
42	assertEqualIntA(a, ARCHIVE_OK,
43	    archive_read_open_filename(a, name, 512));
44	assertEqualIntA(a, ARCHIVE_OK,
45	    archive_read_next_header(a, &ae));
46	assertEqualInt(1, archive_file_count(a));
47	assertEqualInt(archive_filter_code(a, 0),
48	    ARCHIVE_FILTER_COMPRESS);
49	assertEqualInt(archive_format(a), ARCHIVE_FORMAT_ISO9660);
50	assertEqualInt(archive_entry_is_encrypted(ae), 0);
51	assertEqualIntA(a, archive_read_has_encrypted_entries(a), ARCHIVE_READ_FORMAT_ENCRYPTION_UNSUPPORTED);
52	assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
53	assertEqualInt(ARCHIVE_OK, archive_read_free(a));
54}
55
56static void
57test2(void)
58{
59	struct archive_entry *ae;
60	struct archive *a;
61	const char *name = "test_read_format_iso_2.iso.Z";
62
63	extract_reference_file(name);
64
65	assert((a = archive_read_new()) != NULL);
66	assertEqualIntA(a, ARCHIVE_OK,
67	    archive_read_support_filter_all(a));
68	assertEqualIntA(a, ARCHIVE_OK,
69	    archive_read_support_format_all(a));
70	assertEqualIntA(a, ARCHIVE_OK,
71	    archive_read_open_filename(a, name, 512));
72	assertEqualIntA(a, ARCHIVE_OK,
73	    archive_read_next_header(a, &ae));
74	assertEqualString(".", archive_entry_pathname(ae));
75	assertEqualIntA(a, ARCHIVE_OK,
76	    archive_read_next_header(a, &ae));
77	assertEqualString("A", archive_entry_pathname(ae));
78	assertEqualIntA(a, ARCHIVE_OK,
79	    archive_read_next_header(a, &ae));
80	assertEqualString("A/B", archive_entry_pathname(ae));
81	assertEqualIntA(a, ARCHIVE_OK,
82	    archive_read_next_header(a, &ae));
83	assertEqualString("C", archive_entry_pathname(ae));
84	assertEqualIntA(a, ARCHIVE_OK,
85	    archive_read_next_header(a, &ae));
86	assertEqualString("C/D", archive_entry_pathname(ae));
87	assertEqualIntA(a, ARCHIVE_EOF,
88	    archive_read_next_header(a, &ae));
89	assertEqualInt(5, archive_file_count(a));
90	assertEqualInt(archive_filter_code(a, 0),
91	    ARCHIVE_FILTER_COMPRESS);
92	assertEqualInt(archive_format(a), ARCHIVE_FORMAT_ISO9660);
93	assertEqualInt(archive_entry_is_encrypted(ae), 0);
94	assertEqualIntA(a, archive_read_has_encrypted_entries(a), ARCHIVE_READ_FORMAT_ENCRYPTION_UNSUPPORTED);
95	assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
96	assertEqualInt(ARCHIVE_OK, archive_read_free(a));
97}
98
99DEFINE_TEST(test_read_format_iso_Z)
100{
101	test1();
102	test2();
103}
104