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 static char buff[4096];
30 
DEFINE_TEST(test_write_format_mtree_absolute_path)31 DEFINE_TEST(test_write_format_mtree_absolute_path)
32 {
33 	struct archive_entry *ae;
34 	struct archive* a;
35 	size_t used;
36 
37 	/* Create a mtree format archive. */
38 	assert((a = archive_write_new()) != NULL);
39 	assertEqualIntA(a, ARCHIVE_OK, archive_write_set_format_mtree(a));
40 	assertEqualIntA(a, ARCHIVE_OK,
41 	    archive_write_open_memory(a, buff, sizeof(buff)-1, &used));
42 
43 	/* Write "." file.  */
44 	assert((ae = archive_entry_new()) != NULL);
45 	archive_entry_copy_pathname(ae, ".");
46 	archive_entry_set_mode(ae, AE_IFDIR | 0755);
47 	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
48 	archive_entry_free(ae);
49 
50 	/* Write "/file" file.  */
51 	assert((ae = archive_entry_new()) != NULL);
52 	archive_entry_copy_pathname(ae, "/file");
53 	archive_entry_set_size(ae, 0);
54 	archive_entry_set_mode(ae, AE_IFREG | 0644);
55 	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
56 	archive_entry_free(ae);
57 
58 	/* Write "/dir" directory.  */
59 	assert((ae = archive_entry_new()) != NULL);
60 	archive_entry_copy_pathname(ae, "/dir");
61 	archive_entry_set_mode(ae, AE_IFDIR | 0755);
62 	assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
63 	archive_entry_free(ae);
64 
65 	assertEqualIntA(a, ARCHIVE_OK, archive_write_close(a));
66         assertEqualInt(ARCHIVE_OK, archive_write_free(a));
67 
68 	/*
69 	 * Read the data and check it.
70 	 */
71 	assert((a = archive_read_new()) != NULL);
72 	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_all(a));
73 	assertEqualIntA(a, ARCHIVE_OK, archive_read_support_filter_all(a));
74 	assertEqualIntA(a, ARCHIVE_OK, archive_read_open_memory(a, buff, used));
75 
76 	/* Read "." file. */
77 	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
78 	failure("The path should be just \".\"");
79 	assertEqualString(archive_entry_pathname(ae), ".");
80 	assertEqualInt(archive_entry_mode(ae), AE_IFDIR | 0755);
81 
82 	/* Read "/file" file. */
83 	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
84 	failure("The path should have \"./\" prefix");
85 	assertEqualString(archive_entry_pathname(ae), "./file");
86 	assertEqualInt(archive_entry_size(ae), 0);
87 	assertEqualInt(archive_entry_mode(ae), AE_IFREG | 0644);
88 
89 	/* Read "/dir" file. */
90 	assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
91 	failure("The path should have \"./\" prefix");
92 	assertEqualString(archive_entry_pathname(ae), "./dir");
93 	assertEqualInt(archive_entry_mode(ae), AE_IFDIR | 0755);
94 
95 	assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
96 	assertEqualInt(ARCHIVE_OK, archive_read_free(a));
97 }
98 
99