aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/stream-replacements.test
blob: 547e928dbb384a961330c753fa305e0d3c995bf5 (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
#!/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('stream-replacements');

my $n_tests = 10;

$td->runtest("replace stream data",
             {$td->COMMAND => "test_driver 7 qstream.pdf"},
             {$td->STRING => "test 7 done\n", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("check output",
             {$td->COMMAND => "qpdf-test-compare a.pdf replaced-stream-data.pdf"},
             {$td->FILE => "replaced-stream-data.pdf", $td->EXIT_STATUS => 0});
$td->runtest("replace stream data compressed",
             {$td->COMMAND => "test_driver 8 qstream.pdf"},
             {$td->FILE => "test8.out", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("check output",
             {$td->FILE => "a.pdf"},
             {$td->FILE => "replaced-stream-data-flate.pdf"});
$td->runtest("new streams",
             {$td->COMMAND => "test_driver 9 minimal.pdf"},
             {$td->FILE => "test9.out", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("new stream",
             {$td->FILE => "a.pdf"},
             {$td->FILE => "new-streams.pdf"});
$td->runtest("add page contents",
             {$td->COMMAND => "test_driver 10 minimal.pdf"},
             {$td->STRING => "test 10 done\n", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("new stream",
             {$td->FILE => "a.pdf"},
             {$td->FILE => "add-contents.pdf"});
$td->runtest("functional replace stream data",
             {$td->COMMAND => "test_driver 78 minimal.pdf"},
             {$td->FILE => "test78.out", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("check output",
             {$td->FILE => "a.pdf"},
             {$td->FILE => "test78.pdf"});

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