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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
use warnings;
use strict;
use IPC::System::Simple qw(system capture);
use Test::More tests => 3;
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 images
system(qw(touch test.ppm));
system(qw(convert rose: test.tif));
my $old = capture( qw(identify -format), '%m %G %g %z-bit %r', '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.ppm'],
error_callback => sub {
my ( $uuid, $process, $text ) = @_;
is(
$text,
'test.ppm is not a recognised image type',
'message opening empty image'
);
$slist->import_files(
paths => ['test.png'],
error_callback => sub {
my ( $uuid, $process, $text ) = @_;
is(
$text,
'File test.png not found',
'message opening non-existent image'
);
$slist->import_files(
paths => ['test.tif'],
finished_callback => sub {
is(
capture(
qw(identify -format),
'%m %G %g %z-bit %r',
$slist->{data}[0][2]{filename}
),
$old,
'TIFF imported correctly after previous errors'
);
Gtk3->main_quit;
},
error_callback => sub {
fail('error callback triggered after previous errors');
Gtk3->main_quit;
}
);
},
finished_callback => sub {
Gtk3->main_quit;
}
);
},
finished_callback => sub {
Gtk3->main_quit;
}
);
Gtk3->main;
#########################
unlink 'test.ppm', 'test.tif', <$dir/*>;
rmdir $dir;
Gscan2pdf::Document->quit();
|