syncthing/integration/test.sh

75 lines
1.2 KiB
Bash
Raw Normal View History

2014-01-20 07:38:57 +01:00
#!/bin/bash
rm -rf files-* conf-* md5-*
2014-01-20 22:22:27 +01:00
extraopts=""
2014-01-20 07:38:57 +01:00
p=$(pwd)
go build genfiles.go
go build md5r.go
echo "Setting up (keys)..."
i1=$(syncthing --home conf-1 2>&1 | awk '/My ID/ {print $7}')
2014-01-20 07:38:57 +01:00
echo $i1
i2=$(syncthing --home conf-2 2>&1 | awk '/My ID/ {print $7}')
2014-01-20 07:38:57 +01:00
echo $i2
i3=$(syncthing --home conf-3 2>&1 | awk '/My ID/ {print $7}')
2014-01-20 07:38:57 +01:00
echo $i3
echo "Setting up (files)..."
for i in 1 2 3 ; do
cat >conf-$i/syncthing.ini <<EOT
[repository]
dir = $p/files-$i
[nodes]
$i1 = 127.0.0.1:22001
$i2 = 127.0.0.1:22002
$i3 = 127.0.0.1:22003
[settings]
gui-enabled = false
listen-address = :2200$i
2014-01-20 07:38:57 +01:00
EOT
mkdir files-$i
pushd files-$i >/dev/null
../genfiles -maxexp 21 -files 400
touch empty-$i
2014-01-20 07:38:57 +01:00
../md5r > ../md5-$i
popd >/dev/null
done
echo "Starting..."
for i in 1 2 3 ; do
2014-01-20 22:22:27 +01:00
sleep 1
syncthing --home conf-$i $extraopts &
2014-01-20 07:38:57 +01:00
done
cat md5-* | sort > md5-tot
while true ; do
2014-01-20 22:22:27 +01:00
read
echo Verifying...
2014-01-20 07:38:57 +01:00
conv=0
for i in 1 2 3 ; do
pushd files-$i >/dev/null
../md5r | sort > ../md5-$i
popd >/dev/null
if ! cmp md5-$i md5-tot >/dev/null ; then
echo $i unconverged
else
conv=$((conv + 1))
echo $i converged
fi
done
if [[ $conv == 3 ]] ; then
kill %1
kill %2
kill %3
exit
fi
done