/usr/share/perl5/Test/Image/GD.pm is in libtest-image-gd-perl 0.03-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | package Test::Image::GD;
use strict;
use warnings;
use Test::Builder ();
use Scalar::Util 'blessed';
use GD ':cmp';
require Exporter;
our $VERSION = '0.03';
our @ISA = ('Exporter');
our @EXPORT = qw(
cmp_image
size_ok
height_ok
width_ok
);
my $Test = Test::Builder->new;
sub cmp_image ($$;$) {
my ($got, $expected, $message) = @_;
_coerce_image($got);
_coerce_image($expected);
if ($got->compare($expected) & GD_CMP_IMAGE) {
$Test->ok(0, $message);
}
else {
$Test->ok(1, $message);
}
}
sub size_ok ($$;$) {
my ($got, $expected, $message) = @_;
_coerce_image($got);
(ref($expected) && ref($expected) eq 'ARRAY')
|| die "expected must be an ARRAY ref";
if ($got->width == $expected->[0] &&
$got->height == $expected->[1] ){
$Test->ok(1, $message);
}
else {
$Test->diag("... (image => (width, height))\n" .
" w: (" . $got->width . " => " . $expected->[0] . ")\n" .
" h: (" . $got->height . " => " . $expected->[1] . ")");
$Test->ok(0, $message);
}
}
sub height_ok ($$;$) {
my ($got, $expected, $message) = @_;
_coerce_image($got);
if ($got->height == $expected){
$Test->ok(1, $message);
}
else {
$Test->diag("... (image => (height))\n" .
" h: (" . $got->height . " => " . $expected . ")");
$Test->ok(0, $message);
}
}
sub width_ok ($$;$) {
my ($got, $expected, $message) = @_;
_coerce_image($got);
if ($got->width == $expected){
$Test->ok(1, $message);
}
else {
$Test->diag("... (image => (width))\n" .
" w: (" . $got->width . " => " . $expected . ")");
$Test->ok(0, $message);
}
}
## Utility Methods
sub _coerce_image {
unless (blessed($_[0]) && $_[0]->isa('GD::Image')) {
$_[0] = GD::Image->new($_[0])
|| die "Could not create GD::Image instance with : " . $_[0];
}
}
1;
__END__
=head1 NAME
Test::Image::GD - A module for testing images using GD
=head1 SYNOPSIS
use Test::More plan => 1;
use Test::Image::GD;
cmp_image('test.gif', 'control.gif', '... these images should match');
# or
my $test = GD::Image->new('test.gif');
my $control = GD::Image->new('control.gif');
cmp_image($test, $control, '... these images should match');
# some other test functions ...
size_ok('camel.gif', [ 100, 350 ], '... the image is 100 x 350");
height_ok('test.gif', 200, '... the image has a height of 200');
width_ok('test.gif', 200, '... the image has a width of 200');
=head1 DESCRIPTION
This module is meant to be used for testing custom graphics, it attempts
to "visually" compare the images, this means it ignores invisible differences
like color palettes and metadata. It also provides some extra functions to
check the size of the image.
=head1 FUNCTIONS
=over 4
=item B<cmp_image ($got, $expected, $message)>
This function will tell you whether the two images will look different,
ignoring differences in the order of colors in the color palette and
other invisible changes.
Both C<$got> and C<$expected> can be either instances of C<GD::Image> or
either a file handle or a file path (both are valid parameters to the
C<GD::Image> constructor).
=item B<size_ok ($got, [ $width, $height ], ?$message)>
This function will check if an image is a certain size.
As with the C<cmp_image> function, the C<$got> parameter can be either an
instance of C<GD::Image> or a file handle or a file path (all are valid
parameters to the C<GD::Image> constructor).
=item B<height_ok ($got, $height, ?$message)>
This function will check if an image is a certain height.
As with the C<cmp_image> function, the C<$got> parameter can be either an
instance of C<GD::Image> or a file handle or a file path (all are valid
parameters to the C<GD::Image> constructor).
=item B<width_ok ($got, $width, ?$message)>
This function will check if an image is a certain width.
As with the C<cmp_image> function, the C<$got> parameter can be either an
instance of C<GD::Image> or a file handle or a file path (all are valid
parameters to the C<GD::Image> constructor).
=back
=head1 TO DO
=over 4
=item Add more functions
This module currently serves a very basic need of mine, however, I am sure as
I start writing more tests against images I will find a need for other testing
functions. Any suggestions are welcome.
=back
=head1 BUGS
None that I am aware of. Of course, if you find a bug, let me know, and I
will be sure to fix it.
=head1 CODE COVERAGE
I use B<Devel::Cover> to test the code coverage of my tests, below is the
B<Devel::Cover> report on this module test suite.
---------------------------- ------ ------ ------ ------ ------ ------ ------
File stmt bran cond sub pod time total
---------------------------- ------ ------ ------ ------ ------ ------ ------
Test/Image/GD.pm 100.0 91.7 63.6 100.0 100.0 100.0 93.7
---------------------------- ------ ------ ------ ------ ------ ------ ------
Total 100.0 91.7 63.6 100.0 100.0 100.0 93.7
---------------------------- ------ ------ ------ ------ ------ ------ ------
=head1 SEE ALSO
The C<compare> function of C<GD::Image> class, that is how this C<cmp_image> is
implemented.
=head1 AUTHOR
Stevan Little, E<lt>stevan@iinteractive.comE<gt>
=head1 COPYRIGHT AND LICENSE
Copyright 2005 by Infinity Interactive, Inc.
L<http://www.iinteractive.com>
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=cut
|