12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #!/bin/sh
- # This file is in the public domain.
- out=`mktemp /tmp/test-gnunet-dht-logXXXXXXXX`
- tempcfg=`mktemp /tmp/test-dht-tools.XXXXXXXX`
- checkout="check.out"
- armexe="gnunet-arm -c $tempcfg "
- putexe="gnunet-dht-put -c $tempcfg "
- getexe="gnunet-dht-get -c $tempcfg "
- peerinfo="gnunet-peerinfo -c $tempcfg -sq"
- stop_arm()
- {
- if ! $armexe $DEBUG -e -d > $out ; then
- echo "FAIL: error running $armexe"
- echo "Command output was:"
- cat $out
- rm -f $out $tempcfg
- exit 1
- fi
- rm -f $out $tempcfg
- }
- cp test_dht_tools.conf $tempcfg
- echo -n "TEST: Starting ARM..."
- if ! $armexe $DEBUG -s > $out ; then
- echo "FAIL: error running $armexe"
- echo "Command output was:"
- cat $out
- stop_arm
- exit 1
- fi
- echo "PASS"
- echo -n "TEST: Testing put..."
- if ! $putexe -k testkey -d testdata -t 8 > $out ; then
- echo "FAIL: error running $putexe"
- echo "Command output was:"
- cat $out
- stop_arm
- exit 1
- fi
- echo "PASS"
- echo -n "TEST: Testing get..."
- echo "Result 0, type 8:" > $checkout
- echo "testdata" >> $checkout
- if ! $getexe -k testkey -T 100ms -t 8 > $out ; then
- echo "FAIL: error running $putexe"
- echo "Command output was:"
- cat $out
- stop_arm
- exit 1
- fi
- if ! diff --strip-trailing-cr -q $out $checkout ; then
- echo "FAIL: $out and $checkout differ:"
- diff --strip-trailing-cr $out $checkout
- stop_arm
- exit 1
- fi
- echo "PASS"
- stop_arm
|