-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path01-basic.t
144 lines (131 loc) · 3.69 KB
/
01-basic.t
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
use sanity;
use Test::Most tests => 45;
use Test::DZil;
use YAML;
use Data::Dumper;
use List::AllUtils v0.04 qw(pairs);
sub test_travis_yml {
my $opts = shift;
my $tzil = Builder->from_config(
{ dist_root => 'corpus/dist' },
{ add_files => {
'source/dist.ini' => simple_ini(
[ TravisYML => $opts ],
),
} },
);
$tzil->chrome->logger->set_debug(1);
lives_ok(sub { $tzil->build }, 'built distro') || explain $tzil->log_messages;
my $yml = YAML::LoadFile($tzil->tempdir->file('source/.travis.yml'));
foreach (pairs @_) {
my ($key, $value) = @$_;
# Serialize options for test name
my $d = Data::Dumper->new([$opts]);
my $test_name = $d->Indent(0)->Quotekeys(0)->Terse(1)->Pair('=>')->Dump;
$test_name .= " --> $key";
is_deeply($yml->{$key}, $value, $test_name) || always_explain $yml;
}
}
# Basic checks
test_travis_yml(
{},
language => 'perl',
script => [ 'dzil smoke --release --author' ],
);
# Email notification
test_travis_yml(
{ notify_email => 0 },
notifications => { email => 'false' },
);
test_travis_yml(
{ notify_email => 1 },
notifications => undef,
);
test_travis_yml(
{ notify_email => 'foo@bar.com' },
notifications => { email => ['foo@bar.com'] },
);
# IRC notification
# TODO: Test notify_irc=>1 with IRC/x_irc meta resource value
test_travis_yml(
{ notify_irc => 0 },
notifications => undef,
);
test_travis_yml(
{ notify_irc => 'irc://irc.perl.org/#roomname' },
notifications => { irc => {
on_failure => 'always',
on_success => 'change',
use_notice => 'true',
channels => [ 'irc.perl.org#roomname' ],
template => [ '%{branch}#%{build_number} by %{author}: %{message} (%{build_url})' ],
} },
);
test_travis_yml(
{ notify_irc => 'irc://irc.perl.org/#roomname', irc_template => 'foobar' },
notifications => { irc => {
on_failure => 'always',
on_success => 'change',
use_notice => 'true',
channels => [ 'irc.perl.org#roomname' ],
template => [ 'foobar' ],
} },
);
# Perl version testing
test_travis_yml(
{},
perl => [ qw(blead 5.24 5.22 5.20 5.18 5.16 5.14 5.12 5.10 5.8) ],
matrix => {
fast_finish => 'true',
allow_failures => [ { perl => 'blead' }, { perl => '5.8' } ],
},
);
test_travis_yml(
{ perl_version => '-5.10 5.12' },
perl => [ qw(5.10 5.12) ],
matrix => {
fast_finish => 'true',
allow_failures => [ { perl => '5.10' } ],
},
);
test_travis_yml(
{ perl_version => '5.10' },
matrix => { fast_finish => 'true' },
);
test_travis_yml(
{ support_builddir => 1, perl_version_build => '5.8 -5.55' },
env => [ 'BUILD=0', 'BUILD=1' ],
perl => [ qw(blead 5.24 5.22 5.20 5.18 5.16 5.14 5.12 5.10 5.8 5.55) ],
matrix => {
fast_finish => 'true',
allow_failures => [
{ perl => 'blead', env => 'BUILD=0' },
{ perl => '5.8', env => 'BUILD=0' },
{ perl => '5.55', env => 'BUILD=1' },
],
},
);
# Various custom commands
foreach my $f ('', '_dzil') { # both should do the same thing
my $method = 'script'.$f;
test_travis_yml(
{ $method, 'newcmd' },
script => [ 'newcmd' ],
);
test_travis_yml(
{ 'pre_'.$method, 'newcmd' },
script => [ 'newcmd', 'dzil smoke --release --author' ],
);
test_travis_yml(
{ 'post_'.$method, 'newcmd' },
script => [ 'dzil smoke --release --author', 'newcmd' ],
);
}
foreach my $t ('', 'pre_', 'post_') {
# because this only touches build files, this should do nothing
my $method = $t.'script_build';
test_travis_yml(
{ $method, 'newcmd' },
script => [ 'dzil smoke --release --author' ],
);
}