]> git.ipfire.org Git - thirdparty/git.git/blame - t/t1304-default-acl.sh
configure: don't use -lintl when there is no gettext support
[thirdparty/git.git] / t / t1304-default-acl.sh
CommitLineData
7aba6185
MM
1#!/bin/sh
2#
3# Copyright (c) 2010 Matthieu Moy
4#
5
6test_description='Test repository with default ACL'
7
8# Create the test repo with restrictive umask
9# => this must come before . ./test-lib.sh
10umask 077
11
12. ./test-lib.sh
13
14# We need an arbitrary other user give permission to using ACLs. root
15# is a good candidate: exists on all unices, and it has permission
16# anyway, so we don't create a security hole running the testsuite.
17
fadb5156
ÆAB
18setfacl_out="$(setfacl -m u:root:rwx . 2>&1)"
19setfacl_ret=$?
20
063b7e0c
ÆAB
21if test $setfacl_ret != 0
22then
23 say "Unable to use setfacl (output: '$setfacl_out'; return code: '$setfacl_ret')"
24else
25 test_set_prereq SETFACL
7aba6185
MM
26fi
27
ac2604cf
RS
28if test -z "$LOGNAME"
29then
30 LOGNAME=$USER
31fi
32
7aba6185 33check_perms_and_acl () {
71c4d6c6 34 test -r "$1" &&
7aba6185
MM
35 getfacl "$1" > actual &&
36 grep -q "user:root:rwx" actual &&
37 grep -q "user:${LOGNAME}:rwx" actual &&
80700fde 38 egrep "mask::?r--" actual > /dev/null 2>&1 &&
7aba6185
MM
39 grep -q "group::---" actual || false
40}
41
42dirs_to_set="./ .git/ .git/objects/ .git/objects/pack/"
43
063b7e0c 44test_expect_success SETFACL 'Setup test repo' '
ab04a905 45 setfacl -m d:u::rwx,d:g::---,d:o:---,d:m:rwx $dirs_to_set &&
2e85575a 46 setfacl -m m:rwx $dirs_to_set &&
7aba6185 47 setfacl -m u:root:rwx $dirs_to_set &&
db826571
BC
48 setfacl -m d:u:"$LOGNAME":rwx $dirs_to_set &&
49 setfacl -m d:u:root:rwx $dirs_to_set &&
7aba6185
MM
50
51 touch file.txt &&
52 git add file.txt &&
53 git commit -m "init"
54'
55
063b7e0c 56test_expect_success SETFACL 'Objects creation does not break ACLs with restrictive umask' '
7aba6185
MM
57 # SHA1 for empty blob
58 check_perms_and_acl .git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
59'
60
063b7e0c 61test_expect_success SETFACL 'git gc does not break ACLs with restrictive umask' '
7aba6185
MM
62 git gc &&
63 check_perms_and_acl .git/objects/pack/*.pack
64'
65
66test_done