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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
|
# Before "make install", this script should be runnable with "make test".
# After "make install" it should work as "perl t/ExifTool.t".
BEGIN {
$| = 1; print "1..31\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';
$loaded = 1;
print "ok 1\n";
my $testname = 'ExifTool';
my $testnum = 1;
# test 2: extract information from JPG file using name
{
++$testnum;
my $exifTool = new Image::ExifTool;
my $info = $exifTool->ImageInfo('t/images/ExifTool.jpg');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 3: TIFF file using file reference and ExifTool object with options
{
++$testnum;
my $exifTool = new Image::ExifTool;
$exifTool->Options(Duplicates => 1, Unknown => 1);
open(TESTFILE, 't/images/ExifTool.tif');
my $info = $exifTool->ImageInfo(\*TESTFILE);
close(TESTFILE);
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 4: test the Group option to extract EXIF info only
{
++$testnum;
my $info = ImageInfo('t/images/Canon.jpg', {Group0 => 'EXIF'});
print 'not ' unless check($info, $testname, $testnum);
print "ok $testnum\n";
}
# test 5: extract specified tags only
{
++$testnum;
my $exifTool = new Image::ExifTool;
# don't test DateFormat because strftime output varies with locale
# $exifTool->Options(DateFormat => '%H:%M:%S %a. %b. %e, %Y');
my @tags = ('CreateDate', 'DateTimeOriginal', 'ModifyDate', 'Orientation#', '?Resolution');
my $info = $exifTool->ImageInfo('t/images/Canon.jpg', \@tags);
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 6: test the 5 different ways to exclude tags...
{
++$testnum;
my $exifTool = new Image::ExifTool;
$exifTool->Options(Exclude => 'ImageWidth');
my @tagList = ( '-ImageHeight', '-Make' );
my $info = $exifTool->ImageInfo('t/images/Canon.jpg', '-FileSize', '-*resolution',
\@tagList, {Group0 => '-MakerNotes'});
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# tests 7/8: test ExtractInfo(), GetInfo(), CombineInfo()
{
++$testnum;
my $exifTool = new Image::ExifTool;
$exifTool->Options(Duplicates => 0); # don't allow duplicates
$exifTool->ExtractInfo('t/images/Canon.jpg');
my $info1 = $exifTool->GetInfo({Group0 => 'MakerNotes'});
my $info2 = $exifTool->GetInfo({Group0 => 'EXIF'});
my $info = $exifTool->CombineInfo($info1, $info2);
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
# combine information in different order
++$testnum;
$info = $exifTool->CombineInfo($info2, $info1);
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 9: test group options across different families
{
++$testnum;
my $exifTool = new Image::ExifTool;
my $info = $exifTool->ImageInfo('t/images/Canon.jpg',
{ Group1 => 'Canon', Group2 => '-Camera' });
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# tests 10/11: test ExtractInfo() and GetInfo()
# (uses output from test 5 for comparison)
{
++$testnum;
my $exifTool = new Image::ExifTool;
# don't test DateFormat because strftime output is system dependent
# $exifTool->Options(DateFormat => '%H:%M:%S %a. %b. %e, %Y');
$exifTool->ExtractInfo('t/images/Canon.jpg');
my @tags = ('createdate', 'datetimeoriginal', 'modifydate', 'orientation#', '?resolution');
my $info = $exifTool->GetInfo(\@tags);
my $good = 1;
my @expectedTags = ('CreateDate', 'DateTimeOriginal', 'ModifyDate', 'Orientation',
'XResolution', 'YResolution');
for (my $i=0; $i<scalar(@tags); ++$i) {
$tags[$i] = $expectedTags[$i] or $good = 0;
}
print 'not ' unless $good;
print "ok $testnum\n";
++$testnum;
print 'not ' unless check($exifTool, $info, $testname, $testnum, 5);
print "ok $testnum\n";
}
# tests 12/13: check precidence of tags extracted from groups
# (Note: these tests should produce the same output as 7/8,
# so the .out files from tests 7/8 are used)
{
++$testnum;
my $exifTool = new Image::ExifTool;
$exifTool->Options(Duplicates => 0); # don't allow duplicates
my $info = $exifTool->ImageInfo('t/images/Canon.jpg',{Group0=>['MakerNotes','EXIF']});
print 'not ' unless check($exifTool, $info, $testname, $testnum, 7);
print "ok $testnum\n";
# combine information in different order
++$testnum;
$info = $exifTool->ImageInfo('t/images/Canon.jpg',{Group0=>['EXIF','MakerNotes']});
print 'not ' unless check($exifTool, $info, $testname, $testnum, 8);
print "ok $testnum\n";
}
# tests 14/15/16: test GetGroups()
{
++$testnum;
my $exifTool = new Image::ExifTool;
$exifTool->ExtractInfo('t/images/Canon.jpg');
my @groups = $exifTool->GetGroups(2);
my $not;
foreach ('Camera','ExifTool','Image','Time') {
$_ eq shift @groups or $not = 1;
}
@groups and $not = 1;
print 'not ' if $not;
print "ok $testnum\n";
++$testnum;
my $info = $exifTool->GetInfo({Group0 => 'EXIF'});
@groups = $exifTool->GetGroups($info,0);
print 'not ' unless @groups==1 and $groups[0] eq 'EXIF';
print "ok $testnum\n";
++$testnum;
my $testfile = "t/ExifTool_$testnum";
open(TESTFILE,">$testfile.failed");
my $oldSep = $/;
$/ = "\x0a"; # set input line separator
$exifTool->ExtractInfo('t/images/Canon.jpg');
my $family = '1:2';
@groups = $exifTool->GetGroups($family);
my $group;
foreach $group (@groups) {
next if $group eq 'ExifTool';
print TESTFILE "---- $group ----\n";
my $info = $exifTool->GetInfo({"Group$family" => $group});
foreach (sort $exifTool->GetTagList($info)) {
print TESTFILE "$_ : $$info{$_}\n";
}
}
$/ = $oldSep; # restore input line separator
close(TESTFILE);
print 'not ' unless testCompare("$testfile.out","$testfile.failed",$testnum);
print "ok $testnum\n";
}
# test 17: Test verbose output
{
++$testnum;
print 'not ' unless testVerbose($testname, $testnum, 't/images/Canon.jpg', 3);
print "ok $testnum\n";
}
# tests 18/19: Test Group# option with multiple groups and no duplicates
{
++$testnum;
my $exifTool = new Image::ExifTool;
$exifTool->Options(Duplicates => 0); # don't allow duplicates
my $info = $exifTool->ImageInfo('t/images/Canon.jpg',
{ Group0 => ['MakerNotes','EXIF'] });
print 'not ' unless check($exifTool, $info, $testname, $testnum, 7);
print "ok $testnum\n";
++$testnum;
$info = $exifTool->ImageInfo('t/images/Canon.jpg',
{ Group0 => ['EXIF','MakerNotes'] });
print 'not ' unless check($exifTool, $info, $testname, $testnum, 8);
print "ok $testnum\n";
}
# test 20: Test extracting a single, non-priority tag with duplicates set to 0
{
++$testnum;
my $exifTool = new Image::ExifTool;
$exifTool->Options(Duplicates => 0);
my $info = $exifTool->ImageInfo('t/images/Canon.jpg', 'EXIF:WhiteBalance');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 21: Test extracting ICC_Profile as a block
{
++$testnum;
my $exifTool = new Image::ExifTool;
my $info = $exifTool->ImageInfo('t/images/ExifTool.tif', 'ICC_Profile');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 22: Test InsertTagValues
{
++$testnum;
my $exifTool = new Image::ExifTool;
my @foundTags;
$exifTool->ImageInfo('t/images/ExifTool.jpg', \@foundTags);
my $str = $exifTool->InsertTagValues(\@foundTags, '${ifd0:model;tr/i/_/} - $1ciff:3main:model');
my $testfile = "t/ExifTool_$testnum";
open(TESTFILE,">$testfile.failed");
my $oldSep = $/;
$/ = "\x0a"; # set input line separator
print TESTFILE $str, "\n";
$/ = $oldSep; # restore input line separator
close(TESTFILE);
print 'not ' unless testCompare("$testfile.out","$testfile.failed",$testnum);
print "ok $testnum\n";
}
# test 23: Test the multi-group feature in a tag name
{
++$testnum;
my $exifTool = new Image::ExifTool;
my $info = $exifTool->ImageInfo('t/images/ExifTool.jpg', 'main:Author:IPTC3:all');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 24: Test a shortcut with multiple group names and a ValueConv suffix
{
++$testnum;
my $exifTool = new Image::ExifTool;
my $info = $exifTool->ImageInfo('t/images/Canon.jpg', 'exififd:camera:common#');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 25: Test GlobalTimeShift option
{
++$testnum;
if (eval { require Time::Local }) {
my $exifTool = new Image::ExifTool;
$exifTool->Options(GlobalTimeShift => '-0:1:0 0:0:0');
# Note: can't extract system times because this could result in a different
# calculated global time offset (since I am shifting by 1 month)
my $info = $exifTool->ImageInfo('t/images/ExifTool.jpg', 'time:all', '-system:all');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
} else {
print "ok $testnum # skip Requires Time::Local\n";
}
}
# test 26: Test wildcards using '#' suffix with duplicate PrintConv tags and exclusions
{
++$testnum;
my $exifTool = new Image::ExifTool;
# (hack to avoid sorting in TestLib.pm because order of duplicate tags would be indeterminate)
$$exifTool{NO_SORT} = 1;
my $info = $exifTool->ImageInfo('t/images/Canon.jpg', 'encodingprocess', 'E*#', 'exposureMode',
'-ExifVersion');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 27: Test ListItem option
{
++$testnum;
my $exifTool = new Image::ExifTool;
$exifTool->Options(ListItem => -3);
my $info = $exifTool->ImageInfo('t/images/ExifTool.jpg', 'Subject', 'SupplementalCategories');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 28: Test FastScan = 3
{
++$testnum;
my $exifTool = new Image::ExifTool;
$exifTool->Options(FastScan => 3);
my $info = $exifTool->ImageInfo('t/images/ExifTool.jpg');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 29: Test Filter
{
++$testnum;
my $exifTool = new Image::ExifTool;
$exifTool->Options(Filter => 'tr/ /_/;tr/0-9/#/');
my $info = $exifTool->ImageInfo('t/images/ExifTool.jpg', '-ExifToolVersion');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# test 30: Calculate JPEGDigest and JPEGQualityEstimate
{
++$testnum;
my $skip = '';
if (eval 'require Digest::MD5') {
my $exifTool = new Image::ExifTool;
my $info = $exifTool->ImageInfo('t/images/Writer.jpg', 'JPEGDigest', 'JPEGQualityEstimate');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
} else {
$skip = ' # skip Requires Digest::MD5';
}
print "ok $testnum$skip\n";
}
# test 31: Test Validate feature
{
++$testnum;
my $exifTool = new Image::ExifTool;
my $info = $exifTool->ImageInfo('t/images/CanonRaw.cr2', 'Validate', 'Warning', 'Error');
print 'not ' unless check($exifTool, $info, $testname, $testnum);
print "ok $testnum\n";
}
# end
|