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);
25 use_ok
('Dpkg::Control');
26 use_ok
('Dpkg::Control::Info');
29 my $datadir = test_get_data_path
();
32 my ($type, $path) = @_;
34 my $ctrl = Dpkg
::Control
->new(type
=> $type);
46 return parse_ctrl
(CTRL_PKG_SRC
, $path);
49 my $c = Dpkg
::Control
::Info
->new("$datadir/control-1");
54 open $io, '>', \
$io_data or die "canno open io string\n";;
57 my $expected = 'Source: mysource
66 My-Field-One: myvalue1
67 My-Field-Two: myvalue2
81 Description: short one
85 is
($io_data, $expected, "Dump of $datadir/control-1");
87 my $src = $c->get_source();
88 is
($src, $c->[0], 'array representation of Dpkg::Control::Info 1/2');
89 is
($src->{'numeric-field'}, '0', 'Numeric 0 value parsed correctly');
90 is
($src->{'my-field-one'}, 'myvalue1', 'Access field through badly capitalized field name');
91 is
($src->{'long-field'},
98 line 4', 'Get multi-line field');
99 is
($src->{'Empty-field'}, '', 'Get empty field');
101 my $pkg = $c->get_pkg_by_idx(1);
102 is
($pkg, $c->[1], 'array representation of Dpkg::Control::Info 2/2');
103 is
($pkg->{package}, 'mypackage1', 'Name of first package');
105 $pkg = $c->get_pkg_by_name('mypackage3');
106 is
($pkg->{package}, 'mypackage3', 'Name of third package');
107 is
($pkg->{Depends
}, 'hello', 'Name of third package');
109 $pkg = $c->get_pkg_by_idx(2);
110 open $io, '>', \
$io_data or die "canno open io string\n";;
117 ', "Dump of second binary package of $datadir/control-1");
119 # Check OpenPGP armored signatures in source control files
123 $dsc = parse_dsc
("$datadir/bogus-unsigned.dsc");
124 is
($dsc, undef, 'Unsigned .dsc w/ OpenPGP armor');
126 $dsc = parse_dsc
("$datadir/bogus-armor-no-sig.dsc");
127 is
($dsc, undef, 'Signed .dsc w/ OpenPGP armor missing signature');
129 $dsc = parse_dsc
("$datadir/bogus-armor-trail.dsc");
130 is
($dsc, undef, 'Signed .dsc w/ bogus OpenPGP armor trailer');
132 $dsc = parse_dsc
("$datadir/bogus-armor-inline.dsc");
133 is
($dsc, undef, 'Signed .dsc w/ bogus OpenPGP inline armor');
135 $dsc = parse_dsc
("$datadir/bogus-armor-formfeed.dsc");
136 is
($dsc, undef, 'Signed .dsc w/ bogus OpenPGP armor line');
138 $dsc = parse_dsc
("$datadir/bogus-armor-double.dsc");
139 ok
(defined $dsc, 'Signed .dsc w/ two OpenPGP armor signatures');
140 is
($dsc->{Source
}, 'pass', 'Signed spaced .dsc package name');
142 $dsc = parse_dsc
("$datadir/bogus-armor-spaces.dsc");
143 ok
(defined $dsc, 'Signed .dsc w/ spaced OpenPGP armor');
144 is
($dsc->{Source
}, 'pass', 'Signed spaced .dsc package name');
146 $dsc = parse_dsc
("$datadir/bogus-armor-nested.dsc");
147 ok
(defined $dsc, 'Signed .dsc w/ nested OpenPGP armor');
148 is
($dsc->{Source
}, 'pass', 'Signed nested .dsc package name');