(travis) Temporarily kill Firebird ODBC testing
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 10_before_install.bash
CommitLineData
b58ecb01 1#!/bin/bash
2
fcdd56ca 3# Stop pre-started RDBMS and sync for some settle time
4run_or_err "Stopping MySQL" "sudo /etc/init.d/mysql stop"
5run_or_err "Stopping PostgreSQL" "sudo /etc/init.d/postgresql stop"
6/bin/sync
7
8# Sanity check VM before continuing
9echo "
10=============================================================================
11
12= Startup Meminfo
13$(free -m -t)
14
15============================================================================="
16
17CI_VM_MIN_FREE_MB=2000
18if [[ "$(free -m | grep 'buffers/cache:' | perl -p -e '$_ = (split /\s+/, $_)[3]')" -lt "$CI_VM_MIN_FREE_MB" ]]; then
19 SHORT_CIRCUIT_SMOKE=1
20 echo_err "
21=============================================================================
22
23CI virtual machine stuck in a state with a lot of memory locked for no reason.
24Under Travis this state usually results in a failed build.
25Short-circuiting buildjob to avoid false negatives, please restart it manually.
26
27============================================================================="
28fi
29
b58ecb01 30if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
31
03d379e5 32# Different boxes we run on may have different amount of hw threads
33# Hence why we need to query
34# Originally we used to read /sys/devices/system/cpu/online
35# but it is not available these days (odd). Thus we fall to
36# the alwas-present /proc/cpuinfo
37# The oneliner is a tad convoluted - basicaly what we do is
38# slurp the entire file and get the index off the last
39# `processor : XX` line
fcdd56ca 40#
ac4e80df 41# We also divide the result by a factor, otherwise the travis VM gets
42# overloaded (the amount of available swap is just TOOOO damn small)
43export NUMTHREADS="$(( ( $(perl -0777 -n -e 'print (/ (?: .+ ^ processor \s+ : \s+ (\d+) ) (?! ^ processor ) /smx)' < /proc/cpuinfo) + 1 ) / 3 ))"
003e97c5 44
45export CACHE_DIR="/tmp/poormanscache"
46
e861e4f0 47# these will be installed no matter what, also some extras unless CLEANTEST
48common_packages="libapp-nopaste-perl tree"
b58ecb01 49
e861e4f0 50if [[ "$CLEANTEST" = "true" ]]; then
51
52 apt_install $common_packages
53
54else
1e735709 55
b58ecb01 56 #
57 # FIXME these debconf lines should automate the firebird config but do not :(((
58 sudo bash -c 'echo -e "firebird2.5-super\tshared/firebird/enabled\tboolean\ttrue" | debconf-set-selections'
59 sudo bash -c 'echo -e "firebird2.5-super\tshared/firebird/sysdba_password/new_password\tpassword\t123" | debconf-set-selections'
60
e861e4f0 61 apt_install $common_packages libmysqlclient-dev memcached firebird2.5-super firebird2.5-dev unixodbc-dev expect
003e97c5 62
e52712a8 63 run_or_err "Cloning poor man's cache from github" "git clone --depth=1 --single-branch --branch=oracle/10.2.0 https://github.com/poortravis/poormanscache.git $CACHE_DIR && $CACHE_DIR/reassemble"
25ba1953 64 run_or_err "Installing OracleXE manually from deb" "sudo dpkg -i $CACHE_DIR/apt_cache/oracle-xe_10.2.0.1-1.1_i386.deb || sudo bash -c 'source maint/travis-ci_scripts/common.bash && apt_install -f'"
b58ecb01 65
66### config memcached
106c81a5 67 run_or_err "Starting memcached" "sudo /etc/init.d/memcached start"
b58ecb01 68 export DBICTEST_MEMCACHED=127.0.0.1:11211
69
70### config mysql
9367d187 71 run_or_err "Installing minimizing MySQL config" "sudo cp maint/travis-ci_scripts/configs/minimal_mysql_travis.cnf /etc/mysql/conf.d/ && sudo chmod 644 /etc/mysql/conf.d/*.cnf"
fcdd56ca 72 run_or_err "Starting MySQL" "sudo /etc/init.d/mysql start"
b58ecb01 73 run_or_err "Creating MySQL TestDB" "mysql -e 'create database dbic_test;'"
74 export DBICTEST_MYSQL_DSN='dbi:mysql:database=dbic_test;host=127.0.0.1'
75 export DBICTEST_MYSQL_USER=root
76
77### config pg
fcdd56ca 78 run_or_err "Starting PostgreSQL" "sudo /etc/init.d/postgresql start"
b58ecb01 79 run_or_err "Creating PostgreSQL TestDB" "psql -c 'create database dbic_test;' -U postgres"
80 export DBICTEST_PG_DSN='dbi:Pg:database=dbic_test;host=127.0.0.1'
81 export DBICTEST_PG_USER=postgres
82
83### conig firebird
84 # poor man's deb config
85 EXPECT_FB_SCRIPT='
86 spawn dpkg-reconfigure --frontend=text firebird2.5-super
87 expect "Enable Firebird server?"
88 send "\177\177\177\177yes\r"
89 expect "Password for SYSDBA"
90 send "123\r"
91 sleep 1
003e97c5 92 expect eof
b58ecb01 93 '
b58ecb01 94 # creating testdb
95 # FIXME - this step still fails from time to time >:(((
96 # has to do with the FB reconfiguration I suppose
906c0355 97 # for now if it fails twice - simply skip FB testing
98 for i in 1 2 ; do
99
100 run_or_err "Re-configuring Firebird" "
101 sync
102 DEBIAN_FRONTEND=text sudo expect -c '$EXPECT_FB_SCRIPT'
103 sleep 1
104 sync
105 # restart the server for good measure
106 sudo /etc/init.d/firebird2.5-super stop || true
107 sleep 1
108 sync
109 sudo /etc/init.d/firebird2.5-super start
110 sleep 1
111 sync
112 "
113
114 if run_or_err "Creating Firebird TestDB" \
115 "echo \"CREATE DATABASE '/var/lib/firebird/2.5/data/dbic_test.fdb';\" | sudo isql-fb -u sysdba -p 123"
116 then
da59679a 117
906c0355 118 export DBICTEST_FIREBIRD_DSN=dbi:Firebird:dbname=/var/lib/firebird/2.5/data/dbic_test.fdb
119 export DBICTEST_FIREBIRD_USER=SYSDBA
120 export DBICTEST_FIREBIRD_PASS=123
121
122 export DBICTEST_FIREBIRD_INTERBASE_DSN=dbi:InterBase:dbname=/var/lib/firebird/2.5/data/dbic_test.fdb
123 export DBICTEST_FIREBIRD_INTERBASE_USER=SYSDBA
124 export DBICTEST_FIREBIRD_INTERBASE_PASS=123
125
126 break
127 fi
128
129 done
b58ecb01 130
003e97c5 131### config oracle
fa7907b0 132 SRV_ORA_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
133
134 # without this some of the more zealous tests can exhaust the amount
135 # of listeners and oracle is too slow to spin extras up :(
136 sudo bash -c "echo -e '\nprocesses=150' >> $SRV_ORA_HOME/config/scripts/init.ora"
137
003e97c5 138 EXPECT_ORA_SCRIPT='
139 spawn /etc/init.d/oracle-xe configure
140
141 sleep 1
142 set send_slow {1 .005}
143
144 expect "Specify the HTTP port that will be used for Oracle Application Express"
145 sleep 0.5
146 send -s "8021\r"
147
148 expect "Specify a port that will be used for the database listener"
149 sleep 0.5
150 send -s "1521\r"
151
152 expect "Specify a password to be used for database accounts"
153 sleep 0.5
154 send -s "adminpass\r"
155
156 expect "Confirm the password"
157 sleep 0.5
158 send -s "adminpass\r"
159
160 expect "Do you want Oracle Database 10g Express Edition to be started on boot"
161 sleep 0.5
162 send -s "n\r"
163
164 sleep 0.5
165 expect "Configuring Database"
166
167 sleep 1
168 expect eof
169 wait
170 '
171
172 # if we do not redirect to some random file, but instead try to capture
173 # into a var the way run_or_err does - everything hangs
174 # FIXME: I couldn't figure it out after 3 hours of headdesking,
175 # would be nice to know the reason eventually
176 run_or_err "Configuring OracleXE" "sudo $(which expect) -c '$EXPECT_ORA_SCRIPT' &>/tmp/ora_configure_10.2.log"
003e97c5 177
178 export DBICTEST_ORA_DSN=dbi:Oracle://localhost:1521/XE
179 export DBICTEST_ORA_USER=dbic_test
180 export DBICTEST_ORA_PASS=abc123456
fa7907b0 181 export DBICTEST_ORA_EXTRAUSER_DSN="$DBICTEST_ORA_DSN"
003e97c5 182 export DBICTEST_ORA_EXTRAUSER_USER=dbic_test_extra
183 export DBICTEST_ORA_EXTRAUSER_PASS=abc123456
184
185 run_or_err "Create Oracle users" "ORACLE_SID=XE ORACLE_HOME=$SRV_ORA_HOME $SRV_ORA_HOME/bin/sqlplus -L -S system/adminpass @/dev/stdin <<< '
186 CREATE USER $DBICTEST_ORA_USER IDENTIFIED BY $DBICTEST_ORA_PASS;
187 GRANT connect,resource TO $DBICTEST_ORA_USER;
188 CREATE USER $DBICTEST_ORA_EXTRAUSER_USER IDENTIFIED BY $DBICTEST_ORA_EXTRAUSER_PASS;
189 GRANT connect,resource TO $DBICTEST_ORA_EXTRAUSER_USER;
190 '"
191
192 export ORACLE_HOME="$CACHE_DIR/ora_instaclient/x86-64/oracle_instaclient_10.2.0.5.0"
b58ecb01 193fi
e861e4f0 194
195# The debian package is oddly broken - uses a /bin/env based shebang
196# so nothing works under a brew, fixed in libapp-nopaste-perl 0.92-3
197# http://changelogs.ubuntu.com/changelogs/pool/universe/liba/libapp-nopaste-perl/libapp-nopaste-perl_0.96-1/changelog
198#
199# Since the vm runs an old version of umbongo fix things ourselves
200sudo /usr/bin/perl -p -i -e 's|#!/usr/bin/env perl|#!/usr/bin/perl|' $(which nopaste)