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 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229
|
use 5.008004;
use Test2::V0 -no_srand => 1;
use Test::Alien::Build;
use Capture::Tiny qw( capture_merged );
{
my %commands;
my @command_list;
BEGIN {
*CORE::GLOBAL::system = sub {
push @command_list, [@_];
if($commands{$_[0]})
{
$commands{$_[0]}->(@_);
}
$? = $_[0] eq 'bogus' ? -1 : 0;
};
}
sub system_last
{
\@command_list;
}
sub system_clear
{
@command_list = ();
}
sub system_hook
{
my($name, $code) = @_;
$commands{$name} = $code;
}
}
use Alien::Build::CommandSequence;
subtest 'basic' => sub {
my $seq = Alien::Build::CommandSequence->new;
isa_ok $seq, 'Alien::Build::CommandSequence';
};
subtest 'apply requirements' => sub {
my $build = alienfile filename => 'corpus/blank/alienfile';
my $meta = $build->meta;
my $intr = $meta->interpolator;
$intr->add_helper(foo => undef, Foo => '1.00');
$intr->add_helper(bar => undef, Bar => '2.00');
$intr->add_helper(baz => undef, Baz => '3.00');
my $seq = Alien::Build::CommandSequence->new(
'%{foo}',
[ '%{bar}' ],
[ '%{baz}', '--version', sub {} ],
sub {},
);
$seq->apply_requirements($meta, 'share');
is(
$build->requires('share'),
hash {
field Foo => '1.00';
field Bar => '2.00';
field Baz => '3.00';
},
);
};
subtest 'execute' => sub {
my $build = alienfile filename => 'corpus/blank/alienfile';
my $meta = $build->meta;
my $intr = $meta->interpolator;
$intr->add_helper(foo => sub { 'myfoo' });
system_clear;
note capture_merged {
Alien::Build::CommandSequence->new(
'%{foo}',
[ 'stuff', '%{foo}' ],
)->execute($build);
};
is(
system_last,
[ ['myfoo'], ['stuff','myfoo'] ],
'plain',
);
system_clear;
my $error;
note capture_merged {
eval {
Alien::Build::CommandSequence->new(
'bogus',
[ 'stuff', '%{foo}' ],
)->execute($build);
};
$error = $@;
};
like $error, qr/command failed/;
system_clear;
system_hook stuff => sub {
print "stuff output";
print STDERR "stuff error";
};
my @cap;
note capture_merged {
Alien::Build::CommandSequence->new(
[ 'stuff', '%{foo}', sub { @cap = @_ } ],
)->execute($build);
};
is(
\@cap,
array {
item object {
prop blessed => ref $build;
call sub { shift->isa('Alien::Build') } => T();
};
item hash {
field command => ['stuff','myfoo'];
field err => match qr/stuff error/;
field out => match qr/stuff output/;
field exit => 0;
};
},
);
system_hook bogus => sub {
print "bogus output";
print STDERR "bogus error";
};
@cap = ();
note capture_merged {
Alien::Build::CommandSequence->new(
[ 'bogus', '%{foo}', sub { @cap = @_ } ],
)->execute($build);
};
is(
\@cap,
array {
item object {
prop blessed => ref $build;
call sub { shift->isa('Alien::Build') } => T();
};
item hash {
field command => ['bogus','myfoo'];
field err => match qr/bogus error/;
field out => match qr/bogus output/;
field exit => -1;
};
},
);
system_hook stuff2 => sub {
print "single line\n";
print STDERR "stuff error\n";
print STDERR "stuff error\n";
};
system_clear;
note capture_merged {
Alien::Build::CommandSequence->new(
[ 'stuff2', '%{foo}', \'%{alien.runtime.foo}' ],
)->execute($build);
};
is($build->runtime_prop->{foo}, 'single line');
system_clear;
system_hook 'stuff2 myfoo' => sub {
print "single line2\n";
print STDERR "stuff error\n";
print STDERR "stuff error\n";
};
note capture_merged {
Alien::Build::CommandSequence->new(
[ 'stuff2 %{foo}', \'%{alien.runtime.foo2}' ],
)->execute($build);
};
is($build->runtime_prop->{foo2}, 'single line2');
is system_last, [['stuff2 myfoo']];
system_clear;
system_hook 'stuff2 myfoo' => sub {
print "single line2\n";
print STDERR "stuff error\n";
print STDERR "stuff error\n";
};
note capture_merged {
Alien::Build::CommandSequence->new(
[ 'stuff2 %{foo}', \'%{.runtime.foo2}' ],
)->execute($build);
};
is($build->runtime_prop->{foo2}, 'single line2');
is system_last, [['stuff2 myfoo']];
};
done_testing;
|