mirror of
https://github.com/devilbox/docker-php-fpm.git
synced 2025-12-17 22:41:15 +00:00
Add module integration tests
This commit is contained in:
67
tests/mods/modules/gd/gd-jpeg.php
Normal file
67
tests/mods/modules/gd/gd-jpeg.php
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
/**
|
||||
* This page should print 'OK' if everything works,
|
||||
* 'FAIL' or nothing if an error occured.
|
||||
*/
|
||||
ini_set('display_startup_errors', 1);
|
||||
ini_set('display_errors', 1);
|
||||
error_reporting(-1);
|
||||
|
||||
// Create a blank image and add some text
|
||||
if ( ($im = imagecreatetruecolor(640, 480)) === FALSE ) {
|
||||
echo 'FAIL: imagecreatetruecolor()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// First we create our stamp image manually from GD
|
||||
if ( ($stamp = imagecreatetruecolor(100, 70)) === FALSE ) {
|
||||
echo 'FAIL: imagecreatetruecolor()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (!imagefilledrectangle($stamp, 0, 0, 99, 69, 0x0000FF)) {
|
||||
echo 'FAIL: imagefilledrectangle()';
|
||||
exit(1);
|
||||
}
|
||||
if (!imagefilledrectangle($stamp, 9, 9, 90, 60, 0xFFFFFF)) {
|
||||
echo 'FAIL: imagefilledrectangle()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (!imagestring($stamp, 5, 20, 20, 'libGD', 0x0000FF)) {
|
||||
echo 'FAIL: imagestring()';
|
||||
exit(1);
|
||||
}
|
||||
if (!imagestring($stamp, 3, 20, 40, '(c) 2007-9', 0x0000FF)) {
|
||||
echo 'FAIL: imagestring()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
||||
// Set the margins for the stamp and get the height/width of the stamp image
|
||||
$marge_right = 10;
|
||||
$marge_bottom = 10;
|
||||
$sx = imagesx($stamp);
|
||||
$sy = imagesy($stamp);
|
||||
|
||||
// Merge the stamp onto our photo with an opacity of 50%
|
||||
if (!imagecopymerge($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp), 50)) {
|
||||
echo 'FAIL: imagecopymerge()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// Save the image to file and free memory
|
||||
if (!imagejpeg($im, 'image.jpg')) {
|
||||
echo 'FAIL: imagejpeg()';
|
||||
exit(1);
|
||||
}
|
||||
if (!imagedestroy($im)) {
|
||||
echo 'FAIL: imagedestroy()';
|
||||
unlink('image.jpg');
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// Remove image after test
|
||||
unlink('image.jpg');
|
||||
|
||||
echo 'OK';
|
||||
67
tests/mods/modules/gd/gd-png.php
Normal file
67
tests/mods/modules/gd/gd-png.php
Normal file
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
/**
|
||||
* This page should print 'OK' if everything works,
|
||||
* 'FAIL' or nothing if an error occured.
|
||||
*/
|
||||
ini_set('display_startup_errors', 1);
|
||||
ini_set('display_errors', 1);
|
||||
error_reporting(-1);
|
||||
|
||||
// Create a blank image and add some text
|
||||
if ( ($im = imagecreatetruecolor(640, 480)) === FALSE ) {
|
||||
echo 'FAIL: imagecreatetruecolor()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// First we create our stamp image manually from GD
|
||||
if ( ($stamp = imagecreatetruecolor(100, 70)) === FALSE ) {
|
||||
echo 'FAIL: imagecreatetruecolor()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (!imagefilledrectangle($stamp, 0, 0, 99, 69, 0x0000FF)) {
|
||||
echo 'FAIL: imagefilledrectangle()';
|
||||
exit(1);
|
||||
}
|
||||
if (!imagefilledrectangle($stamp, 9, 9, 90, 60, 0xFFFFFF)) {
|
||||
echo 'FAIL: imagefilledrectangle()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (!imagestring($stamp, 5, 20, 20, 'libGD', 0x0000FF)) {
|
||||
echo 'FAIL: imagestring()';
|
||||
exit(1);
|
||||
}
|
||||
if (!imagestring($stamp, 3, 20, 40, '(c) 2007-9', 0x0000FF)) {
|
||||
echo 'FAIL: imagestring()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
|
||||
// Set the margins for the stamp and get the height/width of the stamp image
|
||||
$marge_right = 10;
|
||||
$marge_bottom = 10;
|
||||
$sx = imagesx($stamp);
|
||||
$sy = imagesy($stamp);
|
||||
|
||||
// Merge the stamp onto our photo with an opacity of 50%
|
||||
if (!imagecopymerge($im, $stamp, imagesx($im) - $sx - $marge_right, imagesy($im) - $sy - $marge_bottom, 0, 0, imagesx($stamp), imagesy($stamp), 50)) {
|
||||
echo 'FAIL: imagecopymerge()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// Save the image to file and free memory
|
||||
if (!imagepng($im, 'image.png')) {
|
||||
echo 'FAIL: imagepng()';
|
||||
exit(1);
|
||||
}
|
||||
if (!imagedestroy($im)) {
|
||||
echo 'FAIL: imagedestroy()';
|
||||
unlink('image.png');
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// Remove image after test
|
||||
unlink('image.png');
|
||||
|
||||
echo 'OK';
|
||||
50
tests/mods/modules/gd/gd-webp.php
Normal file
50
tests/mods/modules/gd/gd-webp.php
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/**
|
||||
* This page should print 'OK' if everything works,
|
||||
* 'FAIL' or nothing if an error occured.
|
||||
*/
|
||||
ini_set('display_startup_errors', 1);
|
||||
ini_set('display_errors', 1);
|
||||
error_reporting(-1);
|
||||
|
||||
|
||||
// Only available since 5.4.0
|
||||
if (version_compare(PHP_VERSION, '5.4.0', '<')) {
|
||||
echo 'OK';
|
||||
exit(0);
|
||||
}
|
||||
|
||||
|
||||
// Create a blank image and add some text
|
||||
if ( ($im = imagecreatetruecolor(120, 20)) === FALSE ) {
|
||||
echo 'FAIL: imagecreatetruecolor()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if ( ($text_color = imagecolorallocate($im, 233, 14, 91)) === FALSE ) {
|
||||
echo 'FAIL: imagecolorallocate()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
if (!imagestring($im, 1, 5, 5, 'WebP with PHP', $text_color)) {
|
||||
echo 'FAIL: imagestring()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// Save the image
|
||||
if (!imagewebp($im, 'image.webp')) {
|
||||
echo 'FAIL: imagewebp()';
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// Free up memory
|
||||
if (!imagedestroy($im)) {
|
||||
echo 'FAIL: imagedestroy()';
|
||||
unlink('image.webp');
|
||||
exit(1);
|
||||
}
|
||||
|
||||
// Remove image after test
|
||||
unlink('image.webp');
|
||||
|
||||
echo 'OK';
|
||||
Reference in New Issue
Block a user