Tizen 2.0 Release
[external/tizen-coreutils.git] / tests / mv / childproof
1 #!/bin/sh
2 # Ensure that cp/mv don't clobber a just-copied file.
3 # With fileutils-4.1 and earlier, this test would fail.
4
5 # Copyright (C) 2001, 2004, 2006 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 2 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, write to the Free Software
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 # 02110-1301, USA.
21
22 if test "$VERBOSE" = yes; then
23   set -x
24   cp --version
25   mv --version
26 fi
27
28 . $srcdir/../envvar-check
29 . $srcdir/../lang-default
30 PRIV_CHECK_ARG=require-non-root . $srcdir/../priv-check
31
32 pwd=`pwd`
33 tmp=childproof.$$
34 trap 'status=$?; cd "$pwd" && rm -rf $tmp && exit $status' 0
35 trap '(exit $?); exit' 1 2 13 15
36
37 framework_failure=0
38 mkdir $tmp || framework_failure=1
39 cd $tmp || framework_failure=1
40 mkdir a b c || framework_failure=1
41 echo a > a/f || framework_failure=1
42 echo b > b/f || framework_failure=1
43
44 if test $framework_failure = 1; then
45   echo 'failure in testing framework' 1>&2
46   (exit 1); exit 1
47 fi
48
49 fail=0
50
51 cp a/f b/f c 2> /dev/null && fail=1
52 test -f a/f || fail=1
53 test -f b/f || fail=1
54 test -f c/f || fail=1
55 test "`cat c/f`" = a || fail=1
56 rm -f c/f
57
58 # With --backup=numbered, it should succeed
59 cp --backup=numbered a/f b/f c || fail=1
60 test -f a/f || fail=1
61 test -f b/f || fail=1
62 test -f c/f || fail=1
63 test -f c/f.~1~ || fail=1
64 rm -f c/f*
65
66 mv a/f b/f c 2> /dev/null && fail=1
67 test -f a/f && fail=1
68 test -f b/f || fail=1
69 test -f c/f || fail=1
70 test "`cat c/f`" = a || fail=1
71
72 # Make sure mv still works when moving hard links.
73 # This is where the same_file test is necessary, and why
74 # we save file names in addition to dev/ino.
75 rm -f c/f* b/f
76 touch a/f
77 ln a/f b/g
78 mv a/f b/g c || fail=1
79 test -f a/f && fail=1
80 test -f b/g && fail=1
81 test -f c/f || fail=1
82 test -f c/g || fail=1
83
84 touch a/f b/f b/g
85 mv a/f b/f b/g c 2> /dev/null && fail=1
86 test -f a/f && fail=1  # a/f should have been moved
87 test -f b/f || fail=1  # b/f should remain
88 test -f b/g && fail=1  # b/g should have been moved
89 test -f c/f || fail=1
90 test -f c/g || fail=1
91
92 (exit $fail); exit $fail