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
|
#!/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 strict;
use warnings;
use Test::More;
use Test::Dpkg qw(:needs test_neutralize_checksums);
use File::Spec::Functions qw(rel2abs);
use File::Compare;
use File::Path qw(make_path);
use File::Copy;
use Dpkg::IPC;
use Dpkg::Build::Types;
use Dpkg::Substvars;
test_needs_command('fakeroot');
plan tests => 12;
my $srcdir = rel2abs($ENV{srcdir} || '.');
my $datadir = "$srcdir/t/dpkg_buildpackage";
my $tmpdir = 't.tmp/dpkg_buildpackage';
$ENV{$_} = rel2abs($ENV{$_}) foreach qw(DPKG_DATADIR DPKG_ORIGINS_DIR);
# Any parallelization from the parent should be ignored, we are testing
# the makefiles serially anyway.
delete $ENV{MAKEFLAGS};
# Delete variables that can affect the tests.
delete $ENV{SOURCE_DATE_EPOCH};
# Delete other variables that can affect the tests.
delete $ENV{$_} foreach grep { m/^DEB_/ } keys %ENV;
make_path($tmpdir);
chdir $tmpdir;
my $tmpl_format = <<'TMPL_FORMAT';
3.0 (native)
TMPL_FORMAT
my $tmpl_changelog = <<'TMPL_CHANGELOG';
${source-name} (${source-version}) ${suite}; urgency=${urgency}
* Entry. Closes: #12345
-- ${maintainer} Thu, 30 Jun 2016 20:15:12 +0200
TMPL_CHANGELOG
my $tmpl_control = <<'TMPL_CONTROL';
Source: ${source-name}
Section: ${source-section}
Priority: ${source-priority}
Maintainer: ${maintainer}
Package: test-binary-all
Architecture: all
Description: architecture independent binary package
Package: test-binary-any
Architecture: any
Description: architecture dependent binary package
TMPL_CONTROL
my $tmpl_rules = <<'TMPL_RULES';
#!/usr/bin/make -f
DI := debian/${binary-name-all}
DA := debian/${binary-name-any}
clean:
rm -f debian/files
rm -rf $(DI) $(DA)
build-indep:
build-arch:
build: build-indep build-arch
binary-indep: build-indep
rm -rf $(DI)
mkdir -p $(DI)/DEBIAN
dpkg-gencontrol -P$(DI) -p${binary-name-all}
dpkg-deb --build $(DI) ..
binary-arch: build-arch
rm -rf $(DA)
mkdir -p $(DA)/DEBIAN
dpkg-gencontrol -P$(DA) -p${binary-name-any}
dpkg-deb --build $(DA) ..
binary: binary-indep binary-arch
.PHONY: clean build-indep build-arch build binary-indexp binary-arch binary
TMPL_RULES
my %default_substvars = (
'source-name' => 'test-source',
'source-version' => 0,
'source-section' => 'test',
'source-priority' => 'optional',
'binary-name-all' => 'test-binary-all',
'binary-name-any' => 'test-binary-any',
'suite' => 'unstable',
'urgency' => 'low',
'maintainer' => 'Dpkg Developers <debian-dpkg@lists.debian.org>',
);
sub gen_from_tmpl
{
my ($pathname, $tmpl, $substvars) = @_;
open my $fh, '>', $pathname or die;
print { $fh } $substvars->substvars($tmpl);
close $fh or die;
}
sub gen_source
{
my (%options) = @_;
my $substvars = Dpkg::Substvars->new();
foreach my $var (%default_substvars) {
my $value = $options{$var} // $default_substvars{$var};
$substvars->set_as_auto($var, $value);
}
my $source = $substvars->get('source-name');
my $version = $substvars->get('source-version');
my $basename = "$source\_$version";
my $dirname = $basename =~ tr/_/-/r;
make_path("$dirname/debian/source");
gen_from_tmpl("$dirname/debian/source/format", $tmpl_format, $substvars);
gen_from_tmpl("$dirname/debian/changelog", $tmpl_changelog, $substvars);
gen_from_tmpl("$dirname/debian/control", $tmpl_control, $substvars);
gen_from_tmpl("$dirname/debian/rules", $tmpl_rules, $substvars);
return $basename;
}
sub test_diff
{
my $filename = shift;
my $expected_file = "$datadir/$filename";
my $generated_file = $filename;
test_neutralize_checksums($generated_file);
my $res = compare($expected_file, $generated_file);
if ($res) {
system "diff -u $expected_file $generated_file >&2";
}
ok($res == 0, "generated file matches expected one ($expected_file)");
}
sub test_build
{
my ($basename, $type) = @_;
my $dirname = $basename =~ tr/_/-/r;
set_build_type($type, 'buildtype', nocheck => 1);
my $typename = get_build_options_from_type();
my $stderr;
chdir $dirname;
spawn(exec => [ $ENV{PERL}, "$srcdir/dpkg-buildpackage.pl",
'--host-arch=amd64',
'--unsigned-source', '--unsigned-changes',
'--unsigned-buildinfo',
"--build=$typename", '--check-command=' ],
error_to_string => \$stderr,
wait_child => 1, nocheck => 1);
chdir '..';
ok($? == 0, "dpkg-buildpackage --build=$typename succeeded");
diag($stderr) unless $? == 0;
if (build_has_all(BUILD_ARCH_DEP)) {
# Rename the file to preserve on consecutive invocations.
move("$basename\_amd64.changes", "$basename\_$typename.changes");
}
if (build_has_all(BUILD_SOURCE)) {
test_diff("$basename.dsc");
}
test_diff("$basename\_$typename.changes");
}
my $basename = gen_source();
test_build($basename, BUILD_SOURCE);
test_build($basename, BUILD_ARCH_INDEP);
test_build($basename, BUILD_ARCH_DEP);
test_build($basename, BUILD_BINARY);
test_build($basename, BUILD_FULL);
1;
|