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