1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
use Test::More;
use Test::Pod::Coverage;
use Test::Exception;
use lib 'lib';
use_ok 'Exim::Runtest', qw(:all) or BAIL_OUT 'Can not load the module';
can_ok 'Exim::Runtest', qw(mailgroup dynamic_socket exim_binary flavour flavours);
pod_coverage_ok 'Exim::Runtest' => 'docs complete';
subtest 'mailgroup' => sub {
my $group = getgrgid $(;
ok $group => 'got a group name';
note "use group $group";
is mailgroup($group), $group => 'group names match';
ok $group = mailgroup('non existing group') => 'cope with unknown group';
note "got random group: $group";
ok getgrnam($group) => 'got an existing group';
dies_ok { mailgroup(22) } 'dies on numeric group';
dies_ok { mailgroup() } 'dies on missing default group';
};
subtest 'dynamic_socket' => sub {
ok my $socket = dynamic_socket() => 'got a socket';
note "got socket on port @{[$socket->sockport]}";
isa_ok $socket => 'IO::Socket::INET';
cmp_ok $socket->sockport(), '>=', 1024 => 'port is >= 1024';
$socket->close;
};
subtest 'exim_binary' => sub {
my @argv1 = qw(/bin/sh a b);
my @argv2 = qw(t/samples/foo a b);
chomp(my $cwd = `pwd`); # don't use Cwd, as we use Cwd in the tested module already
is_deeply [exim_binary(@argv1)], \@argv1 => 'got the binary as abs path from argv';
is_deeply [exim_binary(@argv2)], ["$cwd/t/samples/foo", @argv2[1,$#argv2]] => 'got the binary as rel path from argv';
};
subtest 'flavour' => sub {
is flavour('t/samples/debian8+os-release/etc'), 'debian8' => 'got flavour debian8 from os-release';
is flavour('t/samples/debian8+debian-version/etc'), 'debian8' => 'got flavour debian8 from debian_version';
is flavour('t/samples/debian.sid/etc'), 'debian' => 'got flavour debian from debian sid w/o VERSION_ID';
is flavour('t/samples/fedora24/etc'), 'fedora24' => 'got flavour fedora24 from os-release';
is flavour('t/samples/empty'), undef() => 'got empty flavour (undef)';
is_deeply [flavours()], ['debian8'] => 'got available flavours';
};
done_testing;
|