Make WordPress Core

Ticket #41825: 41825.4.diff

File 41825.4.diff, 3.4 KB (added by swissspidy, 7 years ago)
  • src/wp-includes/class-wp-editor.php

    diff --git src/wp-includes/class-wp-editor.php src/wp-includes/class-wp-editor.php
    index a61f239788..1a402beeb7 100644
    final class _WP_Editors { 
    16231623                // Do main query.
    16241624                $get_posts = new WP_Query;
    16251625                $posts = $get_posts->query( $query );
    1626                 // Check if any posts were found.
    1627                 if ( ! $get_posts->post_count )
    1628                         return false;
    16291626
    16301627                // Build results.
    16311628                $results = array();
    final class _WP_Editors { 
    16651662                 * }
    16661663                 * @param array $query  An array of WP_Query arguments.
    16671664                 */
    1668                 return apply_filters( 'wp_link_query', $results, $query );
     1665                $results = apply_filters( 'wp_link_query', $results, $query );
     1666
     1667                return ! empty( $results ) ? $results : false;
    16691668        }
    16701669
    16711670        /**
  • new file tests/phpunit/tests/editor/wpEditors.php

    diff --git tests/phpunit/tests/editor/wpEditors.php tests/phpunit/tests/editor/wpEditors.php
    new file mode 100644
    index 0000000000..edaf698466
    - +  
     1<?php
     2
     3if ( ! class_exists( '_WP_Editors', false ) ) {
     4        require_once ABSPATH . WPINC . '/class-wp-editor.php';
     5}
     6
     7/**
     8 * @group editor
     9 */
     10class Tests_WP_Editors extends WP_UnitTestCase {
     11        public function wp_link_query_callback( $results ) {
     12                return array_merge( $results, array(
     13                        array(
     14                                'ID'        => 123,
     15                                'title'     => 'foo',
     16                                'permalink' => 'bar',
     17                                'info'      => 'baz',
     18                        ),
     19                ) );
     20        }
     21
     22        public function test_wp_link_query_returns_false_when_nothing_found() {
     23                $actual = _WP_Editors::wp_link_query( array( 's' => 'foobarbaz' ) );
     24
     25                $this->assertFalse( $actual );
     26        }
     27
     28        public function test_wp_link_query_returns_search_results() {
     29                $post   = self::factory()->post->create_and_get( array( 'post_status' => 'publish' ) );
     30                $actual = _WP_Editors::wp_link_query( array( 's' => $post->post_title ) );
     31
     32                $this->assertEqualSets( array(
     33                        array(
     34                                'ID'        => $post->ID,
     35                                'title'     => $post->post_title,
     36                                'permalink' => get_permalink( $post->ID ),
     37                                'info'      => mysql2date( __( 'Y/m/d' ), $post->post_date ),
     38                        ),
     39                ), $actual );
     40        }
     41
     42        /**
     43         * @ticket 41825
     44         */
     45        public function test_wp_link_query_returns_filtered_result_when_nothing_found() {
     46                add_filter( 'wp_link_query', array( $this, 'wp_link_query_callback' ) );
     47                $actual = _WP_Editors::wp_link_query( array( 's' => 'foobarbaz' ) );
     48                remove_filter( 'wp_link_query', array( $this, 'wp_link_query_callback' ) );
     49
     50                $this->assertEqualSets( array(
     51                        array(
     52                                'ID'        => 123,
     53                                'title'     => 'foo',
     54                                'permalink' => 'bar',
     55                                'info'      => 'baz',
     56                        ),
     57                ), $actual );
     58        }
     59
     60        public function test_wp_link_query_returns_filtered_search_results() {
     61                $post = self::factory()->post->create_and_get( array( 'post_status' => 'publish' ) );
     62
     63                add_filter( 'wp_link_query', array( $this, 'wp_link_query_callback' ) );
     64                $actual = _WP_Editors::wp_link_query( array( 's' => $post->post_title ) );
     65                remove_filter( 'wp_link_query', array( $this, 'wp_link_query_callback' ) );
     66
     67                $this->assertEqualSets( array(
     68                        array(
     69                                'ID'        => $post->ID,
     70                                'title'     => $post->post_title,
     71                                'permalink' => get_permalink( $post->ID ),
     72                                'info'      => mysql2date( __( 'Y/m/d' ), $post->post_date ),
     73                        ),
     74                        array(
     75                                'ID'        => 123,
     76                                'title'     => 'foo',
     77                                'permalink' => 'bar',
     78                                'info'      => 'baz',
     79                        ),
     80                ), $actual );
     81        }
     82}