aboutsummaryrefslogtreecommitdiff
path: root/src/namestore/test_namestore_put_stdin.sh
blob: 8fdcaa23f01956c28bd9305bad357246727bedbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/bin/bash
CONFIGURATION="test_namestore_api.conf"
trap "gnunet-arm -e -c $CONFIGURATION" SIGINT

LOCATION=$(which gnunet-config)
if [ -z $LOCATION ]
then
  LOCATION="gnunet-config"
fi
$LOCATION --version 1> /dev/null
if test $? != 0
then
	echo "GNUnet command line tools cannot be found, check environmental variables PATH and GNUNET_PREFIX"
	exit 77
fi

rm -rf `$LOCATION -c $CONFIGURATION -s PATHS -o GNUNET_HOME`
TEST_RECORD_NAME="www3"
TEST_RECORD_NAME2="www"
TEST_IP="8.7.6.5"
TEST_IP2="1.2.3.4"

which timeout &> /dev/null && DO_TIMEOUT="timeout 5"

function start_peer
{
	gnunet-arm -s -c $CONFIGURATION
	gnunet-identity -C testego -c $CONFIGURATION
}

function stop_peer
{
	gnunet-identity -D testego -c $CONFIGURATION
	gnunet-arm -e -c $CONFIGURATION
}


start_peer
# Create a public record
gnunet-namestore -a -c $CONFIGURATION -S <<EOF
$TEST_RECORD_NAME.testego:
  A 3600000000 [pr] $TEST_IP
  TXT 21438201833 [r] $TEST_IP2

  TXT 21438201833 [r] aslkdj asdlkjaslkd 232!

$TEST_RECORD_NAME2.testego:
  AAAA 324241223 [prS] ::dead:beef
  A 111324241223000000 [pC] 1.1.1.1

EOF
NAMESTORE_RES=$?
gnunet-namestore -z testego -D -r -c $CONFIGURATION
stop_peer

if [ $NAMESTORE_RES = 0 ]
then
  echo "PASS: Creating name in namestore"
else
  echo "FAIL: Creating name in namestore failed with $NAMESTORE_RES."
  exit 1
fi