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