aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/coalesce_contents.test
diff options
context:
space:
mode:
Diffstat (limited to 'qpdf/qtest/coalesce_contents.test')
-rw-r--r--qpdf/qtest/coalesce_contents.test53
1 files changed, 53 insertions, 0 deletions
diff --git a/qpdf/qtest/coalesce_contents.test b/qpdf/qtest/coalesce_contents.test
new file mode 100644
index 00000000..c98e6d28
--- /dev/null
+++ b/qpdf/qtest/coalesce_contents.test
@@ -0,0 +1,53 @@
+#!/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('coalesce_contents');
+
+my $n_tests = 8;
+
+$td->runtest("qdf with normalize warnings",
+ {$td->COMMAND =>
+ "qpdf --qdf --static-id split-tokens.pdf a.pdf"},
+ {$td->FILE => "normalize-warnings.out", $td->EXIT_STATUS => 3},
+ $td->NORMALIZE_NEWLINES);
+$td->runtest("check output",
+ {$td->FILE => "a.pdf"},
+ {$td->FILE => "split-tokens.qdf"});
+$td->runtest("coalesce to qdf",
+ {$td->COMMAND =>
+ "qpdf --qdf --static-id coalesce.pdf a.pdf"},
+ {$td->STRING => "", $td->EXIT_STATUS => 0},
+ $td->NORMALIZE_NEWLINES);
+$td->runtest("check output",
+ {$td->FILE => "a.pdf"},
+ {$td->FILE => "coalesce.qdf"});
+$td->runtest("coalesce contents with qdf",
+ {$td->COMMAND =>
+ "qpdf --qdf --static-id" .
+ " --coalesce-contents coalesce.pdf a.pdf"},
+ {$td->STRING => "", $td->EXIT_STATUS => 0});
+$td->runtest("check output",
+ {$td->FILE => "a.pdf"},
+ {$td->FILE => "coalesce-out.qdf"});
+$td->runtest("coalesce contents without qdf",
+ {$td->COMMAND =>
+ "qpdf --static-id" .
+ " --coalesce-contents coalesce.pdf a.pdf"},
+ {$td->STRING => "", $td->EXIT_STATUS => 0});
+$td->runtest("check output",
+ {$td->FILE => "a.pdf"},
+ {$td->FILE => "coalesce-out.pdf"});
+
+cleanup();
+$td->report($n_tests);