Remove obsolete startup check (introduced in 5e724964, superseded by a5a7bb73)
[dbsrgits/DBIx-Class.git] / t / lib / DBICTest / Util.pm
CommitLineData
65d35121 1package DBICTest::Util;
2
3use warnings;
4use strict;
5
bbcc1fe8 6# this noop trick initializes the STDOUT, so that the TAP::Harness
7# issued IO::Select->can_read calls (which are blocking wtf wtf wtf)
8# keep spinning and scheduling jobs
9# This results in an overall much smoother job-queue drainage, since
10# the Harness blocks less
11# (ideally this needs to be addressed in T::H, but a quick patchjob
12# broke everything so tabling it for now)
13BEGIN {
14 if ($INC{'Test/Builder.pm'}) {
15 local $| = 1;
16 print "#\n";
17 }
18}
19
8d6b1478 20use Config;
a3a17a15 21use Carp 'confess';
a446d7f8 22use Scalar::Util qw(blessed refaddr);
65d35121 23
24use base 'Exporter';
a3a17a15 25our @EXPORT_OK = qw(local_umask stacktrace check_customcond_args);
8d6b1478 26
27sub local_umask {
28 return unless defined $Config{d_umask};
29
30 die 'Calling local_umask() in void context makes no sense'
31 if ! defined wantarray;
32
33 my $old_umask = umask(shift());
34 die "Setting umask failed: $!" unless defined $old_umask;
35
36 return bless \$old_umask, 'DBICTest::Util::UmaskGuard';
37}
38{
39 package DBICTest::Util::UmaskGuard;
40 sub DESTROY {
41 local ($@, $!);
42 eval { defined (umask ${$_[0]}) or die };
43 warn ( "Unable to reset old umask ${$_[0]}: " . ($!||'Unknown error') )
44 if ($@ || $!);
45 }
46}
47
65d35121 48sub stacktrace {
49 my $frame = shift;
50 $frame++;
51 my (@stack, @frame);
52
53 while (@frame = caller($frame++)) {
54 push @stack, [@frame[3,1,2]];
55 }
56
57 return undef unless @stack;
58
59 $stack[0][0] = '';
60 return join "\tinvoked as ", map { sprintf ("%s at %s line %d\n", @$_ ) } @stack;
61}
62
a3a17a15 63sub check_customcond_args ($) {
64 my $args = shift;
65
66 confess "Expecting a hashref"
67 unless ref $args eq 'HASH';
68
a446d7f8 69 for (qw(rel_name foreign_relname self_alias foreign_alias)) {
a3a17a15 70 confess "Custom condition argument '$_' must be a plain string"
71 if length ref $args->{$_} or ! length $args->{$_};
72 }
73
a446d7f8 74 confess "Current and legacy rel_name arguments do not match"
75 if $args->{rel_name} ne $args->{foreign_relname};
76
a3a17a15 77 confess "Custom condition argument 'self_resultsource' must be a rsrc instance"
78 unless defined blessed $args->{self_resultsource} and $args->{self_resultsource}->isa('DBIx::Class::ResultSource');
79
80 confess "Passed resultsource has no record of the supplied rel_name - likely wrong \$rsrc"
a446d7f8 81 unless ref $args->{self_resultsource}->relationship_info($args->{rel_name});
82
e884e5d9 83 my $struct_cnt = 0;
1adbd3fc 84
98def3ef 85 if (defined $args->{self_result_object} or defined $args->{self_rowobj} ) {
e884e5d9 86 $struct_cnt++;
98def3ef 87 for (qw(self_result_object self_rowobj)) {
a446d7f8 88 confess "Custom condition argument '$_' must be a result instance"
89 unless defined blessed $args->{$_} and $args->{$_}->isa('DBIx::Class::Row');
90 }
a3a17a15 91
98def3ef 92 confess "Current and legacy self_result_object arguments do not match"
93 if refaddr($args->{self_result_object}) != refaddr($args->{self_rowobj});
a3a17a15 94 }
95
e884e5d9 96 if (defined $args->{foreign_values}) {
97 $struct_cnt++;
1adbd3fc 98
e884e5d9 99 confess "Custom condition argument 'foreign_values' must be a hash reference"
100 unless ref $args->{foreign_values} eq 'HASH';
1adbd3fc 101 }
102
e884e5d9 103 confess "Data structures supplied on both ends of a relationship"
104 if $struct_cnt == 2;
1adbd3fc 105
a3a17a15 106 $args;
107}
108
65d35121 1091;