-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrsyncsync.test.sh
325 lines (265 loc) · 6.03 KB
/
rsyncsync.test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
#!/bin/bash
SELF=$BASH_SOURCE
HERE=$(dirname "$SELF")
NAME=$(basename "$SELF" .test.sh)
SCRIPT=$(readlink -f $HERE/$NAME.sh)
source "$SCRIPT"
DOT=.$NAME
CONFLICTS=$CONFLICT_BASE
STAT_FORMAT='%A %U %G %Y %n'
HELLO=$(date)
# preliminaries
util sync difftree diffstat diffhash
write_state() {
echo "$HELLO" > test
}
access_given_state() {
# should have HELLO from write_state
given write_state
test -d "$GIVEN"
test "$(cat "$GIVEN"/test)" = "$HELLO"
test "$(cd "$GIVEN" && ls)" = "$(cd "$THIS" && ls)"
}
difftree_works_self() {
# compare tree to self returns true
given access_given_state
_random > date-file
difftree "$THIS" "$THIS"
}
dir_empty() {
# should be in an empty dir
test -z "$(shopt -s nullglob dotglob; echo *)"
}
difftree_works_empty() {
given dir_empty
difftree "$GIVEN" "$THIS"
}
difftree_works() {
given difftree_works_self
date > date-file
! difftree "$GIVEN" "$THIS"
}
given_states_identical() {
given difftree_works
difftree "$GIVEN" "$THIS"
}
this_state_isolated() {
given given_states_identical
chmod 700 date-file
! difftree "$GIVEN" "$THIS"
}
# start testing!
no_args_shows_usage() {
sync | grep -q Usage
}
one_arg_shows_usage() {
sync _ | grep -q Usage
}
local_1() {
# creates a local directory of working files
mkdir -p local1/{a,b,c}/{1,2,3}
for d in `find local1 -type d`
do
_random > $d/stuff
done
}
local_untracked() {
# remove sync state from local
given local_1
rm -rf local1/$DOT
}
local_empty_remote_empty() {
# should init local and init remote
sync local1 backup1
test -d local1/$DOT
test -L backup1/latest
difftree local1 backup1/latest
}
local_untracked_remote_empty() {
# should re-init local and remote
given local_untracked
rm -rf local1/$DOT
sync local1 backup1
test -d local1/$DOT
test -L backup1/latest
difftree local1 backup1/latest
}
local_unchanged_by_backup() {
given local_untracked
sync local1 backup1
difftree $GIVEN/local1 local1
}
local_backed_up() {
given local_unchanged_by_backup
difftree local1 backup1/latest
}
remote_untracked() {
given local_backed_up
rm -rf backup1/{id,state,latest}
}
local_empty_remote_untracked() {
# re-init local and remote
given remote_untracked
rm -rf local1
sync local1 backup1
test -d local1/$DOT
test -L backup1/latest
difftree local1 backup1/latest
}
local_untracked_remote_untracked() {
# re-init local and remote
given remote_untracked
rm -rf local1/$DOT
sync local1 backup1
test -d local1/$DOT
test -L backup1/latest
difftree local1 backup1/latest
}
local_tracked_remote_empty() {
# re-init remote
given local_backed_up
rm -rf backup1
sync local1 backup1
test -L backup1/latest
difftree local1 backup1/latest
}
local_tracked_preserves_remote_id() {
# can use any spelling for remote
given local_backed_up
sync local1 ./backup1/
difftree "$GIVEN" "$THIS"
sync local1 ./backup1/././
difftree "$GIVEN" "$THIS"
}
local_tracked_remote_untracked() {
# re-init remote
given remote_untracked
sync local1 backup1
test -L backup1/latest
test -f backup1/state
difftree local1 backup1/latest
}
local_empty_remote_tracked() {
# should pull (restore) from remote
given local_backed_up
rm -rf local1
sync local1 backup1
difftree $GIVEN/local1 local1
difftree $GIVEN/backup1 backup1
}
local_untracked_remote_tracked() {
# should abort and do nothing
given local_backed_up
rm -rf local1/$DOT/*
if sync local1 backup1
then exit 1
fi
difftree $GIVEN $THIS
}
local_unchanged_remote_unchanged() {
# does nothing
given local_backed_up
sync local1 backup1
difftree $GIVEN $THIS
}
_modify() {
arg="$1"
sleep 1
for f in `find "$arg"/* -type f`
do
echo "modifying $f"
_random >> "$f"
done
}
local_changed_remote_unchanged() {
given local_backed_up
_modify local1
previous=$(readlink -f backup1/latest)
sync local1 backup1
difftree local1 backup1/latest
difftree "$GIVEN"/local1 "$previous"
}
local_2() {
given local_backed_up
sync local2 backup1
difftree local1 local2
}
local_2_modified() {
given local_2
_modify local2
! difftree $GIVEN/local2 local2
}
remote_changed() {
given local_2_modified
sync local2 backup1
difftree local2 backup1/latest
}
local_unchanged_remote_changed() {
# should pull changes to local1
# and leave backup1 unchanged
given remote_changed
sync local1 backup1
difftree local1 local2
difftree $GIVEN/backup1 backup1
}
local_no_conflicts() {
given local_unchanged_remote_changed
! test -d local1/$CONFLICTS
}
local_changed_concurrently() {
given remote_changed
_random > local1/stuff
}
local_preserves_conflicting_changes() {
# local changed, remote changed
# should back up local changes
# and push to server
given local_changed_concurrently
sync local1 backup1
test -d local1/$CONFLICTS
cd local1/$CONFLICTS/*
for f in `find -type f`
do
diff -u $f $GIVEN/local1/$f
done
}
local_conflicts_propagate() {
given local_preserves_conflicting_changes
difftree local1 backup1/latest
sync local2 backup1
difftree local1 local2
}
sync() {
TEST=1 $SCRIPT "$@"
}
_random() {
echo $(date +%s.%N) $RANDOM
}
_treestat() {
(cd "$1" &&
find -print0 |
sort -z |
xargs -r0 stat -c "$STAT_FORMAT"
) | grep -v /\\$DOT
}
_treehash() {
(cd "$1"
find -type f -print0 |
sort -z |
xargs -r0 md5sum
) | grep -v /\\$DOT
}
diffstat() {
diff <(_treestat "$1") <(_treestat "$2")
}
diffhash() {
diff <(_treehash "$1") <(_treehash "$2")
}
difftree() {
diffstat "$1" "$2" && diffhash "$1" "$2"
}
_rmtree() {
# assert arg is under tmp dir
test "${1/$ROUNDUP_TMP/}" = "$1" || return 1
test -d "$1" && chmod -R +w "$1" && rm -rf "$1"
}