2011-01-28 07:42:51 -07:00
|
|
|
#!/usr/bin/env bash
|
2010-04-27 20:36:39 -06:00
|
|
|
|
2011-01-28 07:42:51 -07:00
|
|
|
set -e
|
2011-01-27 06:19:37 -07:00
|
|
|
wiki_pid=
|
2010-04-27 20:36:39 -06:00
|
|
|
cleanup() {
|
|
|
|
kill $wiki_pid
|
2011-01-27 06:19:37 -07:00
|
|
|
rm -f test_*.out Test.txt final-test.bin final-test.go
|
2010-04-27 20:36:39 -06:00
|
|
|
}
|
2011-01-28 07:42:51 -07:00
|
|
|
trap cleanup 0 INT
|
2010-04-27 20:36:39 -06:00
|
|
|
|
2011-01-28 07:42:51 -07:00
|
|
|
gomake get.bin
|
|
|
|
addr=$(./get.bin -addr)
|
|
|
|
sed s/:8080/$addr/ < final.go > final-test.go
|
|
|
|
gomake final-test.bin
|
2011-03-06 21:48:39 -07:00
|
|
|
(./final-test.bin) &
|
2011-01-27 06:19:37 -07:00
|
|
|
wiki_pid=$!
|
|
|
|
|
2010-04-27 20:36:39 -06:00
|
|
|
sleep 1
|
|
|
|
|
2011-01-28 07:42:51 -07:00
|
|
|
./get.bin http://$addr/edit/Test > test_edit.out
|
|
|
|
diff -u test_edit.out test_edit.good
|
|
|
|
./get.bin -post=body=some%20content http://$addr/save/Test
|
|
|
|
diff -u Test.txt test_Test.txt.good
|
|
|
|
./get.bin http://$addr/view/Test > test_view.out
|
|
|
|
diff -u test_view.out test_view.good
|
2010-04-27 20:36:39 -06:00
|
|
|
|
2011-01-28 07:42:51 -07:00
|
|
|
echo PASS
|