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 *    in this position and unchanged.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 */
26
27#include "test.h"
28
29#ifdef HAVE_SYS_STAT_H
30#include <sys/stat.h>
31#endif
32
33static char buff[4096];
34
35DEFINE_TEST(test_write_format_mtree_no_separator)
36{
37	struct archive_entry *ae;
38	struct archive* a;
39	size_t used;
40
41	/* Create a mtree format archive. */
42	assert((a = archive_write_new()) != NULL);
43	assertEqualIntA(a, ARCHIVE_OK, archive_write_set_format_mtree(a));
44	assertEqualIntA(a, ARCHIVE_OK,
45	    archive_write_open_memory(a, buff, sizeof(buff)-1, &used));
46
47	/* Write "." file.  */
48	assert((ae = archive_entry_new()) != NULL);
49	archive_entry_copy_pathname(ae, ".");
50	archive_entry_set_mode(ae, AE_IFDIR | 0755);
51	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
52	archive_entry_free(ae);
53
54	/* Write "noseparator" file.  */
55	assert((ae = archive_entry_new()) != NULL);
56	archive_entry_copy_pathname(ae, "noseparator");
57	archive_entry_set_size(ae, 0);
58	archive_entry_set_mode(ae, AE_IFREG | 0644);
59	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
60	archive_entry_free(ae);
61
62	/* Write "./withseparator" file.  */
63	assert((ae = archive_entry_new()) != NULL);
64	archive_entry_copy_pathname(ae, "./withseparator");
65	archive_entry_set_size(ae, 0);
66	archive_entry_set_mode(ae, AE_IFREG | 0644);
67	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
68	archive_entry_free(ae);
69
70	assertEqualIntA(a, ARCHIVE_OK, archive_write_close(a));
71        assertEqualInt(ARCHIVE_OK, archive_write_free(a));
72
73	/*
74	 * Read the data and check it.
75	 */
76	assert((a = archive_read_new()) != NULL);
77	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_all(a));
78	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_filter_all(a));
79	assertEqualIntA(a, ARCHIVE_OK, archive_read_open_memory(a, buff, used));
80
81	/* Read "." file. */
82	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
83	failure("The path should be just \".\"");
84	assertEqualString(archive_entry_pathname(ae), ".");
85	assertEqualInt(archive_entry_mode(ae), AE_IFDIR | 0755);
86
87	/* Read "./noseparator" file. */
88	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
89	failure("The path should have \"./\" prefix");
90	assertEqualString(archive_entry_pathname(ae), "./noseparator");
91	assertEqualInt(archive_entry_size(ae), 0);
92	assertEqualInt(archive_entry_mode(ae), AE_IFREG | 0644);
93
94	/* Read "./withseparator" file. */
95	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
96	assertEqualString(archive_entry_pathname(ae), "./withseparator");
97	assertEqualInt(archive_entry_size(ae), 0);
98	assertEqualInt(archive_entry_mode(ae), AE_IFREG | 0644);
99
100	assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
101	assertEqualInt(ARCHIVE_OK, archive_read_free(a));
102}
103
104