70 lines
2.2 KiB
Perl
70 lines
2.2 KiB
Perl
# Before "make install", this script should be runnable with "make test".
|
|
# After "make install" it should work as "perl t/Jpeg2000.t".
|
|
|
|
BEGIN {
|
|
$| = 1; print "1..4\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::Jpeg2000;
|
|
$loaded = 1;
|
|
print "ok 1\n";
|
|
|
|
my $testname = 'JXL';
|
|
my $testnum = 1;
|
|
|
|
# test 2: Extract information from JXL.jxl
|
|
{
|
|
++$testnum;
|
|
my $exifTool = Image::ExifTool->new;
|
|
my $info = $exifTool->ImageInfo('t/images/JXL.jxl', '-system:all');
|
|
notOK() unless check($exifTool, $info, $testname, $testnum);
|
|
print "ok $testnum\n";
|
|
}
|
|
|
|
# test 3: Write some new information
|
|
{
|
|
++$testnum;
|
|
my $exifTool = Image::ExifTool->new;
|
|
my $testfile = "t/${testname}_${testnum}_failed.jxl";
|
|
unlink $testfile;
|
|
my @writeInfo = (
|
|
[ 'XMP:Subject' => 'test subject' ],
|
|
[ 'EXIF:Artist' => 'test artist' ],
|
|
);
|
|
$exifTool->Options(IgnoreMinorErrors => 1);
|
|
$exifTool->SetNewValue(@$_) foreach @writeInfo;
|
|
my $ok = writeInfo($exifTool, 't/images/JXL.jxl', $testfile, undef, 1);
|
|
my $info = $exifTool->ImageInfo($testfile, '-system:all');
|
|
if (check($exifTool, $info, $testname, $testnum) and $ok) {
|
|
unlink $testfile;
|
|
} else {
|
|
notOK();
|
|
}
|
|
print "ok $testnum\n";
|
|
}
|
|
|
|
# test 4: Read compressed metadata and ImageSize from partial JXL codestream
|
|
{
|
|
++$testnum;
|
|
my $skip = '';
|
|
# (this test fails for IO::Uncompress::Brotli 0.002001, and
|
|
# I don't know about 0.003, so require 0.004 or higher to be safe)
|
|
if (eval { require IO::Uncompress::Brotli and $IO::Uncompress::Brotli::VERSION >= 0.004 }) {
|
|
my $exifTool = Image::ExifTool->new;
|
|
my $info = $exifTool->ImageInfo('t/images/JXL2.jxl', 'imagesize', 'exif:all', 'xmp:all');
|
|
unless (check($exifTool, $info, $testname, $testnum)) {
|
|
notOK();
|
|
warn "\n (IO::Uncompress::Brotli is version $IO::Uncompress::Brotli::VERSION)\n";
|
|
}
|
|
} else {
|
|
$skip = ' # skip Requires IO::Uncompress::Brotli version 0.004 or later';
|
|
}
|
|
print "ok $testnum$skip\n";
|
|
}
|
|
|
|
done(); # end
|