Add Firebird over ODBC TravisCI testing
[dbsrgits/DBIx-Class.git] / maint / travis-ci_scripts / 30_before_script.bash
1 #!/bin/bash
2
3 source maint/travis-ci_scripts/common.bash
4 if [[ -n "$SHORT_CIRCUIT_SMOKE" ]] ; then return ; fi
5
6 # poison the environment
7 if [[ "$POISON_ENV" = "true" ]] ; then
8
9   # look through lib, find all mentioned ENVvars and set them
10   # to true and see if anything explodes
11   for var in $(grep -P '\$ENV\{' -r lib/ | grep -oP 'DBIC_\w+' | sort -u | grep -v DBIC_TRACE) ; do
12     if [[ -z "${!var}" ]] ; then
13       export $var=1
14     fi
15   done
16
17   # bogus nonexisting DBI_*
18   export DBI_DSN="dbi:ODBC:server=NonexistentServerAddress"
19   export DBI_DRIVER="ADO"
20
21   # make sure tests do not rely on implicid order of returned results
22   export DBICTEST_SQLITE_REVERSE_DEFAULT_ORDER=1
23
24   # emulate a local::lib-like env
25   # trick cpanm into executing true as shell - we just need the find+unpack
26   run_or_err "Downloading latest stable DBIC from CPAN" \
27     "SHELL=/bin/true cpanm --look DBIx::Class"
28
29   export PERL5LIB="$( ls -d ~/.cpanm/latest-build/DBIx-Class-*/lib | tail -n1 ):$PERL5LIB"
30
31   # perldoc -l <mod> searches $(pwd)/lib in addition to PERL5LIB etc, hence the cd /
32   echo_err "Latest stable DBIC (without deps) locatable via \$PERL5LIB at $(cd / && perldoc -l DBIx::Class)"
33
34   # FIXME - this is a kludge in place of proper MDV testing. For the time
35   # being simply use the minimum versions of our DBI/DBDstack, to avoid
36   # fuckups like 0.08260 (went unnoticed for 5 months)
37   #
38   # use url-spec for DBI due to https://github.com/miyagawa/cpanminus/issues/328
39   if perl -M5.013003 -e1 &>/dev/null ; then
40     # earlier DBI will not compile without PERL_POLLUTE which was gone in 5.14
41     parallel_installdeps_notest T/TI/TIMB/DBI-1.614.tar.gz
42   else
43     parallel_installdeps_notest T/TI/TIMB/DBI-1.57.tar.gz
44   fi
45
46   # Test both minimum DBD::SQLite and minimum BigInt SQLite
47   if [[ "$CLEANTEST" = "true" ]]; then
48     parallel_installdeps_notest DBD::SQLite@1.37
49   else
50     parallel_installdeps_notest DBD::SQLite@1.29
51   fi
52
53 fi
54
55 if [[ "$CLEANTEST" = "true" ]]; then
56   # get the last inc/ off cpan - we will get rid of MI
57   # soon enough, but till then this will do
58   # the point is to have a *really* clean perl (the ones
59   # we build are guaranteed to be clean, without side
60   # effects from travis preinstalls)
61
62   # trick cpanm into executing true as shell - we just need the find+unpack
63   [[ -d ~/.cpanm/latest-build/DBIx-Class-*/inc ]] || run_or_err "Downloading latest stable DBIC inc/ from CPAN" \
64     "SHELL=/bin/true cpanm --look DBIx::Class"
65
66   mv ~/.cpanm/latest-build/DBIx-Class-*/inc .
67
68   # The first CPAN which is somewhat sane is around 1.94_56 (perl 5.12)
69   # The problem is that the first sane version also brings a *lot* of
70   # deps with it, notably things like YAML and HTTP::Tiny
71   # The goal of CLEANTEST is to have as little extra stuff installed as
72   # possible, mainly to catch "but X is perl core" mistakes
73   # So instead we still use our stock (possibly old) CPAN, and add some
74   # handholding
75
76   if [[ "$DEVREL_DEPS" == "true" ]] ; then
77     # Many dists still do not pass tests under tb1.5 properly (and it itself
78     # does not even install on things like 5.10). Install the *stable-dev*
79     # latest T::B here, so that it will not show up as a dependency, and
80     # hence it will not get installed a second time as an unsatisfied dep
81     # under cpanm --dev
82     #
83     # We are also not "quite ready" for SQLA 1.99, do not consider it
84     #
85     installdeps 'Test::Builder~<1.005' 'SQL::Abstract~<1.99'
86
87   elif ! CPAN_is_sane ; then
88     # no configure_requires - we will need the usual suspects anyway
89     # without pre-installing these in one pass things like extract_prereqs won't work
90     installdeps ExtUtils::MakeMaker ExtUtils::CBuilder Module::Build
91
92   fi
93
94 else
95   # we will be running all dbic tests - preinstall lots of stuff, run basic tests
96   # using SQLT and set up whatever databases necessary
97   export DBICTEST_SQLT_DEPLOY=1
98
99   # FIXME - need new TB1.5 devrel
100   # if we run under --dev install latest github of TB1.5 first
101   # (unreleased workaround for precedence warnings)
102   if [[ "$DEVREL_DEPS" == "true" ]] ; then
103     parallel_installdeps_notest git://github.com/nthykier/test-more.git@fix-return-precedence-issue
104   fi
105
106   # do the preinstall in several passes to minimize amount of cross-deps installing
107   # multiple times, and to avoid module re-architecture breaking another install
108   # (e.g. once Carp is upgraded there's no more Carp::Heavy,
109   # while a File::Path upgrade may cause a parallel EUMM run to fail)
110   #
111   parallel_installdeps_notest ExtUtils::MakeMaker
112   parallel_installdeps_notest File::Path
113   parallel_installdeps_notest Carp
114   parallel_installdeps_notest Module::Build
115   parallel_installdeps_notest File::Spec Data::Dumper Module::Runtime
116   parallel_installdeps_notest Test::Exception Encode::Locale Test::Fatal
117   parallel_installdeps_notest Test::Warn B::Hooks::EndOfScope Test::Differences HTTP::Status
118   parallel_installdeps_notest Test::Pod::Coverage Test::EOL Devel::GlobalDestruction Sub::Name MRO::Compat Class::XSAccessor URI::Escape HTML::Entities
119   parallel_installdeps_notest YAML LWP Class::Trigger JSON::XS DateTime::Format::Builder Class::Accessor::Grouped Package::Variant
120   parallel_installdeps_notest 'SQL::Abstract~<1.99' Moose Module::Install JSON SQL::Translator File::Which
121
122   if [[ -n "DBICTEST_FIREBIRD_INTERBASE_DSN" ]] ; then
123     # the official version is very much outdated and does not compile on 5.14+
124     # use this rather updated source tree (needs to go to PAUSE):
125     # https://github.com/pilcrow/perl-dbd-interbase
126     parallel_installdeps_notest git://github.com/dbsrgits/perl-dbd-interbase.git
127   fi
128
129 fi
130
131 # generate the makefile which will have different deps depending on
132 # the runmode and envvars set above
133 run_or_err "Configure on current branch" "perl Makefile.PL"
134
135 # install (remaining) dependencies, sometimes with a gentle push
136 if [[ "$CLEANTEST" = "true" ]]; then
137   # we may need to prepend some stuff to that list
138   HARD_DEPS="$(echo $(make listdeps))"
139
140 ##### TEMPORARY WORKAROUNDS needed in case we will be using CPAN.pm
141   if [[ "$DEVREL_DEPS" != "true" ]] && ! CPAN_is_sane ; then
142     # combat dzillirium on harness-wide level, otherwise breakage happens weekly
143     echo_err "$(tstamp) Ancient CPAN.pm: engaging TAP::Harness::IgnoreNonessentialDzilAutogeneratedTests during dep install"
144     perl -MTAP::Harness\ 3.18 -e1 &>/dev/null || run_or_err "Upgrading TAP::Harness for HARNESS_SUBCLASS support" "cpan TAP::Harness"
145     export PERL5LIB="$(pwd)/maint/travis-ci_scripts/lib:$PERL5LIB"
146     export HARNESS_SUBCLASS="TAP::Harness::IgnoreNonessentialDzilAutogeneratedTests"
147     # sanity check, T::H does not report sensible errors when the subclass fails to load
148     perl -MTAP::Harness::IgnoreNonessentialDzilAutogeneratedTests -e1
149
150     # DBD::SQLite reasonably wants DBI at config time
151     perl -MDBI -e1 &>/dev/null || HARD_DEPS="DBI $HARD_DEPS"
152
153     # this is a fucked CPAN - won't understand configure_requires of
154     # various pieces we may run into
155     # FIXME - need to get these off metacpan or something instead
156     HARD_DEPS="ExtUtils::Depends B::Hooks::OP::Check $HARD_DEPS"
157
158     # FIXME
159     # parent is temporary due to Carp https://rt.cpan.org/Ticket/Display.html?id=88494
160     HARD_DEPS="parent $HARD_DEPS"
161
162     if CPAN_supports_BUILDPL ; then
163       # We will invoke a posibly MBT based BUILD-file, but we do not support
164       # configure requires. So we not only need to install MBT but its prereqs
165       # FIXME This is madness
166       HARD_DEPS="$(extract_prereqs Module::Build::Tiny) Module::Build::Tiny $HARD_DEPS"
167     else
168       # FIXME
169       # work around Params::Validate not having a Makefile.PL so really old
170       # toolchains can not figure out what the prereqs are ;(
171       # Need to do more research before filing a bug requesting Makefile inclusion
172       HARD_DEPS="$(extract_prereqs Params::Validate) $HARD_DEPS"
173     fi
174   fi
175 ##### END TEMPORARY WORKAROUNDS
176
177   installdeps $HARD_DEPS
178
179 ### FIXME in case we set it earlier in a workaround
180   if [[ -n "$HARNESS_SUBCLASS" ]] ; then
181
182     INSTALLDEPS_SKIPPED_TESTLIST=$(perl -0777 -e '
183 my $curmod_re = qr{
184 ^
185   (?:
186     \QBuilding and testing\E
187       |
188     [\x20\t]* CPAN\.pm: [^\n]*? (?i:build)\S*
189   )
190
191   [\x20\t]+ (\S+)
192 $}mx;
193
194 my $curskip_re = qr{^ === \x20 \QSkipping nonessential autogenerated tests: \E([^\n]+) }mx;
195
196 my (undef, @chunks) = (split qr/$curmod_re/, <>);
197 while (@chunks) {
198   my ($mod, $log) = splice @chunks, 0, 2;
199   print "!!! Skipped nonessential tests while installing $mod:\n\t$1\n"
200     if $log =~ $curskip_re;
201 }
202 ' <<< "$LASTOUT")
203
204     if [[ -n "$INSTALLDEPS_SKIPPED_TESTLIST" ]] ; then
205       POSTMORTEM="$POSTMORTEM$(
206         echo
207         echo "The following non-essential tests were skipped during deps installation"
208         echo "============================================================="
209         echo "$INSTALLDEPS_SKIPPED_TESTLIST"
210         echo "============================================================="
211         echo
212       )"
213     fi
214
215     unset HARNESS_SUBCLASS
216   fi
217
218 else
219
220   # listalldeps is deliberate - will upgrade everything it can find
221   # we exclude SQLA specifically, since we do not want to pull
222   # in 1.99_xx on bleadcpan runs
223   deplist="$(make listalldeps | grep -vP '^(SQL::Abstract)$')"
224
225   # assume MDV on POISON_ENV, do not touch DBI/SQLite
226   if [[ "$POISON_ENV" = "true" ]] ; then
227     deplist="$(grep -vP '^(DBI|DBD::SQLite)$' <<< "$deplist")"
228   fi
229
230   parallel_installdeps_notest "$deplist"
231 fi
232
233 echo_err "$(tstamp) Dependency installation finished"
234 # this will display list of available versions
235 perl Makefile.PL
236
237 # make sure we got everything we need
238 if [[ -n "$(make listdeps)" ]] ; then
239   echo_err "$(tstamp) Not all deps installed - something went wrong :("
240   sleep 1 # without this the echo below confuses the console listener >.<
241   CPAN_is_sane || echo_err -e "Outdated CPAN.pm used - full installdep log follows\n$INSTALLDEPS_OUT\n\nSearch for 'NOT OK' in the text above\n\nDeps still missing:"
242   sleep 3 # without this the above echo confuses the console listener >.<
243   make listdeps
244   exit 1
245 fi
246
247 # check that our MDV somewhat works
248 if [[ "$POISON_ENV" = "true" ]] && ( perl -MDBD::SQLite\ 1.38 -e1 || perl -MDBI\ 1.615 -e1 ) &>/dev/null ; then
249   echo_err "Something went wrong - higher versions of DBI and/or DBD::SQLite than we expected"
250   exit 1
251 fi
252
253
254 # announce what are we running
255 echo_err "
256 ===================== DEPENDENCY CONFIGURATION COMPLETE =====================
257 $(tstamp) Configuration phase seems to have taken $(date -ud "@$SECONDS" '+%H:%M:%S') (@$SECONDS)
258
259 = CPUinfo
260 $(perl -0777 -p -e 's/.+\n\n(?!\z)//s' < /proc/cpuinfo)
261
262 = Meminfo
263 $(free -m -t)
264
265 = Kernel info
266 $(uname -a)
267
268 = Network Configuration
269 $(ip addr)
270
271 = Network Sockets Status
272 $(sudo netstat -an46p | grep -Pv '\s(CLOSING|(FIN|TIME|CLOSE)_WAIT.?|LAST_ACK)\s')
273
274 = Environment
275 $(env | grep -P 'TEST|HARNESS|MAKE|TRAVIS|PERL|DBIC' | LC_ALL=C sort | cat -v)
276
277 = Perl in use
278 $(perl -V)
279 ============================================================================="