Skip to content

Commit 378f2e9

Browse files
committed
Add some automated testing scripts.
1 parent 0c16a88 commit 378f2e9

8 files changed

+79
-0
lines changed

run-bootstrap-pull-test

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
FILENAME=$1
3+
rm -f seednodes.fref
4+
wget --no-check-cert https://checksums.freenetproject.org/latest/seednodes.fref -O seednodes.fref || exit 1
5+
java -Xmx128M -cp /usr/src/cvs/eclipse-workspace/Freenet\ 0.7/lib/freenet-ext.jar:/usr/src/cvs/eclipse-workspace/Freenet\ 0.7/bin/ freenet.node.simulator.BootstrapPullTest amphibian-servalan.dyndns.org > $FILENAME 2>&1
6+
exit $?

run-bootstrap-pull-test-wrapper

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
FILENAME=`date +"log.pull.%Y%m%d-%H%M%S.log"`
3+
su - freenet-tests /var/local/run-bootstrap-pull-test "$FILENAME"
4+
STATUS=$?
5+
time=`date +"/var/www/freenet/tests/boot-pull/%Y/%m/%d/output.%H-%M-%S.log"`
6+
mkdir -p `dirname $time`
7+
if [[ $STATUS == 0 ]]; then
8+
mv ~freenet-tests/$FILENAME $time
9+
chown root.root $time
10+
(echo Subject: Pull bootstrap test completed; echo; cat $time | grep RESULT; echo; echo Log at $time; echo ".") | /usr/sbin/sendmail toad
11+
else
12+
mv ~freenet-tests/$FILENAME ${time}.failed
13+
(echo Subject: Pull bootstrap test FAILED; echo; cat ${time}.failed; echo ".") | /usr/sbin/sendmail toad
14+
fi

run-bootstrap-push-pull-test

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
rm -f seednodes.fref
3+
wget --no-check-cert https://checksums.freenetproject.org/latest/seednodes.fref -O seednodes.fref || exit 1
4+
java -Xmx128M -cp /usr/src/cvs/eclipse-workspace/Freenet\ 0.7/lib/freenet-ext.jar:/usr/src/cvs/eclipse-workspace/Freenet\ 0.7/bin/ freenet.node.simulator.BootstrapPushPullTest amphibian-servalan.dyndns.org
5+
# > log.push-pull 2>&1
6+
exit $?

run-bootstrap-push-pull-test-wrapper

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/bin/bash
2+
TEMP=`mktemp`
3+
(su - freenet-tests /var/local/run-bootstrap-push-pull-test) > $TEMP 2>&1
4+
STATUS=$?
5+
time=`date +"/var/www/freenet/tests/push-pull/%Y/%m/%d/output.%H-%M-%S.log"`
6+
mkdir -p `dirname $time`
7+
if [[ $STATUS == 0 ]]; then
8+
mv $TEMP $time
9+
chown root.root $time
10+
(echo Subject: Push-pull bootstrap test completed; echo; cat $time | grep RESULT; echo; echo Log at $time; echo ".") | /usr/sbin/sendmail toad
11+
else
12+
mv $TEMP ${time}.failed
13+
(echo Subject: Push-pull bootstrap test FAILED; echo; cat ${time}.failed; echo ".") | /usr/sbin/sendmail toad
14+
fi

run-bootstrap-test

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
rm -f seednodes.fref
3+
wget --no-check-cert https://checksums.freenetproject.org/latest/seednodes.fref -O seednodes.fref || exit 1
4+
java -Xmx128M -cp /usr/src/cvs/eclipse-workspace/Freenet\ 0.7/lib/freenet-ext.jar:/usr/src/cvs/eclipse-workspace/Freenet\ 0.7/bin/ freenet.node.simulator.BootstrapSeedTest > log.bootstrap 2>&1
5+
exit $?

run-bootstrap-test-wrapper

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/bash
2+
su - freenet-tests /var/local/run-bootstrap-test
3+
time=`date +"/var/www/freenet/tests/bootstrap/%Y/%m/%d/output.%H-%M-%S.log"`
4+
mkdir -p `dirname $time`
5+
STATUS=$?
6+
if [[ $STATUS == 0 ]]; then
7+
mv ~freenet-tests/log.bootstrap $time
8+
chown root.root $time
9+
(echo Subject: Bootstrap test completed; echo; tail -n40 $time; echo; echo Log at $time; echo ".") | /usr/sbin/sendmail toad
10+
else
11+
mv ~freenet-tests/log.bootstrap ${time}.failed
12+
(echo Subject: Bootstrap test FAILED; echo; cat ${time}.failed; echo ".") | /usr/sbin/sendmail toad
13+
fi

run-seednode-test

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/bash
2+
wget --no-check-cert https://checksums.freenetproject.org/latest/seednodes.fref -O /tmp/seednodes.fref || exit 1
3+
java -Xmx128M -cp /usr/src/cvs/eclipse-workspace/Freenet\ 0.7/lib/freenet-ext.jar:/usr/src/cvs/eclipse-workspace/Freenet\ 0.7/bin/ freenet.node.simulator.SeednodePingTest
4+
# > log.seednodes 2>&1
5+
exit $?

run-seednode-test-wrapper

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
TEMP=`mktemp`
3+
(su - freenet-tests /var/local/run-seednode-test) > $TEMP 2>&1
4+
STATUS=$?
5+
time=`date +"/var/www/freenet/tests/seednodes/%Y/%m/%d/output.%H-%M-%S.log"`
6+
mkdir -p `dirname $time`
7+
8+
if [[ $STATUS == 0 ]]; then
9+
mv $TEMP $time
10+
chown root.root $time
11+
(echo Subject: Seednodes test completed; echo; cat $time | grep "^RESULT:"; echo; echo Log at $time; echo ".") | /usr/sbin/sendmail toad
12+
else
13+
mv $TEMP ${time}.failed
14+
chown root.root ${time}.failed
15+
(echo Subject: Seednodes test FAILED; echo; cat ${time}.failed; echo ".") | /usr/sbin/sendmail toad
16+
fi

0 commit comments

Comments
 (0)