aboutsummaryrefslogtreecommitdiffstats
path: root/examples/qtest/pdf-split-pages.test
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2014-06-07 19:04:30 +0200
committerJay Berkenbilt <ejb@ql.org>2014-06-07 22:40:38 +0200
commit0b2e9cb16886d422e6645a5d65c74a340ae6deff (patch)
tree6942cf401c7c4a3b2746c5c463a6291976d51217 /examples/qtest/pdf-split-pages.test
parent9f8aba1db7f101e424cbc2c742abe92868cc4bff (diff)
downloadqpdf-0b2e9cb16886d422e6645a5d65c74a340ae6deff.tar.zst
Example: fast split into single pages
This is faster than using qpdf --pages to do it.
Diffstat (limited to 'examples/qtest/pdf-split-pages.test')
-rw-r--r--examples/qtest/pdf-split-pages.test33
1 files changed, 33 insertions, 0 deletions
diff --git a/examples/qtest/pdf-split-pages.test b/examples/qtest/pdf-split-pages.test
new file mode 100644
index 00000000..ce271b35
--- /dev/null
+++ b/examples/qtest/pdf-split-pages.test
@@ -0,0 +1,33 @@
+#!/usr/bin/env perl
+require 5.008;
+use warnings;
+use strict;
+
+chdir("pdf-split-pages");
+
+require TestDriver;
+
+my $td = new TestDriver('pdf-split-pages');
+
+cleanup();
+
+$td->runtest("split",
+ {$td->COMMAND => "pdf-split-pages ' --static-id' in.pdf out"},
+ {$td->STRING => "", $td->EXIT_STATUS => 0});
+
+$td->runtest("check page 1",
+ {$td->FILE => "out1.pdf"},
+ {$td->FILE => "exp1.pdf"});
+
+$td->runtest("check page 2",
+ {$td->FILE => "out2.pdf"},
+ {$td->FILE => "exp2.pdf"});
+
+cleanup();
+
+$td->report(3);
+
+sub cleanup
+{
+ unlink (<out?.pdf>);
+}