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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
|
# Before "make install", this script should be runnable with "make test".
# After "make install" it should work as "perl t/ZIP.t".
BEGIN {
$| = 1; print "1..6\n"; $Image::ExifTool::configFile = '';
require './t/TestLib.pm'; t::TestLib->import();
}
END {print "not ok 1\n" unless $loaded;}
# test 1: Load the module(s)
use Image::ExifTool 'ImageInfo';
use Image::ExifTool::FLIF;
$loaded = 1;
print "ok 1\n";
my $testname = 'FLIF';
my $testnum = 1;
my @checkTags = qw(Artist Creator XResolution ProfileCMMType XMP);
# test 2: Extract information from FLIF.flif
{
++$testnum;
my $skip = '';
if (eval { require IO::Uncompress::RawInflate }) {
my $exifTool = new Image::ExifTool;
my $info = $exifTool->ImageInfo('t/images/FLIF.flif');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
} else {
$skip = ' # skip Requires IO::Uncompress::RawInflate';
}
print "ok $testnum$skip\n";
}
# test 3: Edit FLIF information
{
++$testnum;
my $skip = '';
if (eval { require IO::Uncompress::RawInflate and require IO::Compress::RawDeflate }) {
my $exifTool = new Image::ExifTool;
$exifTool->SetNewValuesFromFile('t/images/XMP.jpg','ICC_Profile');
$exifTool->SetNewValue('EXIF:XResolution' => 234);
$exifTool->SetNewValue('XMP:Creator' => 'just me');
my $testfile = "t/${testname}_${testnum}_failed.flif";
unlink $testfile;
$exifTool->WriteInfo('t/images/FLIF.flif', $testfile);
my $info = $exifTool->ImageInfo($testfile, @checkTags);
if (check($exifTool, $info, $testname, $testnum)) {
unlink $testfile;
} else {
print 'not ';
}
} else {
$skip = ' # skip Requires IO::Compress::RawDeflate';
}
print "ok $testnum$skip\n";
}
# test 4: Delete FLIF information
my $testfile;
{
++$testnum;
my $skip = '';
if (eval { require IO::Uncompress::RawInflate and require IO::Compress::RawDeflate }) {
my $exifTool = new Image::ExifTool;
$exifTool->SetNewValue(ICC_Profile => undef, Protected => 1);
$exifTool->SetNewValue(EXIF => undef, Protected => 1);
$exifTool->SetNewValue('XMP:all' => undef);
$testfile = "t/${testname}_${testnum}_failed.flif";
unlink $testfile;
$exifTool->WriteInfo('t/images/FLIF.flif', $testfile);
my $info = $exifTool->ImageInfo($testfile);
unless (check($exifTool, $info, $testname, $testnum)) {
print 'not ';
undef $testfile;
}
} else {
$skip = ' # skip Requires IO::Compress::RawDeflate';
}
print "ok $testnum$skip\n";
}
# test 5: Add back FLIF information
{
++$testnum;
my $skip = '';
if (defined $testfile) {
my $exifTool = new Image::ExifTool;
$exifTool->SetNewValuesFromFile('t/images/Photoshop.psd','ICC_Profile');
$exifTool->SetNewValue('EXIF:XResolution' => 123);
$exifTool->SetNewValue('XMP:Creator' => 'me again');
my $testfile2 = "t/${testname}_${testnum}_failed.flif";
unlink $testfile2;
$exifTool->WriteInfo($testfile, $testfile2);
my $info = $exifTool->ImageInfo($testfile2, @checkTags);
if (check($exifTool, $info, $testname, $testnum)) {
unlink $testfile;
unlink $testfile2;
} else {
print 'not ';
}
} else {
$skip = ' # skip Requires test 4 pass';
}
print "ok $testnum$skip\n";
}
# test 6: Delete all then add back in one step
{
++$testnum;
my $skip = '';
if (eval { require IO::Uncompress::RawInflate and require IO::Compress::RawDeflate }) {
my $exifTool = new Image::ExifTool;
$exifTool->SetNewValue(all => undef);
$exifTool->SetNewValuesFromFile('t/images/Photoshop.psd','ICC_Profile');
$exifTool->SetNewValue('EXIF:XResolution' => 456);
$exifTool->SetNewValue('XMP:Creator' => 'me too');
$testfile = "t/${testname}_${testnum}_failed.flif";
unlink $testfile;
$exifTool->WriteInfo('t/images/FLIF.flif', $testfile);
my $info = $exifTool->ImageInfo($testfile, @checkTags);
if (check($exifTool, $info, $testname, $testnum)) {
unlink $testfile;
} else {
print 'not ';
}
} else {
$skip = ' # skip Requires IO::Compress::RawDeflate';
}
print "ok $testnum$skip\n";
}
# end
|