tests: factor 350 fail=0 initializations into test-lib.sh
[platform/upstream/coreutils.git] / tests / chown / separator
1 #!/bin/sh
2 # Make sure "chown USER:GROUP FILE" works, and similar tests with separators.
3
4 # Copyright (C) 2004-2009 Free Software Foundation, Inc.
5
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 if test "$VERBOSE" = yes; then
20   set -x
21   chown --version
22 fi
23
24 . $srcdir/test-lib.sh
25
26 id_u=`id -u` || framework_failure
27 test -n "$id_u" || framework_failure
28
29 id_un=`id -un` || framework_failure
30 test -n "$id_un" || framework_failure
31
32 id_g=`id -g` || framework_failure
33 test -n "$id_g" || framework_failure
34
35 id_gn=`id -gn` || framework_failure
36 test -n "$id_gn" || framework_failure
37
38 # FreeBSD 6.x's getgrnam fails to look up a group name containing
39 # a space. On such a system, skip this test if the group name contains
40 # a byte not in the portable filename character set.
41 case $host_triplet in
42   *-freebsd6.*)
43     case $id_gn in
44       *[^a-zA-Z0-9._-]*) skip_test_ "invalid group name: $id_gn";;
45     esac;;
46   *) ;;
47 esac
48
49
50 chown '' . || fail=1
51
52 for u in $id_u "$id_un" ''; do
53   for g in $id_g "$id_gn" ''; do
54     case $u$g in
55       *.*) seps=':' ;;
56       *)   seps=': .' ;;
57     esac
58     for sep in $seps; do
59       case $u$sep$g in
60         [0-9]*$sep) chown "$u$sep$g" . 2> /dev/null && fail=1 ;;
61         *) chown "$u$sep$g" . || fail=1 ;;
62       esac
63     done
64   done
65 done
66
67 Exit $fail