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
31 static const char image [] = {
32 "#mtree\n"
33 "./a\\040!$\\043&\\075_^z\\177~ mode=644 type=file\n"
34 };
35
36
DEFINE_TEST(test_write_format_mtree_quoted_filename)37 DEFINE_TEST(test_write_format_mtree_quoted_filename)
38 {
39 struct archive_entry *ae;
40 struct archive* a;
41 size_t used;
42
43 /* Create a mtree format archive. */
44 assert((a = archive_write_new()) != NULL);
45 assertEqualIntA(a, ARCHIVE_OK, archive_write_set_format_mtree(a));
46 assertEqualIntA(a, ARCHIVE_OK,
47 archive_write_set_format_option(a, NULL, "all", NULL));
48 assertEqualIntA(a, ARCHIVE_OK,
49 archive_write_set_format_option(a, NULL, "type", "1"));
50 assertEqualIntA(a, ARCHIVE_OK,
51 archive_write_set_format_option(a, NULL, "mode", "1"));
52 assertEqualIntA(a, ARCHIVE_OK,
53 archive_write_open_memory(a, buff, sizeof(buff)-1, &used));
54
55 /* Write entry which has #, = , \ and DEL(0177) in the filename. */
56 assert((ae = archive_entry_new()) != NULL);
57 archive_entry_set_mode(ae, AE_IFREG | 0644);
58 assertEqualInt(AE_IFREG | 0644, archive_entry_mode(ae));
59 archive_entry_copy_pathname(ae, "./a !$#&=_^z\177~");
60 assertEqualIntA(a, ARCHIVE_OK, archive_write_header(a, ae));
61 archive_entry_free(ae);
62
63 assertEqualIntA(a, ARCHIVE_OK, archive_write_close(a));
64 assertEqualInt(ARCHIVE_OK, archive_write_free(a));
65
66 buff[used] = '\0';
67 failure("#, = and \\ in the filename should be quoted");
68 assertEqualString(buff, image);
69
70 /*
71 * Read the data and check it.
72 */
73 assert((a = archive_read_new()) != NULL);
74 assertEqualIntA(a, ARCHIVE_OK, archive_read_support_format_all(a));
75 assertEqualIntA(a, ARCHIVE_OK, archive_read_support_filter_all(a));
76 assertEqualIntA(a, ARCHIVE_OK, archive_read_open_memory(a, buff, used));
77
78 /* Read entry */
79 assertEqualIntA(a, ARCHIVE_OK, archive_read_next_header(a, &ae));
80 assertEqualInt(AE_IFREG | 0644, archive_entry_mode(ae));
81 assertEqualString("./a !$#&=_^z\177~", archive_entry_pathname(ae));
82 assertEqualIntA(a, ARCHIVE_OK, archive_read_close(a));
83 assertEqualInt(ARCHIVE_OK, archive_read_free(a));
84 }
85
86