Output numbers in 3-digit groups by default (e.g. 1,234,567).
[rsync/rsync.git] / testsuite / daemon.test
CommitLineData
232ce2b2
MP
1#!/bin/sh
2
3# Copyright (C) 2001 by Martin Pool <mbp@samba.org>
4
5# This program is distributable under the terms of the GNU GPL (see
6# COPYING)
7
8fef0245
MP
8# We don't really want to start the server listening, because that
9# might interfere with the security or operation of the test machine.
10# Instead we use the fake-connect feature to dynamically assign a pair
11# of ports.
232ce2b2
MP
12
13# Having started the server we try some basic operations against it:
14
15# getting a list of module
16# listing files in a module
17# retrieving a module
18# uploading to a module
19# checking the log file
20# password authentication
21
c13ad7ec 22. "$suitedir/rsync.fns"
232ce2b2 23
0e9c3564
WD
24chkfile="$scratchdir/rsync.chk"
25outfile="$scratchdir/rsync.out"
26
276cc455 27SSH="src/support/lsh --no-cd"
adc2476f
WD
28FILE_REPL='s/^\([^d][^ ]*\) *\(..........[0-9]\) /\1 \2 /'
29DIR_REPL='s/^\(d[^ ]*\) *[0-9][.,0-9]* /\1 DIR /'
0e9c3564 30LS_REPL='s;[0-9][0-9][0-9][0-9]/[0-9][0-9]/[0-9][0-9] [0-9][0-9]:[0-9][0-9]:[0-9][0-9];####/##/## ##:##:##;'
d1c06c21 31
3aae15ec 32build_rsyncd_conf
232ce2b2 33
0e9c3564
WD
34makepath "$fromdir/foo" "$fromdir/bar/baz"
35makepath "$todir"
36echo one >"$fromdir/foo/one"
37echo two >"$fromdir/bar/two"
38echo three >"$fromdir/bar/baz/three"
39
d1c06c21
WD
40cd "$scratchdir"
41
42ln -s test-rsyncd.conf rsyncd.conf
43
09ad9053
WD
44confopt=''
45case `id -u` in
460)
47 # Root needs to specify the config file, or it uses /etc/rsyncd.conf.
48 echo "Forcing --config=$conf"
49 confopt=" --config=$conf"
50 ;;
51esac
52
276cc455 53$RSYNC -ve "$SSH" --rsync-path="$RSYNC$confopt" localhost::
d1c06c21 54
06464f55 55RSYNC_CONNECT_PROG="$RSYNC --config=$conf --daemon"
6cd7888e 56export RSYNC_CONNECT_PROG
232ce2b2 57
0e9c3564
WD
58$RSYNC -v localhost:: \
59 | tee "$outfile"
60# These have a space-padded 15-char name, then a tab, then a comment.
61sed 's/NOCOMMENT//' <<EOT >"$chkfile"
62test-from r/o
63test-to r/w
64test-scratch NOCOMMENT
65EOT
66diff $diffopt "$chkfile" "$outfile" || test_fail "test 1 failed"
67
68$RSYNC -r localhost::test-hidden \
adc2476f 69 | sed "$FILE_REPL" | sed "$DIR_REPL" | sed "$LS_REPL" \
0e9c3564
WD
70 | tee "$outfile"
71cat <<EOT >"$chkfile"
72drwxr-xr-x DIR ####/##/## ##:##:## .
73drwxr-xr-x DIR ####/##/## ##:##:## bar
74-rw-r--r-- 4 ####/##/## ##:##:## bar/two
75drwxr-xr-x DIR ####/##/## ##:##:## bar/baz
76-rw-r--r-- 6 ####/##/## ##:##:## bar/baz/three
77drwxr-xr-x DIR ####/##/## ##:##:## foo
78-rw-r--r-- 4 ####/##/## ##:##:## foo/one
79EOT
80diff $diffopt "$chkfile" "$outfile" || test_fail "test 2 failed"
81
82$RSYNC -r localhost::test-from/f* \
adc2476f 83 | sed "$FILE_REPL" | sed "$DIR_REPL" | sed "$LS_REPL" \
0e9c3564
WD
84 | tee "$outfile"
85cat <<EOT >"$chkfile"
86drwxr-xr-x DIR ####/##/## ##:##:## foo
87-rw-r--r-- 4 ####/##/## ##:##:## foo/one
88EOT
89diff $diffopt "$chkfile" "$outfile" || test_fail "test 3 failed"
90