File: /www/wwwroot/biographybirthday.com/wp-content/plugins/ewww-image-optimizer/tests/test-agr.php
<?php
/**
* Class EWWWIO_AGR_Tests
*
* @link https://ewww.io
* @package Ewww_Image_Optimizer
*/
/**
* AGR (animated GIF resizing) test cases.
*/
class EWWWIO_AGR_Tests extends WP_UnitTestCase {
/**
* The location of the test GIF image.
*
* @var string $test_gif
*/
public static $test_gif = '';
/**
* Downloads test images.
*/
public static function setUpBeforeClass() {
self::$test_gif = download_url( 'https://s3-us-west-2.amazonaws.com/exactlywww/rain.gif' );
ewww_image_optimizer_set_defaults();
update_option( 'ewww_image_optimizer_gif_level', 10 );
ewww_image_optimizer_install_tools();
}
/**
* Initializes the plugin and installs the ewwwio_images table.
*/
function setUp() {
parent::setUp();
remove_filter( 'query', array( $this, '_create_temporary_tables' ) );
ewww_image_optimizer_install_table();
add_filter( 'query', array( $this, '_create_temporary_tables' ) );
}
/**
* Test that GD is active and Imagick is not -- otherwise our tests are bogus.
*/
function test_gd_active() {
$this->assertNotEmpty( ewww_image_optimizer_gd_support() );
$this->assertFalse( ewww_image_optimizer_imagick_support() );
}
/**
* Test local (gifsicle) AGR.
*/
function test_local_agr() {
$upload_gif = self::$test_gif . '.gif';
copy( self::$test_gif, $upload_gif );
$id = $this->factory->attachment->create_upload_object( $upload_gif );
$meta = wp_get_attachment_metadata( $id );
list( $file_path, $upload_path ) = ewww_image_optimizer_attachment_path( $meta, $id );
$thumb_path = trailingslashit( dirname( $file_path ) ) . wp_basename( $meta['sizes']['thumbnail']['file'] );
$this->assertTrue( ewww_image_optimizer_is_animated( $thumb_path ) );
unlink( $upload_gif );
}
/**
* Test API-based AGR.
*/
function test_api_agr() {
$upload_gif = self::$test_gif . '.gif';
copy( self::$test_gif, $upload_gif );
update_option( 'ewww_image_optimizer_cloud_key', 'abc123' );
update_site_option( 'ewww_image_optimizer_cloud_key', 'abc123' );
$id = $this->factory->attachment->create_upload_object( $upload_gif );
$meta = wp_get_attachment_metadata( $id );
list( $file_path, $upload_path ) = ewww_image_optimizer_attachment_path( $meta, $id );
$thumb_path = trailingslashit( dirname( $file_path ) ) . wp_basename( $meta['sizes']['thumbnail']['file'] );
$this->assertTrue( ewww_image_optimizer_is_animated( $thumb_path ) );
update_option( 'ewww_image_optimizer_cloud_key', '' );
update_site_option( 'ewww_image_optimizer_cloud_key', '' );
unlink( $upload_gif );
}
/**
* Cleans up ewwwio_images table.
*/
function tearDown() {
global $wpdb;
remove_filter( 'query', array( $this, '_drop_temporary_tables' ) );
$wpdb->query( "DROP TABLE IF EXISTS $wpdb->ewwwio_images" );
add_filter( 'query', array( $this, '_drop_temporary_tables' ) );
delete_option( 'ewww_image_optimizer_version' );
delete_option( 'ewww_image_optimizer_cloud_key' );
delete_site_option( 'ewww_image_optimizer_version' );
delete_site_option( 'ewww_image_optimizer_cloud_key' );
parent::tearDown();
}
/**
* Cleans up the temp images.
*/
public static function tearDownAfterClass() {
if ( ewwwio_is_file( self::$test_gif ) ) {
unlink( self::$test_gif );
}
ewww_image_optimizer_remove_binaries();
}
}