forked from supertokens/supertokens-docker-postgresql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.sh
executable file
·164 lines (112 loc) · 5.57 KB
/
test.sh
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
set -e
# build image
docker build -t supertokens-postgresql:circleci .
test_equal () {
if [[ $1 -ne $2 ]]
then
printf "\x1b[1;31merror\x1b[0m from test_equal in $3\n"
exit 1
fi
}
no_of_running_containers () {
docker ps -q | wc -l
}
test_hello () {
message=$1
STATUS_CODE=$(curl -I -X GET http://127.0.0.1:3567/hello -o /dev/null -w '%{http_code}\n' -s)
if [[ $STATUS_CODE -ne "200" ]]
then
printf "\x1b[1;31merror\xd1b[0m from test_hello in $message\n"
exit 1
fi
}
test_session_post () {
message=$1
STATUS_CODE=$(curl -X POST http://127.0.0.1:3567/recipe/session -H "Content-Type: application/json" -d '{
"userId": "testing",
"userDataInJWT": {},
"userDataInDatabase": {},
"enableAntiCsrf": true
}' -o /dev/null -w '%{http_code}\n' -s)
if [[ $STATUS_CODE -ne "200" ]]
then
printf "\x1b[1;31merror\xd1b[0m from test_session_post in $message\n"
exit 1
fi
}
no_of_containers_running_at_start=`no_of_running_containers`
# start postgresql server
docker run -e DISABLE_TELEMETRY=true --rm -d -p 5432:5432 --name postgres -e POSTGRES_PASSWORD=root -e POSTGRES_USER=root postgres
sleep 26s
docker exec -it postgres bash -c "export PGPASSWORD=root && psql -U 'root' -c 'CREATE DATABASE supertokens;'"
# setting network options for testing
OS=`uname`
POSTGRES_IP=$(ip a | grep -E "([0-9]{1,3}\.){3}[0-9]{1,3}" | grep -v 127.0.0.1 | awk '{ print $2 }' | cut -f2 -d: | head -n1 | grep -o -E "([0-9]{1,3}\.){3}[0-9]{1,3}")
NETWORK_OPTIONS="-p 3567:3567 -e POSTGRESQL_HOST=$POSTGRES_IP"
NETWORK_OPTIONS_CONNECTION_URI="-p 3567:3567 -e POSTGRESQL_CONNECTION_URI=postgresql://root:root@$POSTGRES_IP:5432"
printf "\npostgresql_host: \"$POSTGRES_IP\"" >> $PWD/config.yaml
#---------------------------------------------------
# start with no options
docker run -e DISABLE_TELEMETRY=true --rm -d --name supertokens supertokens-postgresql:circleci --no-in-mem-db
sleep 10s
test_equal `no_of_running_containers` $((no_of_containers_running_at_start+1)) "start with no options"
#---------------------------------------------------
# start with no network options, but in mem db
docker run -e DISABLE_TELEMETRY=true -p 3567:3567 --rm -d --name supertokens supertokens-postgresql:circleci
sleep 17s
test_equal `no_of_running_containers` $((no_of_containers_running_at_start+2)) "start with no network options, but in mem db"
test_hello "start with no network options, but in mem db"
test_session_post "start with no network options, but in mem db"
docker rm supertokens -f
#---------------------------------------------------
# start with postgresql password
docker run -e DISABLE_TELEMETRY=true $NETWORK_OPTIONS -e POSTGRESQL_PASSWORD=root --rm -d --name supertokens supertokens-postgresql:circleci --no-in-mem-db
sleep 10s
test_equal `no_of_running_containers` $((no_of_containers_running_at_start+1)) "start with postgresql password"
#---------------------------------------------------
# start with postgresql user
docker run -e DISABLE_TELEMETRY=true $NETWORK_OPTIONS -e POSTGRESQL_USER=root --rm -d --name supertokens supertokens-postgresql:circleci --no-in-mem-db
sleep 10s
test_equal `no_of_running_containers` $((no_of_containers_running_at_start+1)) "start with postgresql user"
#---------------------------------------------------
# start with postgresql user, postgresql password
docker run -e DISABLE_TELEMETRY=true $NETWORK_OPTIONS -e POSTGRESQL_USER=root -e POSTGRESQL_PASSWORD=root --rm -d --name supertokens supertokens-postgresql:circleci --no-in-mem-db
sleep 17s
test_equal `no_of_running_containers` $((no_of_containers_running_at_start+2)) "start with postgresql user, postgresql password"
test_hello "start with postgresql user, postgresql password"
test_session_post "start with postgresql user, postgresql password"
docker rm supertokens -f
#---------------------------------------------------
# start with postgresql connection uri
docker run -e DISABLE_TELEMETRY=true $NETWORK_OPTIONS_CONNECTION_URI --rm -d --name supertokens supertokens-postgresql:circleci --no-in-mem-db
sleep 17s
test_equal `no_of_running_containers` $((no_of_containers_running_at_start+2)) "start with postgresql connection uri"
test_hello "starstart with postgresql connection uri"
test_session_post "start with postgresql connection uri"
docker rm supertokens -f
#---------------------------------------------------
# start by sharing config.yaml
docker run -e DISABLE_TELEMETRY=true $NETWORK_OPTIONS -v $PWD/config.yaml:/usr/lib/supertokens/config.yaml --rm -d --name supertokens supertokens-postgresql:circleci --no-in-mem-db
sleep 17s
test_equal `no_of_running_containers` $((no_of_containers_running_at_start+2)) "start by sharing config.yaml"
test_hello "start by sharing config.yaml"
test_session_post "start by sharing config.yaml"
docker rm supertokens -f
# ---------------------------------------------------
# test info path
docker run -e DISABLE_TELEMETRY=true $NETWORK_OPTIONS -v $PWD:/home/supertokens -e POSTGRESQL_USER=root -e POSTGRESQL_PASSWORD=root -e INFO_LOG_PATH=/home/supertokens/info.log -e ERROR_LOG_PATH=/home/supertokens/error.log --rm -d --name supertokens supertokens-postgresql:circleci --no-in-mem-db
sleep 17s
test_equal `no_of_running_containers` $((no_of_containers_running_at_start+2)) "test info path"
test_hello "test info path"
test_session_post "test info path"
if [[ ! -f $PWD/info.log || ! -f $PWD/error.log ]]
then
exit 1
fi
docker rm supertokens -f
rm -rf $PWD/info.log
rm -rf $PWD/error.log
git checkout $PWD/config.yaml
docker rm postgres -f
printf "\x1b[1;32m%s\x1b[0m\n" "success"
exit 0