fe3d35b158439228dafe5c34fe55b93d54efae24
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 10_before_install.bash
1 #!/bin/bash
2
3 source maint/travis-ci_scripts/common.bash
4 if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
5
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
14 export NUMTHREADS="$(( $(perl -0777 -n -e 'print (/ (?: .+ ^ processor \s+ : \s+ (\d+) ) (?! ^ processor ) /smx)' < /proc/cpuinfo) + 1 ))"
15
16 export CACHE_DIR="/tmp/poormanscache"
17
18 # install some common tools from APT, more below unless CLEANTEST
19 apt_install libapp-nopaste-perl tree apt-transport-https
20
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
23 sudo /usr/bin/perl -p -i -e 's|#!/usr/bin/env perl|#!/usr/bin/perl|' $(which nopaste)
24
25 if [[ "$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
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 libmysqlclient-dev memcached firebird2.5-super firebird2.5-dev unixodbc-dev expect oracle-xe
41
42 ### config memcached
43   run_or_err "Starting memcached" "sudo /etc/init.d/memcached start"
44   export DBICTEST_MEMCACHED=127.0.0.1:11211
45
46 ### config mysql
47   run_or_err "Restarting MySQL" "sudo /etc/init.d/mysql restart"
48   run_or_err "Creating MySQL TestDB" "mysql -e 'create database dbic_test;'"
49   export DBICTEST_MYSQL_DSN='dbi:mysql:database=dbic_test;host=127.0.0.1'
50   export DBICTEST_MYSQL_USER=root
51
52 ### config pg
53   run_or_err "Restarting PostgreSQL" "sudo /etc/init.d/postgresql restart"
54   run_or_err "Creating PostgreSQL TestDB" "psql -c 'create database dbic_test;' -U postgres"
55   export DBICTEST_PG_DSN='dbi:Pg:database=dbic_test;host=127.0.0.1'
56   export DBICTEST_PG_USER=postgres
57
58 ### conig firebird
59   # poor man's deb config
60   EXPECT_FB_SCRIPT='
61     spawn dpkg-reconfigure --frontend=text firebird2.5-super
62     expect "Enable Firebird server?"
63     send "\177\177\177\177yes\r"
64     expect "Password for SYSDBA"
65     send "123\r"
66     sleep 1
67     expect eof
68   '
69   # creating testdb
70   # FIXME - this step still fails from time to time >:(((
71   # has to do with the FB reconfiguration I suppose
72   # for now if it fails twice - simply skip FB testing
73   for i in 1 2 ; do
74
75     run_or_err "Re-configuring Firebird" "
76       sync
77       DEBIAN_FRONTEND=text sudo expect -c '$EXPECT_FB_SCRIPT'
78       sleep 1
79       sync
80       # restart the server for good measure
81       sudo /etc/init.d/firebird2.5-super stop || true
82       sleep 1
83       sync
84       sudo /etc/init.d/firebird2.5-super start
85       sleep 1
86       sync
87     "
88
89     if run_or_err "Creating Firebird TestDB" \
90       "echo \"CREATE DATABASE '/var/lib/firebird/2.5/data/dbic_test.fdb';\" | sudo isql-fb -u sysdba -p 123"
91     then
92
93       run_or_err "Fetching and building Firebird ODBC driver" '
94         cd "$(mktemp -d)"
95         wget -qO- http://sourceforge.net/projects/firebird/files/firebird-ODBC-driver/2.0.2-Release/OdbcFb-Source-2.0.2.153.gz/download | tar -zx
96         cd Builds/Gcc.lin
97         perl -p -i -e "s|/usr/lib64|/usr/lib/x86_64-linux-gnu|g" ../makefile.environ
98         make -f makefile.linux
99         sudo make -f makefile.linux install
100       '
101
102       sudo bash -c 'cat >> /etc/odbcinst.ini' <<< "
103 [Firebird]
104 Description     = InterBase/Firebird ODBC Driver
105 Driver          = /usr/lib/x86_64-linux-gnu/libOdbcFb.so
106 Setup           = /usr/lib/x86_64-linux-gnu/libOdbcFb.so
107 Threading       = 1
108 FileUsage       = 1
109 "
110
111       export DBICTEST_FIREBIRD_DSN=dbi:Firebird:dbname=/var/lib/firebird/2.5/data/dbic_test.fdb
112       export DBICTEST_FIREBIRD_USER=SYSDBA
113       export DBICTEST_FIREBIRD_PASS=123
114
115       export DBICTEST_FIREBIRD_INTERBASE_DSN=dbi:InterBase:dbname=/var/lib/firebird/2.5/data/dbic_test.fdb
116       export DBICTEST_FIREBIRD_INTERBASE_USER=SYSDBA
117       export DBICTEST_FIREBIRD_INTERBASE_PASS=123
118
119       export DBICTEST_FIREBIRD_ODBC_DSN="dbi:ODBC:Driver=Firebird;Dbname=/var/lib/firebird/2.5/data/dbic_test.fdb"
120       export DBICTEST_FIREBIRD_ODBC_USER=SYSDBA
121       export DBICTEST_FIREBIRD_ODBC_PASS=123
122
123       break
124     fi
125
126   done
127
128 ### config oracle
129   SRV_ORA_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
130
131   # without this some of the more zealous tests can exhaust the amount
132   # of listeners and oracle is too slow to spin extras up :(
133   sudo bash -c "echo -e '\nprocesses=150' >> $SRV_ORA_HOME/config/scripts/init.ora"
134
135   EXPECT_ORA_SCRIPT='
136     spawn /etc/init.d/oracle-xe configure
137
138     sleep 1
139     set send_slow {1 .005}
140
141     expect "Specify the HTTP port that will be used for Oracle Application Express"
142     sleep 0.5
143     send -s "8021\r"
144
145     expect "Specify a port that will be used for the database listener"
146     sleep 0.5
147     send -s "1521\r"
148
149     expect "Specify a password to be used for database accounts"
150     sleep 0.5
151     send -s "adminpass\r"
152
153     expect "Confirm the password"
154     sleep 0.5
155     send -s "adminpass\r"
156
157     expect "Do you want Oracle Database 10g Express Edition to be started on boot"
158     sleep 0.5
159     send -s "n\r"
160
161     sleep 0.5
162     expect "Configuring Database"
163
164     sleep 1
165     expect eof
166     wait
167   '
168
169   # if we do not redirect to some random file, but instead try to capture
170   # into a var the way run_or_err does - everything hangs
171   # FIXME: I couldn't figure it out after 3 hours of headdesking,
172   # would be nice to know the reason eventually
173   run_or_err "Configuring OracleXE" "sudo $(which expect) -c '$EXPECT_ORA_SCRIPT' &>/tmp/ora_configure_10.2.log"
174
175   export DBICTEST_ORA_DSN=dbi:Oracle://localhost:1521/XE
176   export DBICTEST_ORA_USER=dbic_test
177   export DBICTEST_ORA_PASS=abc123456
178   export DBICTEST_ORA_EXTRAUSER_DSN="$DBICTEST_ORA_DSN"
179   export DBICTEST_ORA_EXTRAUSER_USER=dbic_test_extra
180   export DBICTEST_ORA_EXTRAUSER_PASS=abc123456
181
182   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 <<< '
183     CREATE USER $DBICTEST_ORA_USER IDENTIFIED BY $DBICTEST_ORA_PASS;
184     GRANT connect,resource TO $DBICTEST_ORA_USER;
185     CREATE USER $DBICTEST_ORA_EXTRAUSER_USER IDENTIFIED BY $DBICTEST_ORA_EXTRAUSER_PASS;
186     GRANT connect,resource TO $DBICTEST_ORA_EXTRAUSER_USER;
187   '"
188
189   export ORACLE_HOME="$CACHE_DIR/ora_instaclient/x86-64/oracle_instaclient_10.2.0.5.0"
190 fi