summaryrefslogtreecommitdiff
path: root/src/hub/test-client
blob: d5756e7e5401317f394733478b12f135fe0af2f0 (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
#!/bin/sh

TEST_D="./test"

echo pipe: import sample.json
echo ------------------------
socat file:../../dat/sample.json,rdonly "unix-client:$TEST_D/pipe"

echo pipe-gram: import sample-gram.json
echo ----------------------------------
while read x; do echo "$x" | socat stdio "unix-sendto:$TEST_D/pipegram"; done < ../../dat/sample-gram.json

echo show query result
echo -----------------
curl -i 'http://localhost:8000/updates?from=2013-10-21T00:00:00Z&to=2013-10-21T12:31:00Z'

echo '\npost update'
echo ------------
curl -i --data @../../dat/sample-post.json 'http://localhost:8000/updates'

echo show stats
echo ----------
curl -i 'http://localhost:8000/stats'

echo '\n\ndone'