Tidying: char signedness
[exim.git] / test / lib / Exim / Runtest.pm
CommitLineData
1f187290 1package Exim::Runtest;
87e93574 2use 5.010;
1f187290
HSHR
3use strict;
4use warnings;
6336058c 5use File::Basename;
b369d470 6use IO::Socket::INET;
fefe59d9 7use Cwd;
1f187290
HSHR
8use Carp;
9
d54f9577
HSHR
10use Exporter;
11our @ISA = qw(Exporter);
12
6336058c 13our @EXPORT_OK = qw(mailgroup dynamic_socket exim_binary flavour flavours);
87e93574
HSHR
14our %EXPORT_TAGS = (
15 all => \@EXPORT_OK,
16);
17
1f187290
HSHR
18use List::Util qw'shuffle';
19
10012250
HSHR
20=head1 NAME
21
22Exim::Runtest - helper functions for the runtest script
23
24=head1 SYNOPSIS
25
26 use Exim::Runtest;
27 my $foo = Exim::Runtest::foo('foo');
28
29=head1 DESCRIPTION
30
31The B<Exim::Runtest> module provides some simple functions
32for the F<runtest> script. No functions are exported yet.
33
34=cut
1f187290 35
1f187290 36sub mailgroup {
b1227303 37 my $group = shift // croak "Need a default group name.";
1f187290
HSHR
38
39 croak "Need a group *name*, not a numeric group id."
40 if $group =~ /^\d+$/;
41
42 return $group if getgrnam $group;
43
44 my @groups;
45 setgrent or die "setgrent: $!\n";
46 push @groups, $_ while defined($_ = getgrent);
47 endgrent;
48 return (shuffle @groups)[0];
b369d470
HSHR
49}
50
51sub dynamic_socket {
52 my $socket;
53 for (my $port = 1024; $port < 65000; $port++) {
54 $socket = IO::Socket::INET->new(
55 LocalHost => '127.0.0.1',
56 LocalPort => $port,
57 Listen => 10,
58 ReuseAddr => 1,
59 ) and return $socket;
60 }
61 croak 'Can not allocate a free port.';
62}
1f187290 63
fefe59d9
HSHR
64sub exim_binary {
65
66 # two simple cases, absolute path or relative path and executable
c9eab729
HSHR
67 if (@_) {
68 return @_ if $_[0] =~ /^\//;
69 return Cwd::abs_path(shift), @_ if -x $_[0];
70 }
fefe59d9
HSHR
71
72 # so we're still here, if the simple approach didn't help.
73
74 # if there is '../exim-snapshot/<build-dir>/exim', use this
75 # if there is '../exim4/<build-dir>/exim', use this
76 # if there is '../exim-*.*/<build-dir>/exim', use the one with the highest version
77 # 4.84 < 4.85RC1 < 4.85RC2 < 4.85 < 4.86RC1 < … < 4.86
78 # if there is '../src/<build-dir>', use this
79 #
80
81 my $prefix = '..'; # was intended for testing.
82
83 # get a list of directories having the "scripts/{os,arch}-type"
84 # scripts
85 my @candidates = grep { -x "$_/scripts/os-type" and -x "$_/scripts/arch-type" }
86 "$prefix/exim-snapshot", "$prefix/exim4", # highest priority
87 (reverse sort { # list of exim-*.* directories
88 # split version number from RC number
89 my @a = ($a =~ /(\d+\.\d+)(?:RC(\d+))?/);
90 my @b = ($b =~ /(\d+\.\d+)(?:RC(\d+))?/);
91 # if the versions are not equal, we're fine,
92 # but otherwise we've to compare the RC number, where an
93 # empty RC number is better than a non-empty
94 ($a[0] cmp $b[0]) || (defined $a[1] ? defined $b[1] ? $a[1] cmp $b[1] : -1 : 1)
95 } glob "$prefix/exim-*.*"),
96 "$prefix/src"; # the "normal" source
97
98 # binaries should be found now depending on the os-type and
99 # arch-type in the directories we got above
100 my @binaries = grep { -x }
101 map { ("$_/exim", "$_/exim4") }
102 map {
103 my $os = `$_/scripts/os-type`;
104 my $arch = `$_/scripts/arch-type`;
105 chomp($os, $arch);
7495ef81 106 ($ENV{build} ? "$_/build-$ENV{build}" : ()),
fefe59d9
HSHR
107 "$_/build-$os-$arch" . ($ENV{EXIM_BUILD_SUFFIX} ? ".$ENV{EXIM_BUILD_SUFFIX}" : '');
108 } @candidates;
109
110 return $binaries[0], @_;
111}
112
6336058c
HSHR
113sub flavour {
114 my $etc = '/etc';
115
116 if (@_) {
117 croak "do not pass a directory, it's for testing only"
118 unless $ENV{HARNESS_ACTIVE};
119 $etc = shift;
120 }
121
122 if (open(my $f, '<', "$etc/os-release")) {
123 local $_ = join '', <$f>;
124 my ($id) = /^ID="?(.*?)"?\s*$/m;
9214c762 125 my $version = /^VERSION_ID="?(.*?)"?\s*$/m ? $1 : '';
6336058c
HSHR
126 return "$id$version";
127 }
128
129 if (open(my $f, '<', "$etc/debian_version")) {
130 chomp(local $_ = <$f>);
131 $_ = int $_;
132 return "debian$_";
133 }
134
135 undef;
136}
137
138sub flavours {
139 my %h = map { /\.(\S+)$/, 1 }
45f35410 140 grep { !/\.orig$/ } glob('stdout/*.*'), glob('stderr/*.*');
6336058c
HSHR
141 return sort keys %h;
142}
fefe59d9 143
1f187290 1441;
10012250
HSHR
145
146__END__
147
148=head1 FUNCTIONS
149
150=over
151
152=item B<mailgroup>(I<$default>)
153
154Check if the mailgroup I<$default> exists. Return the checked
155group name or some other random but existing group.
156
157=item B<dynamic_socket>()
158
159Return a dynamically allocated listener socket in the range
160between 1024 and 65534;
161
fefe59d9
HSHR
162=item ($binary, @argv) = B<exim_binary>(I<@argv>)
163
164Find the Exim binary. Consider the first element of I<@argv>
165and remove it from I<@argv>, if it is an executable binary.
166Otherwise search the binary (while honouring C<EXIM_BUILD_SUFFIX>,
167C<../scripts/os-type> and C<../os-arch>) and return the
168the path to the binary and the unmodified I<@argv>.
169
6336058c
HSHR
170=item B<flavour>()
171
172Find a hint for the current flavour (Linux distro). It does so by checking
173typical files in the F</etc> directory.
174
175=item B<flavours>()
176
177Return a list of available flavours. It does so by scanning F<stdout/> and
178F<stderr/> for I<flavour> files (extensions after the numerical prefix.
179
10012250
HSHR
180=back
181
182=cut