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