<!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][1260] trunk/tests/media.php: Add initial Unit Tests for images, galleries.</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/1260/tests">1260</a></dd>
<dt>Author</dt> <dd>wonderboymusic</dd>
<dt>Date</dt> <dd>2013-04-19 18:32:45 +0000 (Fri, 19 Apr 2013)</dd>
</dl>

<h3>Log Message</h3>
<pre>Add initial Unit Tests for images, galleries. See <a href="http://core.trac.wordpress.org/ticket/22960">#22960</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunktestsmediaphp">trunk/tests/media.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunktestsmediaphp"></a>
<div class="modfile"><h4>Modified: trunk/tests/media.php (1259 => 1260)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/tests/media.php        2013-04-14 03:46:04 UTC (rev 1259)
+++ trunk/tests/media.php        2013-04-19 18:32:45 UTC (rev 1260)
</span><span class="lines">@@ -15,6 +15,10 @@
</span><span class="cx">     $this-&gt;img_content = &lt;&lt;&lt;CAP
</span><span class="cx"> &lt;img src=&quot;pic.jpg&quot; id='anId' alt=&quot;pic&quot;/&gt;
</span><span class="cx"> CAP;
</span><ins>+        $this-&gt;img_name = 'image.jpg';
+        $this-&gt;img_url = 'http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/' . $this-&gt;img_name;
+        $this-&gt;img_html = '&lt;img src=&quot;' . $this-&gt;img_url . '&quot;/&gt;';
+        $this-&gt;img_dimensions = array( 'width' =&gt; 100, 'height' =&gt; 100 );
</ins><span class="cx">   }
</span><span class="cx"> 
</span><span class="cx">   function test_img_caption_shortcode_added() {
</span><span class="lines">@@ -169,4 +173,229 @@
</span><span class="cx">                 $this-&gt;assertEquals( '-1B', wp_convert_bytes_to_hr( -1 ) );
</span><span class="cx">                 $this-&gt;assertEquals( '0B', wp_convert_bytes_to_hr( 0 ) );
</span><span class="cx">         }
</span><ins>+
+        /**
+         * @ticket 22960
+         */
+        function test_get_attached_images() {
+                $post_id = $this-&gt;factory-&gt;post-&gt;create();
+                $attachment_id = $this-&gt;factory-&gt;attachment-&gt;create_object( $this-&gt;img_name, $post_id, array(
+                        'post_mime_type' =&gt; 'image/jpeg',
+                        'post_type' =&gt; 'attachment'
+                ) );
+
+                $images = get_attached_images( $post_id );
+                $this-&gt;assertEquals( $images, array( $attachment_id =&gt; get_post( $attachment_id ) ) );
+        }
+
+        /**
+         * @ticket 22960
+         */
+        function test_get_attached_image_srcs() {
+                $post_id = $this-&gt;factory-&gt;post-&gt;create();
+                $this-&gt;factory-&gt;attachment-&gt;create_object( $this-&gt;img_name, $post_id, array(
+                        'post_mime_type' =&gt; 'image/jpeg',
+                        'post_type' =&gt; 'attachment'
+                ) );
+
+                $images = get_attached_image_srcs( $post_id );
+                $this-&gt;assertEquals( $images, array( $this-&gt;img_url ) );
+        }
+
+        /**
+         * @ticket 22960
+         */
+        function test_content_images() {
+                $src1 = $this-&gt;img_url;
+                $html1 = $this-&gt;img_html;
+                $src2 = str_replace( '.jpg', '2.jpg', $this-&gt;img_url );
+                $html2 = str_replace( $src1, $src2, $this-&gt;img_html );
+                $src3 = str_replace( '.jpg', '3.jpg', $this-&gt;img_url );
+                $html3 = str_replace( $src1, $src3, $this-&gt;img_html );
+
+                $blob =&lt;&lt;&lt;BLOB
+This is a sentence that will all of a sudden contain {$html1} and then {$html2} and why not {$html3}
+BLOB;
+
+                $imgless = &quot;This is a sentence that will all of a sudden contain  and then  and why not &quot;;
+                $imgless1 = &quot;This is a sentence that will all of a sudden contain  and then {$html2} and why not {$html3}&quot;;
+
+                $images = get_content_images( $blob );
+                $this-&gt;assertEquals( $images, array( $html1, $html2, $html3 ) );
+
+                $images = get_content_images( $blob, false );
+                $this-&gt;assertEquals( $images, array( $src1, $src2, $src3 ) );
+
+                $copyblob = $blob;
+                $images = get_content_images( $blob, true, true );
+                $this-&gt;assertEquals( $images, array( $html1, $html2, $html3 ) );
+                $this-&gt;assertEquals( $blob, $imgless );
+                $blob = $copyblob;
+
+                $copyblob = $blob;
+                $images = get_content_images( $blob, false, true );
+                $this-&gt;assertEquals( $images, array( $src1, $src2, $src3 ) );
+                $this-&gt;assertEquals( $blob, $imgless );
+                $blob = $copyblob;
+
+                $copyblob = $blob;
+                $images = get_content_images( $blob, true, true, 1 );
+                $this-&gt;assertEquals( $images, array( $html1 ) );
+                $this-&gt;assertEquals( $blob, $imgless1 );
+                $blob = $copyblob;
+
+                $copyblob = $blob;
+                $images = get_content_images( $blob, false, true, 1 );
+                $this-&gt;assertEquals( $images, array( $src1 ) );
+                $this-&gt;assertEquals( $blob, $imgless1 );
+                $blob = $copyblob;
+        }
+
+        /**
+         * @ticket 22960
+         */
+        function test_content_image() {
+                $blob =&lt;&lt;&lt;BLOB
+This is a sentence that will all of a sudden contain {$this-&gt;img_html}
+BLOB;
+                $imgless = &quot;This is a sentence that will all of a sudden contain &quot;;
+
+                $image = get_content_image( $blob );
+                $this-&gt;assertEquals( $image, $this-&gt;img_html );
+
+                $image = get_content_image( $blob, false );
+                $this-&gt;assertEquals( $image, $this-&gt;img_url );
+
+                $image = get_content_image( $blob, false, true );
+                $this-&gt;assertEquals( $image, $this-&gt;img_url );
+                $this-&gt;assertEquals( $blob, $imgless );
+        }
+
+        /**
+         * @ticket 22960
+         */
+        function test_content_galleries() {
+                $ids1 = array();
+                $ids1_srcs = array();
+                foreach ( range( 1, 3 ) as $i ) {
+                        $attachment_id = $this-&gt;factory-&gt;attachment-&gt;create_object( &quot;image$i.jpg&quot;, 0, array(
+                                'post_mime_type' =&gt; 'image/jpeg',
+                                'post_type' =&gt; 'attachment'
+                        ) );
+                        wp_update_attachment_metadata( $attachment_id, $this-&gt;img_dimensions );
+                        $ids1[] = $attachment_id;
+                        $ids1_srcs[] = 'http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/' . &quot;image$i.jpg&quot;;
+                }
+
+                $ids2 = array();
+                $ids2_srcs = array();
+                foreach ( range( 4, 6 ) as $i ) {
+                        $attachment_id = $this-&gt;factory-&gt;attachment-&gt;create_object( &quot;image$i.jpg&quot;, 0, array(
+                                'post_mime_type' =&gt; 'image/jpeg',
+                                'post_type' =&gt; 'attachment'
+                        ) );
+                        wp_update_attachment_metadata( $attachment_id, $this-&gt;img_dimensions );
+                        $ids2[] = $attachment_id;
+                        $ids2_srcs[] = 'http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/' . &quot;image$i.jpg&quot;;
+                }
+
+                $ids1_joined = join( ',', $ids1 );
+                $ids2_joined = join( ',', $ids2 );
+
+                $blob =&lt;&lt;&lt;BLOB
+[gallery ids=&quot;$ids1_joined&quot;]
+
+[gallery ids=&quot;$ids2_joined&quot;]
+BLOB;
+
+                $post_id = $this-&gt;factory-&gt;post-&gt;create( array( 'post_content' =&gt; $blob ) );
+                $galleries = get_content_galleries( get_post_field( 'post_content', $post_id ) );
+                $expected = array(
+                        array( 'ids' =&gt; $ids1_joined, 'src' =&gt; $ids1_srcs ),
+                        array( 'ids' =&gt; $ids2_joined, 'src' =&gt; $ids2_srcs )
+                );
+                $this-&gt;assertEquals( $galleries, $expected );
+        }
+
+        /**
+         * @ticket 22960
+         */
+        function test_post_galleries_images() {
+                $ids1 = array();
+                $ids1_srcs = array();
+                foreach ( range( 1, 3 ) as $i ) {
+                        $attachment_id = $this-&gt;factory-&gt;attachment-&gt;create_object( &quot;image$i.jpg&quot;, 0, array(
+                                'post_mime_type' =&gt; 'image/jpeg',
+                                'post_type' =&gt; 'attachment'
+                        ) );
+                        wp_update_attachment_metadata( $attachment_id, $this-&gt;img_dimensions );
+                        $ids1[] = $attachment_id;
+                        $ids1_srcs[] = 'http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/' . &quot;image$i.jpg&quot;;
+                }
+
+                $ids2 = array();
+                $ids2_srcs = array();
+                foreach ( range( 4, 6 ) as $i ) {
+                        $attachment_id = $this-&gt;factory-&gt;attachment-&gt;create_object( &quot;image$i.jpg&quot;, 0, array(
+                                'post_mime_type' =&gt; 'image/jpeg',
+                                'post_type' =&gt; 'attachment'
+                        ) );
+                        wp_update_attachment_metadata( $attachment_id, $this-&gt;img_dimensions );
+                        $ids2[] = $attachment_id;
+                        $ids2_srcs[] = 'http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/' . &quot;image$i.jpg&quot;;
+                }
+
+                $ids1_joined = join( ',', $ids1 );
+                $ids2_joined = join( ',', $ids2 );
+
+                $blob =&lt;&lt;&lt;BLOB
+[gallery ids=&quot;$ids1_joined&quot;]
+
+[gallery ids=&quot;$ids2_joined&quot;]
+BLOB;
+                $post_id = $this-&gt;factory-&gt;post-&gt;create( array( 'post_content' =&gt; $blob ) );
+                $srcs = get_post_galleries_images( $post_id );
+                $this-&gt;assertEquals( $srcs, array( $ids1_srcs, $ids2_srcs ) );
+        }
+
+        /**
+         * @ticket 22960
+         */
+        function test_post_gallery_images() {
+                $ids1 = array();
+                $ids1_srcs = array();
+                foreach ( range( 1, 3 ) as $i ) {
+                        $attachment_id = $this-&gt;factory-&gt;attachment-&gt;create_object( &quot;image$i.jpg&quot;, 0, array(
+                                'post_mime_type' =&gt; 'image/jpeg',
+                                'post_type' =&gt; 'attachment'
+                        ) );
+                        wp_update_attachment_metadata( $attachment_id, $this-&gt;img_dimensions );
+                        $ids1[] = $attachment_id;
+                        $ids1_srcs[] = 'http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/' . &quot;image$i.jpg&quot;;
+                }
+
+                $ids2 = array();
+                $ids2_srcs = array();
+                foreach ( range( 4, 6 ) as $i ) {
+                        $attachment_id = $this-&gt;factory-&gt;attachment-&gt;create_object( &quot;image$i.jpg&quot;, 0, array(
+                                'post_mime_type' =&gt; 'image/jpeg',
+                                'post_type' =&gt; 'attachment'
+                        ) );
+                        wp_update_attachment_metadata( $attachment_id, $this-&gt;img_dimensions );
+                        $ids2[] = $attachment_id;
+                        $ids2_srcs[] = 'http://' . WP_TESTS_DOMAIN . '/wp-content/uploads/' . &quot;image$i.jpg&quot;;
+                }
+
+                $ids1_joined = join( ',', $ids1 );
+                $ids2_joined = join( ',', $ids2 );
+
+                $blob =&lt;&lt;&lt;BLOB
+[gallery ids=&quot;$ids1_joined&quot;]
+
+[gallery ids=&quot;$ids2_joined&quot;]
+BLOB;
+                $post_id = $this-&gt;factory-&gt;post-&gt;create( array( 'post_content' =&gt; $blob ) );
+                $srcs = get_post_gallery_images( $post_id );
+                $this-&gt;assertEquals( $srcs, $ids1_srcs );
+        }
</ins><span class="cx"> }
</span></span></pre>
</div>
</div>

</body>
</html>