1 /*-
2  * Copyright (C) 2014 Sebastian Freundt
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 
26 #include "test.h"
27 
DEFINE_TEST(test_write_format_warc_empty)28 DEFINE_TEST(test_write_format_warc_empty)
29 {
30 	struct archive *a;
31 	struct archive_entry *ae;
32 	char buff[512U];
33 	size_t used;
34 
35 	/* Create a new archive in memory. */
36 	assert((a = archive_write_new()) != NULL);
37 	assertEqualIntA(a, ARCHIVE_OK, archive_write_set_format_warc(a));
38 	assertEqualIntA(a, ARCHIVE_OK, archive_write_add_filter_none(a));
39 	assertEqualIntA(a, ARCHIVE_OK,
40 	    archive_write_open_memory(a, buff, sizeof(buff), &used));
41 
42 	/* Add "." entry which must be ignored. */
43 	assert((ae = archive_entry_new()) != NULL);
44 	archive_entry_set_atime(ae, 2, 0);
45 	archive_entry_set_ctime(ae, 4, 0);
46 	archive_entry_set_mtime(ae, 5, 0);
47 	archive_entry_copy_pathname(ae, ".");
48 	archive_entry_set_mode(ae, S_IFDIR | 0755);
49 	assertEqualIntA(a, ARCHIVE_FAILED, archive_write_header(a, ae));
50 	archive_entry_free(ae);
51 
52 	/* Add ".." entry which must be ignored. */
53 	assert((ae = archive_entry_new()) != NULL);
54 	archive_entry_set_atime(ae, 2, 0);
55 	archive_entry_set_ctime(ae, 4, 0);
56 	archive_entry_set_mtime(ae, 5, 0);
57 	archive_entry_copy_pathname(ae, "..");
58 	archive_entry_set_mode(ae, S_IFDIR | 0755);
59 	assertEqualIntA(a, ARCHIVE_FAILED, archive_write_header(a, ae));
60 	archive_entry_free(ae);
61 
62 	/* Add "/" entry which must be ignored. */
63 	assert((ae = archive_entry_new()) != NULL);
64 	archive_entry_set_atime(ae, 2, 0);
65 	archive_entry_set_ctime(ae, 4, 0);
66 	archive_entry_set_mtime(ae, 5, 0);
67 	archive_entry_copy_pathname(ae, "/");
68 	archive_entry_set_mode(ae, S_IFDIR | 0755);
69 	assertEqualIntA(a, ARCHIVE_FAILED, archive_write_header(a, ae));
70 	archive_entry_free(ae);
71 
72 	/* Add "../" entry which must be ignored. */
73 	assert((ae = archive_entry_new()) != NULL);
74 	archive_entry_set_atime(ae, 2, 0);
75 	archive_entry_set_ctime(ae, 4, 0);
76 	archive_entry_set_mtime(ae, 5, 0);
77 	archive_entry_copy_pathname(ae, "../");
78 	archive_entry_set_mode(ae, S_IFDIR | 0755);
79 	assertEqualIntA(a, ARCHIVE_FAILED, archive_write_header(a, ae));
80 	archive_entry_free(ae);
81 
82 	/* Add "../../." entry which must be ignored. */
83 	assert((ae = archive_entry_new()) != NULL);
84 	archive_entry_set_atime(ae, 2, 0);
85 	archive_entry_set_ctime(ae, 4, 0);
86 	archive_entry_set_mtime(ae, 5, 0);
87 	archive_entry_copy_pathname(ae, "../../.");
88 	archive_entry_set_mode(ae, S_IFDIR | 0755);
89 	assertEqualIntA(a, ARCHIVE_FAILED, archive_write_header(a, ae));
90 	archive_entry_free(ae);
91 
92 	/* Add "..//.././" entry which must be ignored. */
93 	assert((ae = archive_entry_new()) != NULL);
94 	archive_entry_set_atime(ae, 2, 0);
95 	archive_entry_set_ctime(ae, 4, 0);
96 	archive_entry_set_mtime(ae, 5, 0);
97 	archive_entry_copy_pathname(ae, "..//.././");
98 	archive_entry_set_mode(ae, S_IFDIR | 0755);
99 	assertEqualIntA(a, ARCHIVE_FAILED, archive_write_header(a, ae));
100 	archive_entry_free(ae);
101 
102 	/* Close out the archive without writing anything. */
103 	assertEqualIntA(a, ARCHIVE_OK, archive_write_close(a));
104 	assertEqualInt(ARCHIVE_OK, archive_write_free(a));
105 
106 	/* Test whether last archive is empty indeed. */
107 	assert((a = archive_read_new()) != NULL);
108 	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_all(a));
109 	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_filter_all(a));
110 	assertEqualIntA(a, ARCHIVE_OK, archive_read_open_memory(a, buff, used));
111 
112 	/* Test EOF */
113 	assertEqualIntA(a, ARCHIVE_EOF, archive_read_next_header(a, &ae));
114 	assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
115 	assertEqualInt(ARCHIVE_OK, archive_read_free(a));
116 }
117