blob: 01b27b9845793c9cb385f2964648268323e2bf71 (
plain)
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
#!/bin/sh
# Start a soledad-perf test using a remote server.
#
# The script does the following:
#
# - configure a remote repository for soledad repo if SOLEDAD_REMOTE is set.
#
# - checkout a specific branch if SOLEDAD_BRANCH is set.
#
# - run the soledad-perf local twisted server that runs the client. Note
# that the actual soledad server should be running on another docker
# container. This local server is only used to measure responsiveness of
# soledad client. The script waits for the server to come up before
# continuing, or else times out after TIMEOUT seconds.
#
# - trigger the creation of documents for sync.
#
# - start the measurement of server responsiveness and sync stages.
#
# - stop the test.
#
# This script is meant to be copied to the docker container and run upon
# container start.
CMD="/usr/local/soledad/setup-test-env.py"
REPO="/var/local/soledad"
TIMEOUT=20
#-----------------------------------------------------------------------------
# configure a remote and checkout a branch
#-----------------------------------------------------------------------------
if [ ! -z "${SOLEDAD_REMOTE}" ]; then
git -C ${REPO} remote set-url origin ${SOLEDAD_REMOTE}
git -C ${REPO} fetch origin
fi
if [ ! -z "${SOLEDAD_BRANCH}" ]; then
git -C ${REPO} checkout ${SOLEDAD_BRANCH}
fi
if [ ! -z "${SOLEDAD_PERF_REMOTE}" ]; then
git -C /var/local/soledad-perf remote set-url origin ${SOLEDAD_PERF_REMOTE}
git -C /var/local/soledad-perf fetch origin
fi
if [ ! -z "${SOLEDAD_PERF_BRANCH}" ]; then
git -C /var/local/soledad-perf checkout ${SOLEDAD_PERF_BRANCH}
fi
#-----------------------------------------------------------------------------
# write a configuration file for the perf test
#-----------------------------------------------------------------------------
cd /var/local/soledad-perf
cat > defaults.conf <<EOF
[server]
host = ${SOLEDAD_SERVER_URL}
[client]
uuid = 1234567890abcdef
basedir = /tmp/soledad_client_test
passphrase = 12345678
[sync]
num_docs = ${SOLEDAD_PRELOAD_NUM}
payload = /tmp/payload
payload_size = ${SOLEDAD_PRELOAD_SIZE}
auth_token = an-auth-token
[test]
stats_file = ./out/stats.json
EOF
if [ "${1}" = "--drop-to-shell" ]; then
/bin/bash
exit 0
fi
#-----------------------------------------------------------------------------
# start the local server and wait for it to come up
#-----------------------------------------------------------------------------
# start local test server on background
make soledad-sync-server | grep -v stats | grep -v ping &
# wait for server until timeout
start=`date +%s`
elapsed=0
echo "Waiting for perf server to come up..."
while [ ${elapsed} -lt ${TIMEOUT} ]; do
result=`curl -s http://127.0.0.1:8080/ping`
if [ ${?} -eq 0 -a "${result}" = "easy!" ]; then
echo "Perf server (running soledad client) is up!"
break
else
sleep 1
fi
now=`date +%s`
elapsed=`expr ${now} - ${start}`
done
# exit with an error code if timed out waiting for server
if [ ${elapsed} -ge ${TIMEOUT} ]; then
echo "Error: server unreachable at http://127.0.0.1:8080 after ${TIMEOUT} seconds."
exit 1
fi
#-----------------------------------------------------------------------------
# create docs and run test
#-----------------------------------------------------------------------------
set -e
# create documents in client
make trigger-create-docs
# launch background series measurement
make measure-series > /dev/null &
sleep 5 # wait a bit for some data points
# run a sync and generate a graph
make trigger-sync
make trigger-stop
|