aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/collate.test
blob: fb296e29b332cda59440b07c05327a40e8dfc8a5 (plain) (blame)
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
#!/usr/bin/env perl
require 5.008;
use warnings;
use strict;

unshift(@INC, '.');
require qpdf_test_helpers;

chdir("qpdf") or die "chdir testdir failed: $!\n";

require TestDriver;

cleanup();

my $td = new TestDriver('collate');

my @collate = (
    ["", "three-files", "collate-odd",
     "collate-odd.pdf 1-5 minimal.pdf collate-even.pdf 7-1"],
    ["1", "three-files", "collate-odd",
     "collate-odd.pdf 1-5 minimal.pdf collate-even.pdf 7-1"],
    ["2", "three-files-2", "collate-odd",
     "collate-odd.pdf 1-5 minimal.pdf collate-even.pdf 7-1"],
    ["2,3,4", "three-files-2,3,4", "collate-odd",
     "collate-odd.pdf 1-5 minimal.pdf collate-even.pdf 7-1"],
    );
my $n_tests = 2 * scalar(@collate);

foreach my $d (@collate)
{
    my ($n, $description, $first, $args) = @$d;
    my $collate = '--collate';
    if ($n ne "")
    {
        $collate .= "=$n";
    }
    $td->runtest("collate pages: $description",
                 {$td->COMMAND =>
                      "qpdf --qdf --static-id $collate $first.pdf" .
                      " --pages $args -- a.pdf"},
                 {$td->STRING => "", $td->EXIT_STATUS => 0});
    $td->runtest("check output",
                 {$td->FILE => "a.pdf"},
                 {$td->FILE => "$description-collate-out.pdf"});
}

cleanup();
$td->report($n_tests);