<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[Tests][1188] trunk/tests/image/editor_imagick.php: Tests for WP_Image_Editor_Imagick - skips tests if Imagick is not installed</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg > ul, #logmsg > ol { margin-left: 0; margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://core.trac.wordpress.org/changeset/1188/tests">1188</a></dd>
<dt>Author</dt> <dd>joehoyle</dd>
<dt>Date</dt> <dd>2013-01-14 21:52:24 +0000 (Mon, 14 Jan 2013)</dd>
</dl>

<h3>Log Message</h3>
<pre>Tests for WP_Image_Editor_Imagick - skips tests if Imagick is not installed</pre>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunktestsimageeditor_imagickphp">trunk/tests/image/editor_imagick.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunktestsimageeditor_imagickphp"></a>
<div class="addfile"><h4>Added: trunk/tests/image/editor_imagick.php (0 => 1188)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/tests/image/editor_imagick.php                                (rev 0)
+++ trunk/tests/image/editor_imagick.php        2013-01-14 21:52:24 UTC (rev 1188)
</span><span class="lines">@@ -0,0 +1,163 @@
</span><ins>+&lt;?php
+
+/**
+ * Test the WP_Image_Editor_Imagick class
+ * @group image
+ * @group media
+ * @group wp-image-editor-imagick
+ */
+
+class Tests_Image_Editor_Imagick extends WP_Image_UnitTestCase {
+
+        public $editor_engine = 'WP_Image_Editor_Imagick';
+
+        public function setup() {
+                require_once( ABSPATH . WPINC . '/class-wp-image-editor.php' );
+                require_once( ABSPATH . WPINC . '/class-wp-image-editor-imagick.php' );
+
+                $editor = new WP_Image_Editor_Imagick( null );
+
+                if ( ! $editor-&gt;test() )
+                        $this-&gt;markTestSkipped( 'Image Magick not available' );
+
+                parent::setUp();
+        }
+
+        /**
+         * Check support for Image Magick compatible mime types.
+         * 
+         */
+        public function test_supports_mime_type() {
+
+                $imagick_image_editor = new WP_Image_Editor_Imagick( null );
+
+                $this-&gt;assertTrue( $imagick_image_editor-&gt;supports_mime_type( 'image/jpeg' ), 'Does not support image/jpeg' );
+                $this-&gt;assertTrue( $imagick_image_editor-&gt;supports_mime_type( 'image/png' ), 'Does not support image/png' );
+                $this-&gt;assertTrue( $imagick_image_editor-&gt;supports_mime_type( 'image/gif' ), 'Does not support image/gif' );
+        }
+
+        /**
+         * Test resizing an image, not using crop
+         * 
+         */
+        public function test_resize() {
+
+                $file = DIR_TESTDATA . '/images/gradient-square.jpg';
+
+                $imagick_image_editor = new WP_Image_Editor_Imagick( $file );
+                $imagick_image_editor-&gt;load();
+
+                $imagick_image_editor-&gt;resize( 100, 50 );
+
+                $this-&gt;assertEquals( array( 'width' =&gt; 50, 'height' =&gt; 50 ), $imagick_image_editor-&gt;get_size() );
+        }
+
+        /**
+         * Test resizing an image including cropping
+         * 
+         */
+        public function test_resize_and_crop() {
+
+                $file = DIR_TESTDATA . '/images/gradient-square.jpg';
+
+                $imagick_image_editor = new WP_Image_Editor_Imagick( $file );
+                $imagick_image_editor-&gt;load();
+
+                $imagick_image_editor-&gt;resize( 100, 50, true );
+
+                $this-&gt;assertEquals( array( 'width' =&gt; 100, 'height' =&gt; 50 ), $imagick_image_editor-&gt;get_size() );
+        }
+
+        /**
+         * Test cropping an image
+         */
+        public function test_crop() {
+
+                $file = DIR_TESTDATA . '/images/gradient-square.jpg';
+
+                $imagick_image_editor = new WP_Image_Editor_Imagick( $file );
+                $imagick_image_editor-&gt;load();
+
+                $imagick_image_editor-&gt;crop( 0, 0, 50, 50 );
+
+                $this-&gt;assertEquals( array( 'width' =&gt; 50, 'height' =&gt; 50 ), $imagick_image_editor-&gt;get_size() );
+
+        }
+
+        /**
+         * Test rotating an image 180 deg
+         */
+        public function test_rotate() {
+
+                $file = DIR_TESTDATA . '/images/gradient-square.jpg';
+
+                $imagick_image_editor = new WP_Image_Editor_Imagick( $file );
+                $imagick_image_editor-&gt;load();
+
+                $property = new ReflectionProperty( $imagick_image_editor, 'image' );
+                $property-&gt;setAccessible( true );
+
+                $color_top_left = $property-&gt;getValue( $imagick_image_editor )-&gt;getImagePixelColor( 1, 1 )-&gt;getColor();
+
+                $imagick_image_editor-&gt;rotate( 180 );
+
+                $this-&gt;assertEquals( $color_top_left, $property-&gt;getValue( $imagick_image_editor )-&gt;getImagePixelColor( 99, 99 )-&gt;getColor() );
+        }
+
+        /**
+         * Test flipping an image
+         */
+        public function test_flip() {
+
+                $file = DIR_TESTDATA . '/images/gradient-square.jpg';
+
+                $imagick_image_editor = new WP_Image_Editor_Imagick( $file );
+                $imagick_image_editor-&gt;load();
+
+                $property = new ReflectionProperty( $imagick_image_editor, 'image' );
+                $property-&gt;setAccessible( true );
+
+                $color_top_left = $property-&gt;getValue( $imagick_image_editor )-&gt;getImagePixelColor( 1, 1 )-&gt;getColor();
+
+                $imagick_image_editor-&gt;flip( true, false );
+
+                $this-&gt;assertEquals( $color_top_left, $property-&gt;getValue( $imagick_image_editor )-&gt;getImagePixelColor( 0, 99 )-&gt;getColor() );
+        }
+
+        /**
+         * Test the image created with WP_Image_Edior_Imagick preserves alpha when resizing
+         * 
+         */
+        public function test_image_preserves_alpha_on_resize() {
+
+                $file = DIR_TESTDATA . '/images/transparent.png';
+
+                $editor = wp_get_image_editor( $file );
+                $editor-&gt;load();
+                $editor-&gt;resize(5,5);
+                $save_to_file = tempnam( get_temp_dir(), '' ) . '.png';
+                
+                $editor-&gt;save( $save_to_file );
+
+                $this-&gt;assertImageAlphaAtPoint( $save_to_file, array( 0,0 ), 127 );
+
+        }
+        
+        /**
+         * Test the image created with WP_Image_Edior_Imagick preserves alpha with no resizing etc
+         * 
+         */
+        public function test_image_preserves_alpha() {
+
+                $file = DIR_TESTDATA . '/images/transparent.png';
+
+                $editor = wp_get_image_editor( $file );
+                $editor-&gt;load();
+
+                $save_to_file = tempnam( get_temp_dir(), '' ) . '.png';
+                
+                $editor-&gt;save( $save_to_file );
+
+                $this-&gt;assertImageAlphaAtPoint( $save_to_file, array( 0,0 ), 127 );
+        }
+}
</ins></span></pre>
</div>
</div>

</body>
</html>