Newer
Older
#!/bin/sh
# author: Kaloyan Enimanev
#
# The integration test scenario for archiving.
# assumptions:
# 1) postgres is running on the local machine
# 2) The command "ssh locahost" completes sussessfully without requiring any user input (e.g. password input)
#
# -------------------
# - openBIS + DataStore servers are launched
# - STEP 1
# * one data set is registered via a python dropbox
# * a backup copy of the data set is expected to appear in the archive
# - STEP 2
# * the data in the archive is damaged on purpose
# * archiving + delete from store is triggered
# * we expect the archiving process to "repair" the broken archive copy before deleting
# the data set from the data store
#
# --- include external sources ------------------------
# ----- local constants --------------------
TIME_TO_COMPLETE=60 # time (in seconds) needed by the whole pipeline to process everything
TEST_DATA_DIR=templates/data-archiving
ARCHIVE_DIR=/tmp/integration-tests/archiving/rsync-archive
ARCHIVE_DATASET=ARCHIVE_DATASET
DATA_STORE_DIR=$WORK/data/main-store
DSS_SERVICE_PROPS=$WORK/datastore_server_archiving/etc/service.properties
# ---- Testcase-specific preparation steps ------------
function prepare_step1 {
echo Recreating an emtpy archive directory "$ARCHIVE_DIR"
rm -fr $ARCHIVE_DIR
mkdir -p $ARCHIVE_DIR
echo Copying test dataset to jython dropbox...
local DIR=$WORK/data/incoming-jython
copy_test_data $ARCHIVE_DATASET $DIR
}
function prepare_step2 {
damage_archive
reconfigure_datastore_server
unset_presentInArchiveFlag_DB
}
function damage_archive {
echo "Inserting invalid content in the archived dataset copy..."
echo "INVALID CONTENT AT THE END OF ARCHIVE" >> $ARCHIVED_DATASET_DIR/archive-me.txt
}
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
function reconfigure_datastore_server {
# after the reconfiguration
# the auto-archiving will start deleting datasets from store
echo "Reconfiguring auto-archiving to remove datasets from store ...."
local tmpFile=$DSS_SERVICE_PROPS.tmp
sed -e "s/auto-archiver.remove-datasets-from-store=false/auto-archiver.remove-datasets-from-store=true/g" < $DSS_SERVICE_PROPS > $tmpFile
mv $tmpFile $DSS_SERVICE_PROPS
}
function unset_presentInArchiveFlag_DB {
local psql=`run_psql`
$psql -U postgres -d $DATABASE -c "update external_data set present_in_archive=false"
}
#
# --------- assertions --------------------
#
function assert_last_dataset_content_in_database {
local pattern=$1
echo ==== assert correct last dataset content in database with pattern $pattern ====
local psql=`run_psql`
local dataset=`$psql -U postgres -d $DATABASE \
-c "select d.code, ed.status, ed.present_in_archive \
from data as d \
left join external_data as ed on ed.data_id = d.id \
where d.id = (select max(id) from data)" \
| awk '/ +[0-9]+/' \
| awk '{gsub(/ /,"");print}' \
| awk '{gsub(/\|/,";");print}'`
local lines=`echo "$dataset" | grep "$pattern" | wc -l`
if [ $lines == 0 ]; then
report_error Last dataset does not match pattern "$pattern": $dataset
fi
}
function asserts_step1 {
assert_last_dataset_content_in_database ".*;AVAILABLE;t"
ARCHIVED_DATASET_DIR=`find $ARCHIVE_DIR -type d -name "$ARCHIVE_DATASET"`
if [ "$ARCHIVED_DATASET_DIR" == "" ]; then
report_error "Cannot find archived dataset copy under $ARCHIVE_DIR"
else
asserts_valid_archive_copy
fi
}
function asserts_step2 {
assert_last_dataset_content_in_database ".*;ARCHIVED;t"
asserts_valid_archive_copy
local dataset_in_store=`find $DATA_STORE_DIR -type d -name "$ARCHIVE_DATASET"`
if [ -d "$dataset_in_store" ]; then
report_error Data set \"$dataset_in_store\" should be deleted from the datastore !
fi
}
function asserts_valid_archive_copy {
assert_same_content $TEST_DATA_DIR/$ARCHIVE_DATASET $ARCHIVED_DATASET_DIR
}
# --- helper functions ---------
function logAndSleep {
local sleepSec=$1
echo "Sleeping for $sleepSec seconds ..."
sleep $sleepSec
}
function copy_test_data {
local NAME=$1
local DIR=$2
cp -RPpv $TEST_DATA_DIR/$NAME $DIR
clean_svn $DIR/$NAME
}
# Prepare template incoming data and some destination data structures
function prepare_directory_structures {
echo Re-creating in/out directory structures
for data_folder in data data-archiving; do
work_destination=$WORK/$data_folder
rm -fr $work_destination
mkdir -p $work_destination
cp -Rv $TEMPLATE/$data_folder $WORK
clean_svn $work_destination
done
}
#
# ------- test workflow --------------
#
function test_step1 {
#
# step 1 : expect new data set to be archived
#
prepare_step1
switch_dss "on" datastore_server_archiving
logAndSleep $TIME_TO_COMPLETE
switch_dss "off" datastore_server_archiving
logAndSleep 5
asserts_step1
}
function test_step2 {
#
# step 2 : damage archive copy and expect the Rsync archiverto detect the error
#
prepare_step2
switch_dss "on" datastore_server_archiving
logAndSleep $TIME_TO_COMPLETE
switch_dss "off" datastore_server_archiving
logAndSleep 5
asserts_step2
}
function integration_test {
prepare_directory_structures
build_and_install $@
test_step1
test_step2
shutdown_openbis_server $OPENBIS_SERVER
exit_if_assertion_failed
}
function ensureGNUFind {
local gnuFind=`find -printf 2>&1 | grep "missing argument"`
if [ "$gnuFind" = "" ]; then
report_error "This test requires gfind (GNU Find) to be the default 'find' command line tool. Aborting..."
exit 1
fi
}
#
# -- MAIN (copied from)------------
#
if [ "$1" = "--clean" ]; then
clean_after_tests
else
ensureGNUFind
kaloyane
committed
parse_cli_args $@
integration_test $install_dss $install_dmv $install_openbis $use_local_source $reinstall_all
fi