1/*-
2 * Copyright (c) 2003-2007 Tim Kientzle
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 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) ``AS IS'' AND ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17 * IN NO EVENT SHALL THE AUTHOR(S) BE LIABLE FOR ANY DIRECT, INDIRECT,
18 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */
25#include "test.h"
26__FBSDID("$FreeBSD$");
27
28DEFINE_TEST(test_entry_strmode)
29{
30	struct archive_entry *entry;
31
32	assert((entry = archive_entry_new()) != NULL);
33
34	archive_entry_set_mode(entry, AE_IFREG | 0642);
35	assertEqualString(archive_entry_strmode(entry), "-rw-r---w- ");
36
37	/* Regular file + hardlink still shows as regular file. */
38	archive_entry_set_mode(entry, AE_IFREG | 0644);
39	archive_entry_set_hardlink(entry, "link");
40	assertEqualString(archive_entry_strmode(entry), "-rw-r--r-- ");
41
42	archive_entry_set_mode(entry, 0640);
43	archive_entry_set_hardlink(entry, "link");
44	assertEqualString(archive_entry_strmode(entry), "hrw-r----- ");
45	archive_entry_set_hardlink(entry, NULL);
46
47	archive_entry_set_mode(entry, AE_IFDIR | 0777);
48	assertEqualString(archive_entry_strmode(entry), "drwxrwxrwx ");
49
50	archive_entry_set_mode(entry, AE_IFBLK | 03642);
51	assertEqualString(archive_entry_strmode(entry), "brw-r-S-wT ");
52
53	archive_entry_set_mode(entry, AE_IFCHR | 05777);
54	assertEqualString(archive_entry_strmode(entry), "crwsrwxrwt ");
55
56	archive_entry_set_mode(entry, AE_IFSOCK | 0222);
57	assertEqualString(archive_entry_strmode(entry), "s-w--w--w- ");
58
59	archive_entry_set_mode(entry, AE_IFIFO | 0444);
60	assertEqualString(archive_entry_strmode(entry), "pr--r--r-- ");
61
62	archive_entry_set_mode(entry, AE_IFLNK | 04000);
63	assertEqualString(archive_entry_strmode(entry), "l--S------ ");
64
65	archive_entry_acl_add_entry(entry, ARCHIVE_ENTRY_ACL_TYPE_ACCESS,
66	    0007, ARCHIVE_ENTRY_ACL_GROUP, 78, "group78");
67	assertEqualString(archive_entry_strmode(entry), "l--S------+");
68
69	/* Release the experimental entry. */
70	archive_entry_free(entry);
71}
72