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 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
|
#!/usr/bin/perl
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
use v5.36;
use Test::More tests => 64;
use Test::Dpkg qw(:paths);
use Dpkg ();
use Dpkg::Arch qw(get_host_arch);
use Dpkg::Control;
use ok 'Dpkg::Substvars';
# Needed by Dpkg::Substvars functions.
$ENV{DEB_BUILD_ARCH} = 'amd64';
$ENV{DEB_HOST_ARCH} = 'amd64';
my $datadir = test_get_data_path();
my $output;
my $expected;
my $s = Dpkg::Substvars->new();
$s->load("$datadir/substvars1");
# Simple value tests.
is($s->get('var1'), 'Some value', 'var1');
is($s->get('var2'), 'Some other value', 'var2');
is($s->get('var3'), 'Yet another value', 'var3');
is($s->get('var4'), undef, 'no var4');
is($s->get('optional-var5'), 'Optionally used value', 'optional-var5');
# Set automatic variable.
$s->set_as_auto('var_auto', 'auto');
is($s->get('var_auto'), 'auto', 'get var_auto');
$expected = <<'VARS';
optional-var5?=Optionally used value
var1=Some value
var2=Some other value
var3=Yet another value
VARS
is($s->output(), $expected, 'No automatic variables output');
# Overriding.
$s->set('var1', 'New value');
is($s->get('var1'), 'New value', 'var1 updated');
# Deleting.
$s->delete('var3');
is($s->get('var3'), undef, 'var3 deleted');
# Default variables.
is($s->get('Newline'), "\n", 'newline');
is($s->get('Space'), ' ', 'space');
is($s->get('Tab'), "\t", 'tab');
is($s->get('dpkg:Version'), $Dpkg::PROGVERSION, 'dpkg version 1');
# Special variables.
is($s->get('Arch'), undef, 'no arch');
$s->set_arch_substvars();
is($s->get('Arch'), get_host_arch(), 'arch');
is($s->get('vendor:Id'), undef, 'no vendor id');
is($s->get('vendor:Name'), undef, 'no vendor name');
$s->set_vendor_substvars();
is($s->get('vendor:Id'), 'debian', 'vendor id');
is($s->get('vendor:Name'), 'Debian', 'vendor name');
is($s->get($_), undef, 'no ' . $_) for qw/binary:Version source:Version source:Upstream-Version/;
$s->set_version_substvars('1:2.3.4~5-6.7.8~nmu9', '1:2.3.4~5-6.7.8~nmu9+bin0');
is($s->get('binary:Version'), '1:2.3.4~5-6.7.8~nmu9+bin0', 'binary:Version');
is($s->get('source:Version'), '1:2.3.4~5-6.7.8~nmu9', 'source:Version');
is($s->get('source:Upstream-Version'), '1:2.3.4~5', 'source:Upstream-Version');
$s->set_version_substvars('2.3.4~5-6.7.8~nmu9+b1', '1:2.3.4~5-6.7.8~nmu9+b1');
is($s->get('binary:Version'), '1:2.3.4~5-6.7.8~nmu9+b1', 'binary:Version');
is($s->get('source:Version'), '2.3.4~5-6.7.8~nmu9', 'source:Version');
is($s->get('source:Upstream-Version'), '2.3.4~5', 'source:Upstream-Version');
$s->set_version_substvars('1:2.3.4~5-6.7.8~nmu9+b0');
is($s->get('binary:Version'), '1:2.3.4~5-6.7.8~nmu9+b0', 'binary:Version');
is($s->get('source:Version'), '1:2.3.4~5-6.7.8~nmu9', 'source:Version');
is($s->get('source:Upstream-Version'), '1:2.3.4~5', 'source:Upstream-Version');
is($s->get($_), undef, 'no ' . $_) foreach qw(source:Synopsis source:Extended-Description);
$s->set_desc_substvars("short synopsis\nthis is the long\nextended text\n");
is($s->get('source:Synopsis'), 'short synopsis', 'contents of source:Synopsis');
is($s->get('source:Extended-Description'), "this is the long\nextended text\n",
'contents of source:Extended-Description');
my %ctrl_fields = (
'Some-Field' => 'some-value',
'Other-Field' => 'other-value',
'Alter-Field' => 'alter-value',
);
is($s->get($_), undef, 'no ' . $_) foreach sort keys %ctrl_fields;
$s->set_field_substvars(\%ctrl_fields, 'ctrl');
is($s->get('ctrl:Some-Field'), 'some-value', 'contents of ctrl:Some-Field');
is($s->get('ctrl:Other-Field'), 'other-value', 'contents of ctrl:Other-Field');
is($s->get('ctrl:Alter-Field'), 'alter-value', 'contents of ctrl:Alter-Field');
# Direct replace: few.
is($s->substvars('This is a string ${var1} with variables ${binary:Version}'),
'This is a string New value with variables 1:2.3.4~5-6.7.8~nmu9+b0',
'direct replace, few times');
# Direct replace: many times (more than the recursive limit).
$s->set('dr', 'feed');
is($s->substvars('${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}' .
'${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}' .
'${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}' .
'${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}' .
'${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}' .
'${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}${dr}'),
'feedfeedfeedfeedfeedfeedfeedfeedfeedfeed' .
'feedfeedfeedfeedfeedfeedfeedfeedfeedfeed' .
'feedfeedfeedfeedfeedfeedfeedfeedfeedfeed' .
'feedfeedfeedfeedfeedfeedfeedfeedfeedfeed' .
'feedfeedfeedfeedfeedfeedfeedfeedfeedfeed' .
'feedfeedfeedfeedfeedfeedfeedfeedfeedfeed',
'direct replace, many times');
# Add a test prefix to error and warning messages.
$s->set_msg_prefix('test ');
$output = q{};
$SIG{__WARN__} = sub { $output .= $_[0] };
is($s->substvars('This is a string with unknown variable ${blubb}'),
'This is a string with unknown variable ',
'substvars missing');
delete $SIG{__WARN__};
is($output,
'Dpkg_Substvars.t: warning: test substitution variable ${blubb} used, but is not defined' . "\n",
'missing variables warning');
# Recursive replace: Simple.
$s->set('rvar', 'recursive ${var1}');
is($s->substvars('This is a string with ${rvar}'),
'This is a string with recursive New value',
'recursive replace simple');
# Recursive replace: Constructed variables.
$s->set('partref', 'recursive result');
$s->set('part1', '${pa');
$s->set('part2', 'rtr');
$s->set('part3', 'ef}');
is($s->substvars('Constructed ${part1}${part2}${part3} replace'),
'Constructed recursive result replace',
'recursive constructed variable');
# Recursive replace: Cycle.
$s->set('ref0', '${ref1}');
$s->set('ref1', '${ref2}');
$s->set('ref2', '${ref0}');
eval {
$s->substvars('Cycle reference ${ref0}');
1;
};
$output = $@ // q{};
is($output,
'Dpkg_Substvars.t: error: test too many ${ref0} substitutions ' .
"(recursive?) in 'Cycle reference \${ref1}'\n",
'recursive cyclic expansion is limited');
# Recursive replace: Billion laughs.
$s->set('ex0', ':)');
$s->set('ex1', '${ex0}${ex0}${ex0}${ex0}${ex0}${ex0}${ex0}${ex0}${ex0}${ex0}');
$s->set('ex2', '${ex1}${ex1}${ex1}${ex1}${ex1}${ex1}${ex1}${ex1}${ex1}${ex1}');
$s->set('ex3', '${ex2}${ex2}${ex2}${ex2}${ex2}${ex2}${ex2}${ex2}${ex2}${ex2}');
$s->set('ex4', '${ex3}${ex3}${ex3}${ex3}${ex3}${ex3}${ex3}${ex3}${ex3}${ex3}');
$s->set('ex5', '${ex4}${ex4}${ex4}${ex4}${ex4}${ex4}${ex4}${ex4}${ex4}${ex4}');
$s->set('ex6', '${ex5}${ex5}${ex5}${ex5}${ex5}${ex5}${ex5}${ex5}${ex5}${ex5}');
$s->set('ex7', '${ex6}${ex6}${ex6}${ex6}${ex6}${ex6}${ex6}${ex6}${ex6}${ex6}');
$s->set('ex8', '${ex7}${ex7}${ex7}${ex7}${ex7}${ex7}${ex7}${ex7}${ex7}${ex7}');
$s->set('ex9', '${ex8}${ex8}${ex8}${ex8}${ex8}${ex8}${ex8}${ex8}${ex8}${ex8}');
eval {
$s->substvars('Billion laughs ${ex9}');
1;
};
$output = $@ // q{};
is($output,
'Dpkg_Substvars.t: error: test too many ${ex1} substitutions ' .
"(recursive?) in 'Billion laughs :):):):):):):):):):):):):):)" .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):):):):):)' .
':):):):):):):):):):):):):):):):):):):):):):):):):):)' .
'${ex0}${ex0}${ex0}${ex0}${ex0}${ex0}${ex0}${ex0}${ex0}${ex0}' .
'${ex2}${ex2}${ex2}${ex2}${ex2}' .
'${ex3}${ex3}${ex3}${ex3}${ex3}${ex3}${ex3}${ex3}${ex3}' .
'${ex4}${ex4}${ex4}${ex4}${ex4}${ex4}${ex4}${ex4}${ex4}' .
'${ex5}${ex5}${ex5}${ex5}${ex5}${ex5}${ex5}${ex5}${ex5}' .
'${ex6}${ex6}${ex6}${ex6}${ex6}${ex6}${ex6}${ex6}${ex6}' .
'${ex7}${ex7}${ex7}${ex7}${ex7}${ex7}${ex7}${ex7}${ex7}' .
'${ex8}${ex8}${ex8}${ex8}${ex8}${ex8}${ex8}${ex8}${ex8}' .
"'\n",
'recursive or exponential expansion is limited');
# Strange input.
is($s->substvars('Nothing to $ ${substitute here}, is it ${}?, it ${is'),
'Nothing to $ ${substitute here}, is it ${}?, it ${is',
'substvars strange');
# Warnings about unused variables.
$output = '';
$SIG{__WARN__} = sub { $output .= $_[0] };
$s->warn_about_unused();
delete $SIG{__WARN__};
is($output,
'Dpkg_Substvars.t: warning: test substitution variable ${var2} unused, but is defined' . "\n",
'unused variables warnings');
# Disable warnings for a certain variable.
$s->set_as_used('var_used', 'used');
$s->mark_as_used('var2');
$output = '';
$SIG{__WARN__} = sub { $output .= $_[0] };
$s->warn_about_unused();
delete $SIG{__WARN__};
is($output, '', 'disabled unused variables warnings');
$s->delete('var_used');
# Required variables.
my $sr;
$expected = <<'VARS';
required-var!=Required value
VARS
$sr = Dpkg::Substvars->new("$datadir/substvars-req");
is($sr->output(), $expected, 'Required variable preserved');
is($sr->substvars('This is a string with missing the required variable'),
'This is a string with missing the required variable',
'substvars required substitution missing');
eval {
$sr->warn_about_unused();
1;
};
$output = $@ // q{};
is($output,
'Dpkg_Substvars.t: error: required substitution variable ${required-var} not used' . "\n",
'substvars required substitution not used');
is($sr->substvars('This is a string with a required variable ${required-var}'),
'This is a string with a required variable Required value',
'substvars required substitution present');
# Implicit variables.
my $si;
$expected = <<'VARS';
namespace-1:Build-Profiles$=profile-a
namespace-2:Build-Profiles$=profile-b
namespace-a:Depends$=implicit-a
namespace-b:Depends$=implicit-b
namespace-y:Unknown-Separator$=value-1
namespace-z:Unknown-Separator$=value-2
VARS
$si = Dpkg::Substvars->new("$datadir/substvars-impl");
is($si->output(), $expected, 'Implicit variable preserved');
is($si->substvars('This is a string with a required variable ${namespace-a:Depends}'),
'This is a string with a required variable implicit-a',
'substvars implicit substitution present');
my $ctrl;
$ctrl = Dpkg::Control->new(type => CTRL_DEB);
$ctrl->{Recommends} = 'pkg-a, pkg-b';
$ctrl->apply_substvars($si);
$expected = <<'CTRL';
Depends: implicit-a, implicit-b
Recommends: pkg-a, pkg-b
Build-Profiles: profile-a profile-b
Unknown-Separator: value-1 value-2
CTRL
is($ctrl->output(), $expected, 'Implicit variables injected in control file');
$ctrl = Dpkg::Control->new(type => CTRL_DEB);
$ctrl->{Depends} = 'explicit-a, explicit-b';
$ctrl->{Recommends} = 'pkg-a, pkg-b';
$ctrl->apply_substvars($si);
$expected = <<'CTRL';
Depends: explicit-a, explicit-b
Recommends: pkg-a, pkg-b
Build-Profiles: profile-a profile-b
Unknown-Separator: value-1 value-2
CTRL
is($ctrl->output(), $expected,
'Implicit variables shadowed by explicit field in control file');
# Variable filters.
my $sf;
$expected = <<'VARS';
name3=Yet another value
name4=Name value
otherprefix:var7=Quux
var1=Some value
var2=Some other value
VARS
$sf = Dpkg::Substvars->new("$datadir/substvars2");
$sf->filter(
remove => sub { $_[0] =~ m/^prefix:/ },
);
is($sf->output(), $expected, 'Filter remove variables');
$expected = <<'VARS';
otherprefix:var7=Quux
prefix:var5=Foo
var1=Some value
var2=Some other value
VARS
$sf = Dpkg::Substvars->new("$datadir/substvars2");
$sf->filter(
keep => sub { $_[0] =~ m/var/ },
);
is($sf->output(), $expected, 'Filter keep variables');
$expected = <<'VARS';
prefix:name6=Bar
VARS
$sf = Dpkg::Substvars->new("$datadir/substvars2");
$sf->filter(
remove => sub { $_[0] =~ m/var/ },
keep => sub { $_[0] =~ m/^prefix:/ },
);
is($sf->output(), $expected, 'Filter keep and remove variables');
|