Blame


1 2ec1f75b 2019-03-26 stsp #!/bin/sh
2 2ec1f75b 2019-03-26 stsp #
3 2ec1f75b 2019-03-26 stsp # Copyright (c) 2019 Stefan Sperling <stsp@openbsd.org>
4 2ec1f75b 2019-03-26 stsp #
5 2ec1f75b 2019-03-26 stsp # Permission to use, copy, modify, and distribute this software for any
6 2ec1f75b 2019-03-26 stsp # purpose with or without fee is hereby granted, provided that the above
7 2ec1f75b 2019-03-26 stsp # copyright notice and this permission notice appear in all copies.
8 2ec1f75b 2019-03-26 stsp #
9 2ec1f75b 2019-03-26 stsp # THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 2ec1f75b 2019-03-26 stsp # WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 2ec1f75b 2019-03-26 stsp # MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 2ec1f75b 2019-03-26 stsp # ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 2ec1f75b 2019-03-26 stsp # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 2ec1f75b 2019-03-26 stsp # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 2ec1f75b 2019-03-26 stsp # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 2ec1f75b 2019-03-26 stsp
17 2ec1f75b 2019-03-26 stsp . ./common.sh
18 2ec1f75b 2019-03-26 stsp
19 2ec1f75b 2019-03-26 stsp function test_rm_basic {
20 2ec1f75b 2019-03-26 stsp local testroot=`test_init rm_basic`
21 2ec1f75b 2019-03-26 stsp
22 2ec1f75b 2019-03-26 stsp got checkout $testroot/repo $testroot/wt > /dev/null
23 2ec1f75b 2019-03-26 stsp ret="$?"
24 2ec1f75b 2019-03-26 stsp if [ "$ret" != "0" ]; then
25 2ec1f75b 2019-03-26 stsp test_done "$testroot" "$ret"
26 2ec1f75b 2019-03-26 stsp return 1
27 2ec1f75b 2019-03-26 stsp fi
28 2ec1f75b 2019-03-26 stsp
29 17ed4618 2019-06-02 stsp echo 'D alpha' > $testroot/stdout.expected
30 17ed4618 2019-06-02 stsp echo 'D beta' >> $testroot/stdout.expected
31 17ed4618 2019-06-02 stsp (cd $testroot/wt && got rm alpha beta > $testroot/stdout)
32 2ec1f75b 2019-03-26 stsp
33 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
34 2ec1f75b 2019-03-26 stsp ret="$?"
35 2ec1f75b 2019-03-26 stsp if [ "$ret" != "0" ]; then
36 2ec1f75b 2019-03-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
37 17ed4618 2019-06-02 stsp test_done "$testroot" "$ret"
38 17ed4618 2019-06-02 stsp return 1
39 2ec1f75b 2019-03-26 stsp fi
40 2ec1f75b 2019-03-26 stsp
41 17ed4618 2019-06-02 stsp (cd $testroot/wt && got status > $testroot/stdout)
42 17ed4618 2019-06-02 stsp
43 17ed4618 2019-06-02 stsp cmp -s $testroot/stdout.expected $testroot/stdout
44 17ed4618 2019-06-02 stsp ret="$?"
45 17ed4618 2019-06-02 stsp if [ "$ret" != "0" ]; then
46 17ed4618 2019-06-02 stsp diff -u $testroot/stdout.expected $testroot/stdout
47 17ed4618 2019-06-02 stsp test_done "$testroot" "$ret"
48 2ec1f75b 2019-03-26 stsp return 1
49 2ec1f75b 2019-03-26 stsp fi
50 2ec1f75b 2019-03-26 stsp
51 17ed4618 2019-06-02 stsp for f in alpha beta; do
52 17ed4618 2019-06-02 stsp if [ -e $testroot/wt/$f ]; then
53 17ed4618 2019-06-02 stsp echo "removed file $f still exists on disk" >&2
54 17ed4618 2019-06-02 stsp test_done "$testroot" "1"
55 17ed4618 2019-06-02 stsp return 1
56 17ed4618 2019-06-02 stsp fi
57 17ed4618 2019-06-02 stsp done
58 17ed4618 2019-06-02 stsp
59 17ed4618 2019-06-02 stsp test_done "$testroot" "0"
60 2ec1f75b 2019-03-26 stsp }
61 2ec1f75b 2019-03-26 stsp
62 2ec1f75b 2019-03-26 stsp function test_rm_with_local_mods {
63 2ec1f75b 2019-03-26 stsp local testroot=`test_init rm_with_local_mods`
64 2ec1f75b 2019-03-26 stsp
65 2ec1f75b 2019-03-26 stsp got checkout $testroot/repo $testroot/wt > /dev/null
66 2ec1f75b 2019-03-26 stsp ret="$?"
67 2ec1f75b 2019-03-26 stsp if [ "$ret" != "0" ]; then
68 2ec1f75b 2019-03-26 stsp test_done "$testroot" "$ret"
69 2ec1f75b 2019-03-26 stsp return 1
70 2ec1f75b 2019-03-26 stsp fi
71 2ec1f75b 2019-03-26 stsp
72 2ec1f75b 2019-03-26 stsp echo "modified beta" > $testroot/wt/beta
73 2ec1f75b 2019-03-26 stsp echo 'got: file contains modifications' > $testroot/stderr.expected
74 2ec1f75b 2019-03-26 stsp (cd $testroot/wt && got rm beta 2>$testroot/stderr)
75 2ec1f75b 2019-03-26 stsp
76 8d301dd9 2019-05-14 stsp cmp -s $testroot/stderr.expected $testroot/stderr
77 2ec1f75b 2019-03-26 stsp ret="$?"
78 2ec1f75b 2019-03-26 stsp if [ "$ret" != "0" ]; then
79 2ec1f75b 2019-03-26 stsp diff -u $testroot/stderr.expected $testroot/stderr
80 2ec1f75b 2019-03-26 stsp test_done "$testroot" "$ret"
81 2ec1f75b 2019-03-26 stsp return 1
82 2ec1f75b 2019-03-26 stsp fi
83 2ec1f75b 2019-03-26 stsp
84 2ec1f75b 2019-03-26 stsp echo 'D beta' > $testroot/stdout.expected
85 2ec1f75b 2019-03-26 stsp (cd $testroot/wt && got rm -f beta > $testroot/stdout)
86 2ec1f75b 2019-03-26 stsp
87 8d301dd9 2019-05-14 stsp cmp -s $testroot/stdout.expected $testroot/stdout
88 2ec1f75b 2019-03-26 stsp ret="$?"
89 2ec1f75b 2019-03-26 stsp if [ "$ret" != "0" ]; then
90 2ec1f75b 2019-03-26 stsp diff -u $testroot/stdout.expected $testroot/stdout
91 2ec1f75b 2019-03-26 stsp fi
92 2ec1f75b 2019-03-26 stsp
93 2ec1f75b 2019-03-26 stsp if [ -e $testroot/wt/beta ]; then
94 2ec1f75b 2019-03-26 stsp echo "removed file beta still exists on disk" >&2
95 2ec1f75b 2019-03-26 stsp test_done "$testroot" "1"
96 2ec1f75b 2019-03-26 stsp return 1
97 2ec1f75b 2019-03-26 stsp fi
98 2ec1f75b 2019-03-26 stsp
99 2ec1f75b 2019-03-26 stsp test_done "$testroot" "$ret"
100 2ec1f75b 2019-03-26 stsp }
101 2ec1f75b 2019-03-26 stsp
102 71a29355 2019-03-27 stsp function test_double_rm {
103 71a29355 2019-03-27 stsp local testroot=`test_init double_rm`
104 71a29355 2019-03-27 stsp
105 71a29355 2019-03-27 stsp got checkout $testroot/repo $testroot/wt > /dev/null
106 71a29355 2019-03-27 stsp ret="$?"
107 71a29355 2019-03-27 stsp if [ "$ret" != "0" ]; then
108 71a29355 2019-03-27 stsp test_done "$testroot" "$ret"
109 71a29355 2019-03-27 stsp return 1
110 71a29355 2019-03-27 stsp fi
111 71a29355 2019-03-27 stsp
112 71a29355 2019-03-27 stsp (cd $testroot/wt && got rm beta > /dev/null)
113 71a29355 2019-03-27 stsp
114 71a29355 2019-03-27 stsp for fflag in "" "-f"; do
115 71a29355 2019-03-27 stsp (cd $testroot/wt && got rm $fflag beta 2> $testroot/stderr)
116 71a29355 2019-03-27 stsp ret="$?"
117 71a29355 2019-03-27 stsp if [ "$ret" == "0" ]; then
118 71a29355 2019-03-27 stsp echo "got rm command succeeded unexpectedly" >&2
119 71a29355 2019-03-27 stsp test_done "$testroot" 1
120 71a29355 2019-03-27 stsp fi
121 71a29355 2019-03-27 stsp
122 2af4a041 2019-05-11 jcs grep "No such file or directory" $testroot/stderr > \
123 2af4a041 2019-05-11 jcs $testroot/stderr.actual
124 71a29355 2019-03-27 stsp ret="$?"
125 71a29355 2019-03-27 stsp if [ "$ret" != "0" ]; then
126 2af4a041 2019-05-11 jcs cat $testroot/stderr
127 71a29355 2019-03-27 stsp test_done "$testroot" "$ret"
128 71a29355 2019-03-27 stsp fi
129 71a29355 2019-03-27 stsp done
130 71a29355 2019-03-27 stsp test_done "$testroot" "0"
131 71a29355 2019-03-27 stsp }
132 71a29355 2019-03-27 stsp
133 2ec1f75b 2019-03-26 stsp run_test test_rm_basic
134 2ec1f75b 2019-03-26 stsp run_test test_rm_with_local_mods
135 71a29355 2019-03-27 stsp run_test test_double_rm