forked from WordPress/wordpress-develop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresizeGd.php
More file actions
42 lines (34 loc) · 911 Bytes
/
resizeGd.php
File metadata and controls
42 lines (34 loc) · 911 Bytes
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
<?php
/**
* @group image
* @group media
* @group upload
* @group resize
*
* @requires function imagejpeg
*/
require_once __DIR__ . '/resize.php';
class Test_Image_Resize_GD extends WP_Tests_Image_Resize_UnitTestCase {
/**
* Use the GD image editor engine
*
* @var string
*/
public $editor_engine = 'WP_Image_Editor_GD';
public function setUp() {
require_once ABSPATH . WPINC . '/class-wp-image-editor.php';
require_once ABSPATH . WPINC . '/class-wp-image-editor-gd.php';
// This needs to come after the mock image editor class is loaded.
parent::setUp();
}
/**
* Try resizing a php file (bad image)
*
* @ticket 6821
*/
public function test_resize_bad_image() {
$image = $this->resize_helper( DIR_TESTDATA . '/export/crazy-cdata.xml', 25, 25 );
$this->assertInstanceOf( 'WP_Error', $image );
$this->assertSame( 'invalid_image', $image->get_error_code() );
}
}