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
93 lines
1.9 KiB
PHP
93 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group taxonomy
|
|
*/
|
|
class Tests_Term_WpTerm extends WP_UnitTestCase {
|
|
protected static $term_id;
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
register_taxonomy( 'wptests_tax', 'post' );
|
|
}
|
|
|
|
public static function wpSetUpBeforeClass( $factory ) {
|
|
global $wpdb;
|
|
|
|
register_taxonomy( 'wptests_tax', 'post' );
|
|
|
|
// Ensure that there is a term with ID 1.
|
|
if ( ! get_term( 1 ) ) {
|
|
$wpdb->insert(
|
|
$wpdb->terms,
|
|
array(
|
|
'term_id' => 1,
|
|
)
|
|
);
|
|
|
|
$wpdb->insert(
|
|
$wpdb->term_taxonomy,
|
|
array(
|
|
'term_id' => 1,
|
|
'taxonomy' => 'wptests_tax',
|
|
)
|
|
);
|
|
|
|
clean_term_cache( 1, 'wptests_tax' );
|
|
}
|
|
|
|
self::$term_id = self::factory()->term->create( array( 'taxonomy' => 'wptests_tax' ) );
|
|
}
|
|
|
|
/**
|
|
* @ticket 37738
|
|
*/
|
|
public function test_get_instance_should_work_for_numeric_string() {
|
|
$found = WP_Term::get_instance( (string) self::$term_id );
|
|
|
|
$this->assertSame( self::$term_id, $found->term_id );
|
|
}
|
|
|
|
/**
|
|
* @ticket 37738
|
|
*/
|
|
public function test_get_instance_should_fail_for_negative_number() {
|
|
$found = WP_Term::get_instance( -self::$term_id );
|
|
|
|
$this->assertFalse( $found );
|
|
}
|
|
|
|
/**
|
|
* @ticket 37738
|
|
*/
|
|
public function test_get_instance_should_fail_for_non_numeric_string() {
|
|
$found = WP_Term::get_instance( 'abc' );
|
|
|
|
$this->assertFalse( $found );
|
|
}
|
|
|
|
/**
|
|
* @ticket 37738
|
|
*/
|
|
public function test_get_instance_should_succeed_for_float_that_is_equal_to_post_id() {
|
|
$found = WP_Term::get_instance( 1.0 );
|
|
|
|
$this->assertSame( 1, $found->term_id );
|
|
}
|
|
|
|
/**
|
|
* @ticket 40671
|
|
*/
|
|
public function test_get_instance_should_respect_taxonomy_when_term_id_is_found_in_cache() {
|
|
global $wpdb;
|
|
|
|
register_taxonomy( 'wptests_tax2', 'post' );
|
|
|
|
// Ensure that cache is primed.
|
|
WP_Term::get_instance( self::$term_id, 'wptests_tax' );
|
|
|
|
$found = WP_Term::get_instance( self::$term_id, 'wptests_tax2' );
|
|
$this->assertFalse( $found );
|
|
}
|
|
}
|