aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/pages_tree.test
blob: 53cc37b285ae85a0d3c10c860648f7d49c30911b (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/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('pages_tree');

my $n_tests = 11;

$td->runtest("linearize duplicated pages",
             {$td->COMMAND =>
                  "qpdf --static-id --linearize" .
                  " page_api_2.pdf a.pdf"},
             {$td->STRING => "", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("compare files",
             {$td->FILE => "a.pdf"},
             {$td->FILE => "linearize-duplicate-page.pdf"});
$td->runtest("extract duplicated pages",
             {$td->COMMAND =>
                  "qpdf --static-id page_api_2.pdf" .
                  " --pages . -- a.pdf"},
             {$td->STRING => "", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("compare files",
             {$td->FILE => "a.pdf"},
             {$td->FILE => "extract-duplicate-page.pdf"});
$td->runtest("direct pages",
             {$td->COMMAND =>
                  "qpdf --static-id direct-pages.pdf --pages . -- a.pdf"},
             {$td->STRING => "", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("check output",
             {$td->FILE => "a.pdf"},
             {$td->FILE => "direct-pages-fixed.pdf"});
$td->runtest("show direct pages",
             {$td->COMMAND =>
                  "qpdf --show-pages direct-pages.pdf"},
             {$td->FILE => "direct-pages.out", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);

# Json mode for direct and duplicated pages illustrates that the
# "objects" section the original objects before correction when
# "pages" is not output but after correct when it is.# numbers.
foreach my $f (qw(page_api_2 direct-pages))
{
    $td->runtest("json for $f (objects only)",
                 {$td->COMMAND =>
                      "qpdf --json=latest $f.pdf" .
                      " --json-key=qpdf"},
                 {$td->FILE => "$f-json-objects.out", $td->EXIT_STATUS => 0},
                 $td->NORMALIZE_NEWLINES);
    $td->runtest("json for $f (with pages)",
                 {$td->COMMAND =>
                      "qpdf --json=latest $f.pdf" .
                      " --json-key=qpdf --json-key=pages"},
                 {$td->FILE => "$f-json-pages.out", $td->EXIT_STATUS => 0},
                 $td->NORMALIZE_NEWLINES);
}

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