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
|
use warnings;
use strict;
use File::Basename; # Split filename into dir, file, ext
use IPC::System::Simple qw(system);
use Test::More tests => 1;
BEGIN {
use Gscan2pdf::Document;
use Gtk3 -init; # Could just call init separately
}
#########################
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.tif));
system(qw(tiff2pdf -o test.pdf test.tif));
my $slist = Gscan2pdf::Document->new;
# dir for temporary files
my $dir = File::Temp->newdir;
$slist->set_dir($dir);
$slist->import_files(
paths => ['test.pdf'],
queued_callback => sub {
# inject error during import_file
chmod 0500, $dir; # no write access
},
error_callback => sub {
pass('import_file caught error injected in queue');
chmod 0700, $dir; # allow write access
Gtk3->main_quit;
}
);
Gtk3->main;
#########################
unlink 'test.pdf', 'test.tif', <$dir/*>;
rmdir $dir;
Gscan2pdf::Document->quit();
|