File: JXL.t

package info (click to toggle)
libimage-exiftool-perl 13.25%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 32,600 kB
  • sloc: perl: 297,808; xml: 123; makefile: 22; sh: 15
file content (69 lines) | stat: -rw-r--r-- 2,255 bytes parent folder | download
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
# 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