tests: factor 350 fail=0 initializations into test-lib.sh
[platform/upstream/coreutils.git] / tests / mkdir / perm
1 #!/bin/sh
2 # Verify that mkdir's `-m MODE' option works properly
3 # with various umask settings.
4
5 # Copyright (C) 2000, 2002-2009 Free Software Foundation, Inc.
6
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 if test "$VERBOSE" = yes; then
21   set -x
22   mkdir --version
23 fi
24
25 . $srcdir/test-lib.sh
26 skip_if_setgid_
27
28 working_umask_or_skip_
29
30
31 #                         parent        parent/dir
32 # umask   -m option   resulting perm  resulting perm
33 tests='
34     000  :   empty    : drwxrwxrwx : drwxrwxrwx :
35     000  :   -m 016   : drwxrwxrwx : d-----xrw- :
36     077  :   empty    : drwx------ : drwx------ :
37     050  :   empty    : drwx-w-rwx : drwx-w-rwx :
38     050  :   -m 312   : drwx-w-rwx : d-wx--x-w- :
39     160  :   empty    : drwx--xrwx : drw---xrwx :
40     160  :   -m 743   : drwx--xrwx : drwxr---wx :
41     027  :   -m =+x   : drwxr-x--- : d--x--x--- :
42     027  :   -m =+X   : drwxr-x--- : d--x--x--- :
43     -    :   -        : last       : last       :
44     '
45 colon_tests=`echo $tests | sed 's/^ *//; s/ *: */:/g'`
46
47 for p in empty -p; do
48   test _$p = _empty && p=
49
50   old_IFS=$IFS
51   IFS=':'
52   set $colon_tests
53   IFS=$old_IFS
54
55   while :; do
56     test "$VERBOSE" = yes && set -x
57     umask=$1 mode=$2 parent_perms=$3 sub_perms=$4
58     test "_$mode" = _empty && mode=
59     test $sub_perms = last && break
60     # echo p=$p umask=$1 mode=$2 parent_perms=$3 sub_perms=$4
61     shift; shift; shift; shift
62     umask $umask
63
64     # If we're not using -p, then create the parent manually,
65     # and adjust expectations accordingly.
66     test x$p = x && \
67       {
68         mkdir -m =,u=rwx parent || fail=1
69         parent_perms=drwx------
70       }
71
72     mkdir $p $mode parent/sub || fail=1
73
74     perms=$(stat --printf %A parent)
75     test "$parent_perms" = "$perms" \
76       || { fail=1; echo parent: expected $parent_perms, got $perms; }
77
78     perms=$(stat --printf %A parent/sub)
79     test "$sub_perms" = "$perms" \
80       || { fail=1; echo parent/sub: expected $sub_perms, got $perms; }
81
82     chmod -R u+rwx parent
83     rm -rf parent || fail=1
84   done
85 done
86
87 Exit $fail