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