mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
WPCS 1.0.0 includes a bunch of new auto-fixers, which drops the number of coding standards issues across WordPress significantly. Prior to running the auto-fixers, there were 15,312 issues detected. With this commit, we now drop to 4,769 issues. This change includes three notable additions: - Multiline function calls must now put each parameter on a new line. - Auto-formatting files is now part of the `grunt precommit` script. - Auto-fixable coding standards issues will now cause Travis failures. Fixes #44600. git-svn-id: https://develop.svn.wordpress.org/trunk@43571 602fd350-edb4-49c9-b593-d223f7449a82
95 lines
2.4 KiB
PHP
95 lines
2.4 KiB
PHP
<?php
|
|
|
|
if ( ! class_exists( '_WP_Editors', false ) ) {
|
|
require_once ABSPATH . WPINC . '/class-wp-editor.php';
|
|
}
|
|
|
|
/**
|
|
* @group editor
|
|
*/
|
|
class Tests_WP_Editors extends WP_UnitTestCase {
|
|
public function wp_link_query_callback( $results ) {
|
|
return array_merge(
|
|
$results,
|
|
array(
|
|
array(
|
|
'ID' => 123,
|
|
'title' => 'foo',
|
|
'permalink' => 'bar',
|
|
'info' => 'baz',
|
|
),
|
|
)
|
|
);
|
|
}
|
|
|
|
public function test_wp_link_query_returns_false_when_nothing_found() {
|
|
$actual = _WP_Editors::wp_link_query( array( 's' => 'foobarbaz' ) );
|
|
|
|
$this->assertFalse( $actual );
|
|
}
|
|
|
|
public function test_wp_link_query_returns_search_results() {
|
|
$post = self::factory()->post->create_and_get( array( 'post_status' => 'publish' ) );
|
|
$actual = _WP_Editors::wp_link_query( array( 's' => $post->post_title ) );
|
|
|
|
$this->assertEqualSets(
|
|
array(
|
|
array(
|
|
'ID' => $post->ID,
|
|
'title' => $post->post_title,
|
|
'permalink' => get_permalink( $post->ID ),
|
|
'info' => mysql2date( __( 'Y/m/d' ), $post->post_date ),
|
|
),
|
|
),
|
|
$actual
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @ticket 41825
|
|
*/
|
|
public function test_wp_link_query_returns_filtered_result_when_nothing_found() {
|
|
add_filter( 'wp_link_query', array( $this, 'wp_link_query_callback' ) );
|
|
$actual = _WP_Editors::wp_link_query( array( 's' => 'foobarbaz' ) );
|
|
remove_filter( 'wp_link_query', array( $this, 'wp_link_query_callback' ) );
|
|
|
|
$this->assertEqualSets(
|
|
array(
|
|
array(
|
|
'ID' => 123,
|
|
'title' => 'foo',
|
|
'permalink' => 'bar',
|
|
'info' => 'baz',
|
|
),
|
|
),
|
|
$actual
|
|
);
|
|
}
|
|
|
|
public function test_wp_link_query_returns_filtered_search_results() {
|
|
$post = self::factory()->post->create_and_get( array( 'post_status' => 'publish' ) );
|
|
|
|
add_filter( 'wp_link_query', array( $this, 'wp_link_query_callback' ) );
|
|
$actual = _WP_Editors::wp_link_query( array( 's' => $post->post_title ) );
|
|
remove_filter( 'wp_link_query', array( $this, 'wp_link_query_callback' ) );
|
|
|
|
$this->assertEqualSets(
|
|
array(
|
|
array(
|
|
'ID' => $post->ID,
|
|
'title' => $post->post_title,
|
|
'permalink' => get_permalink( $post->ID ),
|
|
'info' => mysql2date( __( 'Y/m/d' ), $post->post_date ),
|
|
),
|
|
array(
|
|
'ID' => 123,
|
|
'title' => 'foo',
|
|
'permalink' => 'bar',
|
|
'info' => 'baz',
|
|
),
|
|
),
|
|
$actual
|
|
);
|
|
}
|
|
}
|