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
|
use warnings;
use strict;
use IPC::System::Simple qw(system);
use Test::More tests => 2;
use Gtk3 -init; # Could just call init separately
BEGIN {
use Gscan2pdf::Document;
}
#########################
Gscan2pdf::Translation::set_domain('gscan2pdf');
use Log::Log4perl qw(:easy);
Log::Log4perl->easy_init($FATAL);
my $logger = Log::Log4perl::get_logger;
Gscan2pdf::Document->setup($logger);
# Create test image
system(qw(convert rose: test.pnm));
my $slist = Gscan2pdf::Document->new;
# dir for temporary files
my $dir = File::Temp->newdir;
$slist->set_dir($dir);
$slist->import_files(
paths => ['test.pnm'],
finished_callback => sub {
# inject error before save_pdf
chmod 0500, $dir; # no write access
$slist->save_pdf(
path => 'test.pdf',
list_of_pages => [ $slist->{data}[0][2]{uuid} ],
error_callback => sub {
pass('caught error injected before save_pdf');
chmod 0700, $dir; # allow write access
$slist->save_pdf(
path => 'test.pdf',
list_of_pages => [ $slist->{data}[0][2]{uuid} ],
queued_callback => sub {
# inject error during save_pdf
chmod 0500, $dir; # no write access
},
error_callback => sub {
pass('save_pdf caught error injected in queue');
chmod 0700, $dir; # allow write access
Gtk3->main_quit;
}
);
}
);
}
);
Gtk3->main;
#########################
unlink 'test.pnm', 'test.pdf';
Gscan2pdf::Document->quit();
|