(trv) Get bc-multiarch from Github
[dbsrgits/DBIx-Class-Schema-Loader.git] / maint / travis-ci_scripts / 10_before_install.bash
1 #!/bin/bash
2
3 # Stop pre-started RDBMS and sync for some settle time
4 run_or_err "Stopping MySQL"       "sudo /etc/init.d/mysql stop"
5 run_or_err "Stopping PostgreSQL"  "sudo /etc/init.d/postgresql stop"
6 /bin/sync
7
8 # Sanity check VM before continuing
9 echo "
10 =============================================================================
11
12 = Startup Meminfo
13 $(free -m -t)
14
15 ============================================================================="
16
17 CI_VM_MIN_FREE_MB=2000
18 if [[ "$(free -m | grep 'buffers/cache:' | perl -p -e '$_ = (split /\s+/, $_)[3]')" -lt "$CI_VM_MIN_FREE_MB" ]]; then
19   export SHORT_CIRCUIT_SMOKE=1
20   echo_err "
21 =============================================================================
22
23 CI virtual machine stuck in a state with a lot of memory locked for no reason.
24 Under Travis this state usually results in a failed build.
25 Short-circuiting buildjob to avoid false negatives, please restart it manually.
26
27 ============================================================================="
28 fi
29
30 if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
31
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
40 #
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)
43 export NUMTHREADS="$(( ( $(perl -0777 -n -e 'print (/ (?: .+ ^ processor \s+ : \s+ (\d+) ) (?! ^ processor ) /smx)' < /proc/cpuinfo) + 1 ) / 3 ))"
44
45 export CACHE_DIR="/tmp/poormanscache"
46
47 export SCHEMA_LOADER_TESTS_BACKCOMPAT=1
48
49 # these will be installed no matter what, also some extras unless CLEANTEST
50 common_packages="libapp-nopaste-perl tree"
51
52 run_or_err "Updating APT package lists" "sudo apt-get update"
53
54 if [[ "$CLEANTEST" = "true" ]]; then
55
56   apt_install $common_packages
57
58 else
59
60   apt_install $common_packages unixodbc-dev expect
61
62 ### config mysql
63   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"
64   run_or_err "Starting MySQL" "sudo /etc/init.d/mysql start"
65   run_or_err "Creating MySQL TestDB" "mysql -e 'create database dbic_test;'"
66   export DBICTEST_MYSQL_DSN='dbi:mysql:database=dbic_test;host=127.0.0.1'
67   export DBICTEST_MYSQL_USER=root
68
69 ### config pg
70   run_or_err "Starting PostgreSQL" "sudo /etc/init.d/postgresql start"
71   run_or_err "Creating PostgreSQL TestDB" "psql -c 'create database dbic_test;' -U postgres"
72   export DBICTEST_PG_DSN='dbi:Pg:database=dbic_test;host=127.0.0.1'
73   export DBICTEST_PG_USER=postgres
74
75 ### config firebird
76   if [[ "$DBICTEST_FIREBIRD" = "true" ]]; then
77
78     #
79     # FIXME these debconf lines should automate the firebird config but do not :(((
80     sudo bash -c 'echo -e "firebird2.5-super\tshared/firebird/enabled\tboolean\ttrue" | debconf-set-selections'
81     sudo bash -c 'echo -e "firebird2.5-super\tshared/firebird/sysdba_password/new_password\tpassword\t123" | debconf-set-selections'
82
83     apt_install firebird2.5-super firebird2.5-dev
84
85     # poor man's deb config
86     EXPECT_FB_SCRIPT='
87       spawn dpkg-reconfigure --frontend=text firebird2.5-super
88       expect "Enable Firebird server?"
89       send "\177\177\177\177yes\r"
90       expect "Password for SYSDBA"
91       send "123\r"
92       sleep 1
93       expect eof
94     '
95     # creating testdb
96     # FIXME - this step still fails from time to time >:(((
97     # has to do with the FB reconfiguration I suppose
98     # for now if it fails twice - simply skip FB testing
99     for i in 1 2 ; do
100
101       run_or_err "Re-configuring Firebird" "
102         sync
103         DEBIAN_FRONTEND=text sudo expect -c '$EXPECT_FB_SCRIPT'
104         sleep 1
105         sync
106         # restart the server for good measure
107         sudo /etc/init.d/firebird2.5-super stop || true
108         sleep 1
109         sync
110         sudo /etc/init.d/firebird2.5-super start
111         sleep 1
112         sync
113       "
114
115       if run_or_err "Creating Firebird TestDB" \
116         "echo \"CREATE DATABASE '/var/lib/firebird/2.5/data/dbic_test.fdb';\" | sudo isql-fb -u sysdba -p 123"
117       then
118
119         run_or_err "Fetching and building Firebird ODBC driver" '
120           cd "$(mktemp -d)"
121           wget -qO- http://sourceforge.net/projects/firebird/files/firebird-ODBC-driver/2.0.3-Release/OdbcJdbc-src-2.0.3.154.tar.gz/download | tar -xz
122           cd OdbcJdbc/Builds/Gcc.lin
123           perl -p -i -e "s|/usr/lib64|/usr/lib/x86_64-linux-gnu|g" ../makefile.environ
124           make -f makefile.linux
125           sudo make -f makefile.linux install
126         '
127
128         sudo bash -c 'cat >> /etc/odbcinst.ini' <<< "
129 [Firebird]
130 Description     = InterBase/Firebird ODBC Driver
131 Driver          = /usr/lib/x86_64-linux-gnu/libOdbcFb.so
132 Setup           = /usr/lib/x86_64-linux-gnu/libOdbcFb.so
133 Threading       = 1
134 FileUsage       = 1
135 "
136
137         export DBICTEST_FIREBIRD_DSN=dbi:Firebird:dbname=/var/lib/firebird/2.5/data/dbic_test.fdb
138         export DBICTEST_FIREBIRD_USER=SYSDBA
139         export DBICTEST_FIREBIRD_PASS=123
140
141         export DBICTEST_FIREBIRD_INTERBASE_DSN=dbi:InterBase:dbname=/var/lib/firebird/2.5/data/dbic_test.fdb
142         export DBICTEST_FIREBIRD_INTERBASE_USER=SYSDBA
143         export DBICTEST_FIREBIRD_INTERBASE_PASS=123
144
145         export DBICTEST_FIREBIRD_ODBC_DSN="dbi:ODBC:Driver=Firebird;Dbname=/var/lib/firebird/2.5/data/dbic_test.fdb"
146         export DBICTEST_FIREBIRD_ODBC_USER=SYSDBA
147         export DBICTEST_FIREBIRD_ODBC_PASS=123
148
149         break
150       fi
151
152     done
153   fi
154
155 ### config oracle
156   if [[ "$DBICTEST_ORA" = "true" ]]; then
157     run_or_err "Cloning poor man's cache from github" "git clone --depth=1 --single-branch --branch=oracle/10.2.0 https://github.com/poormanscache/poormanscache.git $CACHE_DIR && $CACHE_DIR/reassemble"
158     run_or_err "Installing OracleXE manually from deb" \
159       "sudo dpkg -i $CACHE_DIR/apt_cache/bc-multiarch-travis_1.0_all.deb $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'"
160
161     SRV_ORA_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
162
163     # without this some of the more zealous tests can exhaust the amount
164     # of listeners and oracle is too slow to spin extras up :(
165     sudo bash -c "echo -e '\nprocesses=150' >> $SRV_ORA_HOME/config/scripts/init.ora"
166
167     EXPECT_ORA_SCRIPT='
168       spawn /etc/init.d/oracle-xe configure
169
170       sleep 1
171       set send_slow {1 .005}
172
173       expect "Specify the HTTP port that will be used for Oracle Application Express"
174       sleep 0.5
175       send -s "8021\r"
176
177       expect "Specify a port that will be used for the database listener"
178       sleep 0.5
179       send -s "1521\r"
180
181       expect "Specify a password to be used for database accounts"
182       sleep 0.5
183       send -s "adminpass\r"
184
185       expect "Confirm the password"
186       sleep 0.5
187       send -s "adminpass\r"
188
189       expect "Do you want Oracle Database 10g Express Edition to be started on boot"
190       sleep 0.5
191       send -s "n\r"
192
193       sleep 0.5
194       expect "Configuring Database"
195
196       sleep 1
197       expect eof
198       wait
199     '
200
201     # if we do not redirect to some random file, but instead try to capture
202     # into a var the way run_or_err does - everything hangs
203     # FIXME: I couldn't figure it out after 3 hours of headdesking,
204     # would be nice to know the reason eventually
205     run_or_err "Configuring OracleXE" "sudo $(which expect) -c '$EXPECT_ORA_SCRIPT' &>/tmp/ora_configure_10.2.log"
206
207     export DBICTEST_ORA_DSN=dbi:Oracle://localhost:1521/XE
208     export DBICTEST_ORA_USER=dbic_test
209     export DBICTEST_ORA_PASS=abc123456
210     export DBICTEST_ORA_EXTRAUSER_DSN="$DBICTEST_ORA_DSN"
211     export DBICTEST_ORA_EXTRAUSER_USER=dbic_test_extra
212     export DBICTEST_ORA_EXTRAUSER_PASS=abc123456
213
214     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 <<< '
215       CREATE USER $DBICTEST_ORA_USER IDENTIFIED BY $DBICTEST_ORA_PASS;
216       GRANT connect,resource TO $DBICTEST_ORA_USER;
217       CREATE USER $DBICTEST_ORA_EXTRAUSER_USER IDENTIFIED BY $DBICTEST_ORA_EXTRAUSER_PASS;
218       GRANT connect,resource TO $DBICTEST_ORA_EXTRAUSER_USER;
219     '"
220
221     export ORACLE_HOME="$CACHE_DIR/ora_instaclient/x86-64/oracle_instaclient_10.2.0.5.0"
222   fi
223
224 ### config db2exc
225   if [[ "$DBICTEST_DB2" = "true" ]]; then
226     sudo bash -c 'echo "deb http://archive.canonical.com/ubuntu precise partner" >> /etc/apt/sources.list'
227     run_or_err "Updating apt sources" "sudo apt-get update"
228     apt_install db2exc
229
230     # WTF is this world-writable?
231     # Strip the write bit so it doesn't trip Ubuntu's symlink-in-/tmp attack mitigation
232     sudo chmod -R o-w ~dasusr1/das
233
234     run_or_err "Restarting DB2" "sudo /etc/init.d/db2exc restart"
235
236     export DB2_HOME=/opt/ibm/db2/V9.7
237     export DBICTEST_DB2_DSN=dbi:DB2:DATABASE=DBICTEST
238     export DBICTEST_DB2_USER=db2inst1
239     export DBICTEST_DB2_PASS=abc123456
240
241     run_or_err "Setting up DB2 users" "echo -e '$DBICTEST_DB2_PASS\n$DBICTEST_DB2_PASS' | sudo passwd $DBICTEST_DB2_USER"
242     run_or_err "Creating DB2 database" "sudo -u db2inst1 -i db2 'CREATE DATABASE DBICTEST'"
243     run_or_err "Activating DB2 database" "sudo -u db2inst1 -i db2 'ACTIVATE DATABASE DBICTEST'"
244   fi
245
246 fi
247
248 # The debian package is oddly broken - uses a /bin/env based shebang
249 # so nothing works under a brew, fixed in libapp-nopaste-perl 0.92-3
250 # http://changelogs.ubuntu.com/changelogs/pool/universe/liba/libapp-nopaste-perl/libapp-nopaste-perl_0.96-1/changelog
251 #
252 # Since the vm runs an old version of umbongo fix things ourselves
253 sudo /usr/bin/perl -p -i -e 's|#!/usr/bin/env perl|#!/usr/bin/perl|' $(which nopaste)