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
|
use strict;
use warnings;
use Test::More 0.88;
use lib 't/lib';
use autodie;
use Test::DZil;
my $with_version = '
package DZT::WVer;
our $VERSION = 1.234;
1;
';
my $with_version_two_lines = '
package DZT::WVer;
our $VERSION;
$VERSION = 1.234;
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 $hide_me_comment = '
package DZT::HMC;
package # hide me from toolchain
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/WVer.pm' => $with_version,
'source/lib/DZT/WVerTwoLines.pm' => $with_version_two_lines,
'source/lib/DZT/R1.pm' => $repeated_packages,
'source/lib/DZT/Monkey.pm' => $monkey_patched,
'source/lib/DZT/HideMe.pm' => $hide_me_comment,
'source/bin/script_pkg.pl' => $script_pkg,
'source/bin/script_ver.pl' => $script_pkg . "our \$VERSION = 1.234;\n",
'source/bin/script.pl' => $script,
'source/dist.ini' => simple_ini('GatherDir', 'PkgVersion', 'ExecDir'),
},
},
);
$tzil->build;
my $dzt_sample = $tzil->slurp_file('build/lib/DZT/Sample.pm');
like(
$dzt_sample,
qr{^\s*\$\QDZT::Sample::VERSION = '0.001';\E\s*$}m,
"added version to DZT::Sample",
);
my $dzt_tp1 = $tzil->slurp_file('build/lib/DZT/TP1.pm');
like(
$dzt_tp1,
qr{^\s*\$\QDZT::TP1::VERSION = '0.001';\E\s*$}m,
"added version to DZT::TP1",
);
like(
$dzt_tp1,
qr{^\s*\$\QDZT::TP2::VERSION = '0.001';\E\s*$}m,
"added version to DZT::TP2",
);
my $dzt_wver = $tzil->slurp_file('build/lib/DZT/WVer.pm');
unlike(
$dzt_wver,
qr{^\s*\$\QDZT::WVer::VERSION = '0.001';\E\s*$}m,
"*not* added to DZT::WVer; we have one already",
);
my $dzt_wver_two_lines = $tzil->slurp_file('build/lib/DZT/WVerTwoLines.pm');
unlike(
$dzt_wver,
qr{^\s*\$\QDZT::WVer::VERSION = '0.001';\E\s*$}m,
"*not* added to DZT::WVerTwoLines; we have one already",
);
my $dzt_script_pkg = $tzil->slurp_file('build/bin/script_pkg.pl');
like(
$dzt_script_pkg,
qr{^\s*\$\QDZT::Script::VERSION = '0.001';\E\s*$}m,
"added version 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::VERSION = '0.001';\E\s*$}m,
"added version to plain script",
);
};
my $script_wver = $tzil->slurp_file('build/bin/script_ver.pl');
unlike(
$script_wver,
qr{^\s*\$\QDZT::WVer::VERSION = '0.001';\E\s*$}m,
"*not* added to versioned DZT::Script; we have one already",
);
ok(
grep({ m(skipping lib/DZT/WVer\.pm: assigns to \$VERSION) }
@{ $tzil->log_messages }),
"we report the reason for no updateing WVer",
);
my $dzt_r1 = $tzil->slurp_file('build/lib/DZT/R1.pm');
my @matches = grep { /R1::VER/ } split /\n/, $dzt_r1;
is(@matches, 1, "we add at most 1 VERSION per package");
my $dzt_monkey = $tzil->slurp_file('build/lib/DZT/Monkey.pm');
unlike(
$dzt_monkey,
qr{\$DZT::TP2::VERSION},
"no version 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",
);
my $dzt_hideme = $tzil->slurp_file('build/lib/DZT/HideMe.pm');
unlike(
$dzt_hideme,
qr{\$DZT::TP2::VERSION},
"no version for DZT::TP2 when it was hidden with a comment"
);
{
local $ENV{TRIAL} = 1;
my $tzil_trial = Builder->from_config(
{ dist_root => 'corpus/dist/DZT' },
{
add_files => {
'source/dist.ini' => simple_ini('GatherDir', 'PkgVersion', 'ExecDir'),
},
},
);
$tzil_trial->build;
my $dzt_sample_trial = $tzil_trial->slurp_file('build/lib/DZT/Sample.pm');
like(
$dzt_sample_trial,
qr{^\s*\$\QDZT::Sample::VERSION = '0.001'; # TRIAL\E\s*$}m,
"added version with 'TRIAL' comment when \$ENV{TRIAL}=1",
);
}
done_testing;
|