3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
13 # You should have received a copy of the GNU General Public License
14 # along with this program. If not, see <https://www.gnu.org/licenses/>.
20 use Test::Dpkg qw(:needs :paths);
23 test_needs_module('IO::String');
27 use_ok('Dpkg::Control');
28 use_ok('Dpkg::Control::Info');
31 my $datadir = test_get_data_path('t/Dpkg_Control');
36 my $dsc = Dpkg::Control->new(type => CTRL_PKG_SRC);
45 my $c = Dpkg::Control::Info->new("$datadir/control-1");
47 my $io = IO::String->new();
49 my $value = ${$io->string_ref()};
50 my $expected = 'Source: mysource
52 My-Field-One: myvalue1
53 My-Field-Two: myvalue2
74 Description: short one
78 is($value, $expected, "Dump of $datadir/control-1");
80 my $src = $c->get_source();
81 is($src, $c->[0], 'array representation of Dpkg::Control::Info 1/2');
82 is($src->{'numeric-field'}, '0', 'Numeric 0 value parsed correctly');
83 is($src->{'my-field-one'}, 'myvalue1', 'Access field through badly capitalized field name');
84 is($src->{'long-field'},
91 line 4', 'Get multi-line field');
92 is($src->{'Empty-field'}, '', 'Get empty field');
94 my $pkg = $c->get_pkg_by_idx(1);
95 is($pkg, $c->[1], 'array representation of Dpkg::Control::Info 2/2');
96 is($pkg->{package}, 'mypackage1', 'Name of first package');
98 $pkg = $c->get_pkg_by_name('mypackage3');
99 is($pkg->{package}, 'mypackage3', 'Name of third package');
100 is($pkg->{Depends}, 'hello', 'Name of third package');
102 $pkg = $c->get_pkg_by_idx(2);
103 $io = IO::String->new();
106 is(${$io->string_ref()},
110 ', "Dump of second binary package of $datadir/control-1");
112 # Check OpenPGP armored signatures in source control files
116 $dsc = parse_dsc("$datadir/bogus-unsigned.dsc");
117 is($dsc, undef, 'Unsigned .dsc w/ OpenPGP armor');
119 $dsc = parse_dsc("$datadir/bogus-armor-no-sig.dsc");
120 is($dsc, undef, 'Signed .dsc w/ OpenPGP armor missing signature');
122 $dsc = parse_dsc("$datadir/bogus-armor-trail.dsc");
123 is($dsc, undef, 'Signed .dsc w/ bogus OpenPGP armor trailer');
125 $dsc = parse_dsc("$datadir/bogus-armor-inline.dsc");
126 is($dsc, undef, 'Signed .dsc w/ bogus OpenPGP inline armor');
128 $dsc = parse_dsc("$datadir/bogus-armor-formfeed.dsc");
129 is($dsc, undef, 'Signed .dsc w/ bogus OpenPGP armor line');
131 $dsc = parse_dsc("$datadir/bogus-armor-double.dsc");
132 ok(defined $dsc, 'Signed .dsc w/ two OpenPGP armor signatures');
133 is($dsc->{Source}, 'pass', 'Signed spaced .dsc package name');
135 $dsc = parse_dsc("$datadir/bogus-armor-spaces.dsc");
136 ok(defined $dsc, 'Signed .dsc w/ spaced OpenPGP armor');
137 is($dsc->{Source}, 'pass', 'Signed spaced .dsc package name');
139 $dsc = parse_dsc("$datadir/bogus-armor-nested.dsc");
140 ok(defined $dsc, 'Signed .dsc w/ nested OpenPGP armor');
141 is($dsc->{Source}, 'pass', 'Signed nested .dsc package name');