global: convert indentation-TABs to spaces
[coreutils.git] / tests / chown / separator
blob4ee285647b5a6de39aa919d9960df550272bf239
1 #!/bin/sh
2 # Make sure "chown USER:GROUP FILE" works, and similar tests with separators.
4 # Copyright (C) 2004-2009 Free Software Foundation, Inc.
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.
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.
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/>.
19 if test "$VERBOSE" = yes; then
20 set -x
21 chown --version
24 . $srcdir/test-lib.sh
26 id_u=`id -u` || framework_failure
27 test -n "$id_u" || framework_failure
29 id_un=`id -un` || framework_failure
30 test -n "$id_un" || framework_failure
32 id_g=`id -g` || framework_failure
33 test -n "$id_g" || framework_failure
35 id_gn=`id -gn` || framework_failure
36 test -n "$id_gn" || framework_failure
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
49 fail=0
51 chown '' . || fail=1
53 for u in $id_u "$id_un" ''; do
54 for g in $id_g "$id_gn" ''; do
55 case $u$g in
56 *.*) seps=':' ;;
57 *) seps=': .' ;;
58 esac
59 for sep in $seps; do
60 case $u$sep$g in
61 [0-9]*$sep) chown "$u$sep$g" . 2> /dev/null && fail=1 ;;
62 *) chown "$u$sep$g" . || fail=1 ;;
63 esac
64 done
65 done
66 done
68 Exit $fail