-
Notifications
You must be signed in to change notification settings - Fork 344
/
run-tvdb-test.sh
executable file
·158 lines (132 loc) · 5.74 KB
/
run-tvdb-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
#!/usr/bin/env bash
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
# Script for running the Traffic Ops DB migration tests.
#
DB_SERVER=tvdb
DB_PORT=5432
DB_USER=postgres
DB_USER_PASS=twelve
DB_NAME=traffic_vault
export PGHOST="$DB_SERVER" PGPORT="$DB_PORT" PGUSER="$DB_USER" PGDATABASE="$DB_NAME"
# Write config files
set -x
if [[ ! -r /db-config.sh ]]; then
echo "/db-config.sh not found/readable"
exit 1
fi
. /db-config.sh
if [[ ! -r /reencrypt-config.sh ]]; then
echo "/reencrypt-config.sh not found/readable"
exit 1
fi
. /reencrypt-config.sh
postgresql_package="$(<<<"postgresql${POSTGRES_VERSION}" sed 's/\.//g' |
sed -E 's/([0-9]{2})[0-9]+/\1/g'
)"
pg_isready=$(rpm -ql "$postgresql_package" | grep bin/pg_isready)
if [[ ! -x "$pg_isready" ]] ; then
echo "Can't find pg_ready in ${postgresql_package}"
exit 1
fi
while ! $pg_isready -h"$DB_SERVER" -p"$DB_PORT" -d "$DB_NAME"; do
echo "waiting for db on $DB_SERVER $DB_PORT"
sleep 3
done
echo "*:*:*:postgres:$DB_USER_PASS" > "${HOME}/.pgpass"
echo "*:*:*:traffic_vault:$DB_USER_PASS" >> "${HOME}/.pgpass"
chmod 0600 "${HOME}/.pgpass"
export TO_DIR=/opt/traffic_ops/app
export PATH=/usr/local/go/bin:/opt/traffic_ops/go/bin:$PATH
export GOPATH=/opt/traffic_ops/go
# gets the current DB version. On success, output the version number. On failure, output a failure message starting with 'failed'.
get_current_db_version() {
local dbversion_output=$(./db/admin --trafficvault --env=production dbversion 2>&1)
if [[ $? -ne 0 ]]; then
echo "failed to get dbversion: $dbversion_output"
return
fi
local version=$(echo "$dbversion_output" | egrep '^dbversion [[:digit:]]+$' | awk '{print $2}')
if [[ -z "$version" ]]; then
echo "failed to get dbversion from output: $db_version_output"
return
fi
echo "$version"
}
get_db_dumps() {
find /db_dumps -name '*.dump'
}
db_is_empty=true
for d in $(get_db_dumps); do
db_is_empty=false
echo "checking integrity of DB dump: $d"
pg_restore -l "$d" > /dev/null || { echo "invalid DB dump: $d. Unable to list contents"; exit 1; }
done
cd "$TO_DIR"
old_db_version=0
if [[ "$db_is_empty" = false ]]; then
old_db_version=$(get_current_db_version)
[[ "$old_db_version" =~ ^failed ]] && { echo "get_current_db_version failed: $old_db_version"; exit 1; }
fi
# reset the DB if it is empty (i.e. no db.dump was provided)
if [[ "$old_db_version" -eq 0 ]]; then
db_is_empty=true
./db/admin --trafficvault --env=production reset || { echo "DB reset failed!"; exit 1; }
fi
./db/admin --trafficvault --env=production upgrade || { echo "DB upgrade failed!"; exit 1; }
if ! ./db/admin --trafficvault -env=production load_schema ||
! ./db/admin --trafficvault -env=production load_schema; then
echo 'Could not re-run create_tables.sql!'
exit 1
fi;
# insert some dummy TVDB data, run db/reencrypt/reencrypt to test it
sslkey_data=$(cat /sslkey.dat)
dnssec_data=$(cat /dnssec.dat)
uri_signing_key_data=$(cat /urisigningkey.dat)
url_sig_key_data=$(cat /urlsigkey.dat)
psql -h $DB_SERVER -U $DB_USER -d $DB_NAME -p $DB_PORT \
-c "INSERT INTO sslkey (data, deliveryservice, cdn, version) VALUES ('$sslkey_data', 'tvdbtestds', 'tvdbbtestcdn', 'latest');" \
-c "INSERT INTO dnssec (cdn, data) VALUES ('tvdbtestcdn', '$dnssec_data');" \
-c "INSERT INTO uri_signing_key (deliveryservice, data) VALUES ('tvdbtestds', '$uri_signing_key_data');" \
-c "INSERT INTO url_sig_key (deliveryservice, data) VALUES ('tvdbtestds', '$url_sig_key_data');" || { echo "failed to insert dummy TV DB data!"; exit 1; }
./db/reencrypt/reencrypt --previous-key /aes.key --new-key /new-aes.key --cfg ./db/reencrypt/reencrypt.conf || { echo "failed to re-encrypt the traffic vault data!"; exit 1; }
new_db_version=$(get_current_db_version)
[[ "$new_db_version" =~ ^failed ]] && { echo "get_current_db_version failed: $new_db_version"; exit 1; }
run_db_downgrades=true
if [[ "$old_db_version" = "$new_db_version" ]]; then
echo "new DB version matches old DB version, no downgrade migrations to test"
run_db_downgrades=false
fi
if [[ "$db_is_empty" = true ]]; then
echo "starting DB was empty, skipping DB downgrades"
run_db_downgrades=false
fi
if [[ "$run_db_downgrades" = true ]]; then
# downgrade the DB until the initial DB version
while [[ "$new_db_version" != "$old_db_version" ]]; do
./db/admin --trafficvault --env=production down || { echo "DB downgrade failed!"; exit 1; }
new_db_version=$(get_current_db_version)
[[ "$new_db_version" =~ ^failed ]] && { echo "get_current_db_version failed: $new_db_version"; exit 1; }
done
fi
# test full restoration of the initial DB dump
for d in $(get_db_dumps); do
echo "testing restoration of DB dump: $d"
dropdb --echo --if-exists < "$d" > /dev/null || echo "Dropping DB ${DB_NAME} failed: $d"
createdb --echo < "$d" > /dev/null || echo "Creating DB ${DB_NAME} failed: $d"
pg_restore --verbose --clean --if-exists --exit-on-error -d "$DB_NAME" < "$d" > /dev/null || { echo "DB restoration failed: $d"; exit 1; }
done