aboutsummaryrefslogtreecommitdiffstats
path: root/qpdf/qtest/object-handle-api.test
blob: 0d233bcccc72242c107b9e4217aca9d8f4d00031 (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
#!/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('object-handle-api');

$td->runtest("dictionary keys",
             {$td->COMMAND => "test_driver 87 - -"},
             {$td->STRING => "test 87 done\n", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("fluent interfaces",
             {$td->COMMAND => "test_driver 88 minimal.pdf -"},
             {$td->FILE => "test88.out", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);
$td->runtest("equality",
             {$td->COMMAND => "test_driver 93 minimal.pdf -"},
             {$td->STRING => "test 93 done\n", $td->EXIT_STATUS => 0},
             $td->NORMALIZE_NEWLINES);

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