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
|
use strict;
use warnings;
use Test::More 0.88;
use autodie;
use Test::DZil;
my $with_dist = '
package DZT::WDist;
our $DIST = \'DZT-Blort\';
1;
';
my $with_dist_fully_qualified = '
package DZT::WDistFullyQualified;
$DZT::WDistFullyQualified::DIST = \'DZT-Blort\';
1;
';
my $two_packages = '
package DZT::TP1;
package DZT::TP2;
1;
';
my $repeated_packages = '
package DZT::R1;
package DZT::R2;
package DZT::R1;
1;
';
my $monkey_patched = '
package DZT::TP1;
package
DZT::TP2;
1;
';
my $script = '
#!/usr/bin/perl
print "hello world\n";
';
my $script_pkg = '
#!/usr/bin/perl
package DZT::Script;
';
my $tzil = Builder->from_config(
{ dist_root => 'corpus/dist/DZT' },
{
add_files => {
'source/lib/DZT/TP1.pm' => $two_packages,
'source/lib/DZT/WDist.pm' => $with_dist,
'source/lib/DZT/WDistFullyQualified.pm' => $with_dist_fully_qualified,
'source/lib/DZT/R1.pm' => $repeated_packages,
'source/lib/DZT/Monkey.pm' => $monkey_patched,
'source/bin/script_pkg.pl' => $script_pkg,
'source/bin/script_dist.pl' => $script_pkg . "our \$DIST = 'DZT-Blort';\n",
'source/bin/script.pl' => $script,
'source/dist.ini' => simple_ini('GatherDir', 'PkgDist', 'ExecDir'),
},
},
);
$tzil->build;
my $dzt_sample = $tzil->slurp_file('build/lib/DZT/Sample.pm');
like(
$dzt_sample,
qr{^\s*\$\QDZT::Sample::DIST = 'DZT-Sample';\E\s*$}m,
"added \$DIST to DZT::Sample",
);
my $dzt_tp1 = $tzil->slurp_file('build/lib/DZT/TP1.pm');
like(
$dzt_tp1,
qr{^\s*\$\QDZT::TP1::DIST = 'DZT-Sample';\E\s*$}m,
"added \$DIST to DZT::TP1",
);
like(
$dzt_tp1,
qr{^\s*\$\QDZT::TP2::DIST = 'DZT-Sample';\E\s*$}m,
"added \$DIST to DZT::TP2",
);
my $dzt_wdist = $tzil->slurp_file('build/lib/DZT/WDist.pm');
unlike(
$dzt_wdist,
qr{^\s*\$\QDZT::WDist::DIST = 'DZT-Sample';\E\s*$}m,
"*not* added to DZT::WDist; we have one already",
);
my $dzt_wdist_fully_qualified = $tzil->slurp_file('build/lib/DZT/WDistFullyQualified.pm');
unlike(
$dzt_wdist_fully_qualified,
qr{^\s*\$\QDZT::WDistFullyQualified::DIST = 'DZT-Sample';\E\s*$}m,
"*not* added to DZT::WDist; we have one already",
);
my $dzt_script_pkg = $tzil->slurp_file('build/bin/script_pkg.pl');
like(
$dzt_script_pkg,
qr{^\s*\$\QDZT::Script::DIST = 'DZT-Sample';\E\s*$}m,
"added \$DIST to DZT::Script",
);
TODO: {
local $TODO = 'only scanning for packages right now';
my $dzt_script = $tzil->slurp_file('build/bin/script.pl');
like(
$dzt_script,
qr{^\s*\$\QDZT::Script::DIST = 'DZT-Sample';\E\s*$}m,
"added \$DIST to plain script",
);
};
my $script_wdist = $tzil->slurp_file('build/bin/script_dist.pl');
unlike(
$script_wdist,
qr{^\s*\$\QDZT::WDist::DIST = 'DZT-Sample';\E\s*$}m,
"*not* added \$DIST to DZT::Script; we have one already",
);
ok(
grep({ m(skipping lib/DZT/WDist\.pm: assigns to \$DIST) }
@{ $tzil->log_messages }),
"we report the reason for no updating WDist",
);
my $dzt_r1 = $tzil->slurp_file('build/lib/DZT/R1.pm');
my @matches = grep { /R1::DIST/ } split /\n/, $dzt_r1;
is(@matches, 1, "we add at most 1 DIST per package");
my $dzt_monkey = $tzil->slurp_file('build/lib/DZT/Monkey.pm');
unlike(
$dzt_monkey,
qr{\$DZT::TP2::DIST},
"no \$DIST for DZT::TP2 when it looks like a monkey patch"
);
ok(
grep({ m(skipping .+ DZT::TP2) } @{ $tzil->log_messages }),
"we report the reason for not updating Monkey",
);
done_testing;
|