Give Firebird (and Interbase) a common sqlt_type
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 10_before_install.bash
CommitLineData
b58ecb01 1#!/bin/bash
2
3source maint/travis-ci_scripts/common.bash
4if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
5
03d379e5 6# Different boxes we run on may have different amount of hw threads
7# Hence why we need to query
8# Originally we used to read /sys/devices/system/cpu/online
9# but it is not available these days (odd). Thus we fall to
10# the alwas-present /proc/cpuinfo
11# The oneliner is a tad convoluted - basicaly what we do is
12# slurp the entire file and get the index off the last
13# `processor : XX` line
003e97c5 14export NUMTHREADS="$(( $(perl -0777 -n -e 'print (/ (?: .+ ^ processor \s+ : \s+ (\d+) ) (?! ^ processor ) /smx)' < /proc/cpuinfo) + 1 ))"
15
16export CACHE_DIR="/tmp/poormanscache"
17
18# install some common tools from APT, more below unless CLEANTEST
19apt_install libapp-nopaste-perl tree apt-transport-https
b58ecb01 20
1e735709 21# FIXME - the debian package is oddly broken - uses a bin/env based shebang
22# so nothing works under a brew. Fix here until #debian-perl patches it up
23sudo /usr/bin/perl -p -i -e 's|#!/usr/bin/env perl|#!/usr/bin/perl|' $(which nopaste)
24
b58ecb01 25if [[ "$CLEANTEST" != "true" ]]; then
26### apt-get invocation - faster to grab everything at once
27 #
28 # FIXME these debconf lines should automate the firebird config but do not :(((
29 sudo bash -c 'echo -e "firebird2.5-super\tshared/firebird/enabled\tboolean\ttrue" | debconf-set-selections'
30 sudo bash -c 'echo -e "firebird2.5-super\tshared/firebird/sysdba_password/new_password\tpassword\t123" | debconf-set-selections'
31
003e97c5 32 # add extra APT repo for Oracle
33 # (https is critical - apt-get update can't seem to follow the 302)
34 sudo bash -c 'echo -e "\ndeb [arch=i386] https://oss.oracle.com/debian unstable main non-free" >> /etc/apt/sources.list'
35
36 run_or_err "Cloning poor man's cache from github" "git clone --depth=1 --branch=poor_mans_travis_cache https://github.com/ribasushi/travis_futzing.git $CACHE_DIR && $CACHE_DIR/reassemble"
37
38 run_or_err "Priming up the APT cache with $(echo $(ls -d $CACHE_DIR/apt_cache/*.deb))" "sudo cp $CACHE_DIR/apt_cache/*.deb /var/cache/apt/archives"
39
40 apt_install memcached firebird2.5-super firebird2.5-dev expect oracle-xe
b58ecb01 41
42### config memcached
106c81a5 43 run_or_err "Starting memcached" "sudo /etc/init.d/memcached start"
b58ecb01 44 export DBICTEST_MEMCACHED=127.0.0.1:11211
45
46### config mysql
47 run_or_err "Creating MySQL TestDB" "mysql -e 'create database dbic_test;'"
48 export DBICTEST_MYSQL_DSN='dbi:mysql:database=dbic_test;host=127.0.0.1'
49 export DBICTEST_MYSQL_USER=root
50
51### config pg
52 run_or_err "Creating PostgreSQL TestDB" "psql -c 'create database dbic_test;' -U postgres"
53 export DBICTEST_PG_DSN='dbi:Pg:database=dbic_test;host=127.0.0.1'
54 export DBICTEST_PG_USER=postgres
55
56### conig firebird
57 # poor man's deb config
58 EXPECT_FB_SCRIPT='
59 spawn dpkg-reconfigure --frontend=text firebird2.5-super
60 expect "Enable Firebird server?"
61 send "\177\177\177\177yes\r"
62 expect "Password for SYSDBA"
63 send "123\r"
64 sleep 1
003e97c5 65 expect eof
b58ecb01 66 '
b58ecb01 67 # creating testdb
68 # FIXME - this step still fails from time to time >:(((
69 # has to do with the FB reconfiguration I suppose
906c0355 70 # for now if it fails twice - simply skip FB testing
71 for i in 1 2 ; do
72
73 run_or_err "Re-configuring Firebird" "
74 sync
75 DEBIAN_FRONTEND=text sudo expect -c '$EXPECT_FB_SCRIPT'
76 sleep 1
77 sync
78 # restart the server for good measure
79 sudo /etc/init.d/firebird2.5-super stop || true
80 sleep 1
81 sync
82 sudo /etc/init.d/firebird2.5-super start
83 sleep 1
84 sync
85 "
86
87 if run_or_err "Creating Firebird TestDB" \
88 "echo \"CREATE DATABASE '/var/lib/firebird/2.5/data/dbic_test.fdb';\" | sudo isql-fb -u sysdba -p 123"
89 then
90 export DBICTEST_FIREBIRD_DSN=dbi:Firebird:dbname=/var/lib/firebird/2.5/data/dbic_test.fdb
91 export DBICTEST_FIREBIRD_USER=SYSDBA
92 export DBICTEST_FIREBIRD_PASS=123
93
94 export DBICTEST_FIREBIRD_INTERBASE_DSN=dbi:InterBase:dbname=/var/lib/firebird/2.5/data/dbic_test.fdb
95 export DBICTEST_FIREBIRD_INTERBASE_USER=SYSDBA
96 export DBICTEST_FIREBIRD_INTERBASE_PASS=123
97
98 break
99 fi
100
101 done
b58ecb01 102
003e97c5 103### config oracle
fa7907b0 104 SRV_ORA_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
105
106 # without this some of the more zealous tests can exhaust the amount
107 # of listeners and oracle is too slow to spin extras up :(
108 sudo bash -c "echo -e '\nprocesses=150' >> $SRV_ORA_HOME/config/scripts/init.ora"
109
003e97c5 110 EXPECT_ORA_SCRIPT='
111 spawn /etc/init.d/oracle-xe configure
112
113 sleep 1
114 set send_slow {1 .005}
115
116 expect "Specify the HTTP port that will be used for Oracle Application Express"
117 sleep 0.5
118 send -s "8021\r"
119
120 expect "Specify a port that will be used for the database listener"
121 sleep 0.5
122 send -s "1521\r"
123
124 expect "Specify a password to be used for database accounts"
125 sleep 0.5
126 send -s "adminpass\r"
127
128 expect "Confirm the password"
129 sleep 0.5
130 send -s "adminpass\r"
131
132 expect "Do you want Oracle Database 10g Express Edition to be started on boot"
133 sleep 0.5
134 send -s "n\r"
135
136 sleep 0.5
137 expect "Configuring Database"
138
139 sleep 1
140 expect eof
141 wait
142 '
143
144 # if we do not redirect to some random file, but instead try to capture
145 # into a var the way run_or_err does - everything hangs
146 # FIXME: I couldn't figure it out after 3 hours of headdesking,
147 # would be nice to know the reason eventually
148 run_or_err "Configuring OracleXE" "sudo $(which expect) -c '$EXPECT_ORA_SCRIPT' &>/tmp/ora_configure_10.2.log"
003e97c5 149
150 export DBICTEST_ORA_DSN=dbi:Oracle://localhost:1521/XE
151 export DBICTEST_ORA_USER=dbic_test
152 export DBICTEST_ORA_PASS=abc123456
fa7907b0 153 export DBICTEST_ORA_EXTRAUSER_DSN="$DBICTEST_ORA_DSN"
003e97c5 154 export DBICTEST_ORA_EXTRAUSER_USER=dbic_test_extra
155 export DBICTEST_ORA_EXTRAUSER_PASS=abc123456
156
157 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 <<< '
158 CREATE USER $DBICTEST_ORA_USER IDENTIFIED BY $DBICTEST_ORA_PASS;
159 GRANT connect,resource TO $DBICTEST_ORA_USER;
160 CREATE USER $DBICTEST_ORA_EXTRAUSER_USER IDENTIFIED BY $DBICTEST_ORA_EXTRAUSER_PASS;
161 GRANT connect,resource TO $DBICTEST_ORA_EXTRAUSER_USER;
162 '"
163
164 export ORACLE_HOME="$CACHE_DIR/ora_instaclient/x86-64/oracle_instaclient_10.2.0.5.0"
b58ecb01 165fi