Don't improperly cast IDs when fetching post, user, or term objects.
Blindly casting passed IDs to integers can generate false positives when the ID is cast to `1`. Props deeptiboddapati. Fixes #37738. git-svn-id: https://develop.svn.wordpress.org/trunk@38381 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
8b431f6859
commit
6eaa56f3d4
@ -191,11 +191,12 @@ final class WP_Comment {
|
||||
public static function get_instance( $id ) {
|
||||
global $wpdb;
|
||||
|
||||
$comment_id = (int) $id;
|
||||
if ( ! $comment_id ) {
|
||||
if ( ! is_numeric( $id ) || $id != floor( $id ) || ! $id ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$comment_id = (int) $id;
|
||||
|
||||
$_comment = wp_cache_get( $comment_id, 'comment' );
|
||||
|
||||
if ( ! $_comment ) {
|
||||
|
@ -210,9 +210,11 @@ final class WP_Post {
|
||||
public static function get_instance( $post_id ) {
|
||||
global $wpdb;
|
||||
|
||||
$post_id = (int) $post_id;
|
||||
if ( ! $post_id )
|
||||
if ( ! is_numeric( $post_id ) || $post_id != floor( $post_id ) || ! $post_id ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$post_id = (int) $post_id;
|
||||
|
||||
$_post = wp_cache_get( $post_id, 'posts' );
|
||||
|
||||
|
@ -125,11 +125,12 @@ final class WP_Term {
|
||||
public static function get_instance( $term_id, $taxonomy = null ) {
|
||||
global $wpdb;
|
||||
|
||||
$term_id = (int) $term_id;
|
||||
if ( ! $term_id ) {
|
||||
if ( ! is_numeric( $term_id ) || $term_id != floor( $term_id ) || ! $term_id ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
$term_id = (int) $term_id;
|
||||
|
||||
$_term = wp_cache_get( $term_id, 'terms' );
|
||||
|
||||
// If there isn't a cached version, hit the database.
|
||||
|
102
tests/phpunit/tests/comment/wpComment.php
Normal file
102
tests/phpunit/tests/comment/wpComment.php
Normal file
@ -0,0 +1,102 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @group comment
|
||||
*/
|
||||
class Tests_Term_WpComment extends WP_UnitTestCase {
|
||||
protected static $comment_id;
|
||||
|
||||
public static function wpSetUpBeforeClass( $factory ) {
|
||||
global $wpdb;
|
||||
|
||||
// Ensure that there is a comment with ID 1.
|
||||
$comment_1 = WP_Comment::get_instance( 1 );
|
||||
if ( ! $comment_1 ) {
|
||||
$wpdb->insert( $wpdb->comments, array(
|
||||
'comment_ID' => 1,
|
||||
) );
|
||||
|
||||
clean_comment_cache( 1 );
|
||||
}
|
||||
|
||||
self::$comment_id = self::factory()->comment->create();
|
||||
}
|
||||
|
||||
public static function wpTearDownAfterClass() {
|
||||
wp_delete_comment( 1, true );
|
||||
wp_delete_comment( self::$comment_id, true );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_work_for_numeric_string() {
|
||||
$found = WP_Comment::get_instance( (string) self::$comment_id );
|
||||
|
||||
$this->assertEquals( self::$comment_id, $found->comment_ID );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_negative_number() {
|
||||
$found = WP_Comment::get_instance( -self::$comment_id );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_non_numeric_string() {
|
||||
$found = WP_Comment::get_instance( 'abc' );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_bool() {
|
||||
$found = WP_Comment::get_instance( true );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_succeed_for_float_that_is_equal_to_post_id() {
|
||||
$found = WP_Comment::get_instance( 1.0 );
|
||||
|
||||
$this->assertEquals( 1, $found->comment_ID );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_float() {
|
||||
$found = WP_Comment::get_instance( 1.6 );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_array() {
|
||||
$found = WP_Comment::get_instance( array( 1 ) );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_class() {
|
||||
$class = new stdClass();
|
||||
$found = WP_Comment::get_instance( $class );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
}
|
100
tests/phpunit/tests/post/wpPost.php
Normal file
100
tests/phpunit/tests/post/wpPost.php
Normal file
@ -0,0 +1,100 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @group post
|
||||
*/
|
||||
class Tests_Post_WpPost extends WP_UnitTestCase {
|
||||
protected static $post_id;
|
||||
|
||||
public static function wpSetUpBeforeClass( $factory ) {
|
||||
global $wpdb;
|
||||
|
||||
// Ensure that there is a post with ID 1.
|
||||
if ( ! get_post( 1 ) ) {
|
||||
$wpdb->insert( $wpdb->posts, array(
|
||||
'ID' => 1,
|
||||
'post_title' => 'Post 1',
|
||||
) );
|
||||
}
|
||||
|
||||
self::$post_id = self::factory()->post->create();
|
||||
}
|
||||
|
||||
public static function wpTearDownAfterClass() {
|
||||
wp_delete_post( 1, true );
|
||||
wp_delete_post( self::$post_id, true );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_work_for_numeric_string() {
|
||||
$found = WP_Post::get_instance( (string) self::$post_id );
|
||||
|
||||
$this->assertSame( self::$post_id, $found->ID );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_negative_number() {
|
||||
$found = WP_Post::get_instance( -self::$post_id );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_non_numeric_string() {
|
||||
$found = WP_Post::get_instance( 'abc' );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_bool() {
|
||||
$found = WP_Post::get_instance( true );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_succeed_for_float_that_is_equal_to_post_id() {
|
||||
$found = WP_Post::get_instance( 1.0 );
|
||||
|
||||
$this->assertSame( 1, $found->ID );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_float() {
|
||||
$found = WP_Post::get_instance( 1.6 );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_array() {
|
||||
$found = WP_Post::get_instance( array( 1 ) );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_class() {
|
||||
$class = new stdClass();
|
||||
$found = WP_Post::get_instance( $class );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
}
|
113
tests/phpunit/tests/term/wpTerm.php
Normal file
113
tests/phpunit/tests/term/wpTerm.php
Normal file
@ -0,0 +1,113 @@
|
||||
<?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' ) );
|
||||
}
|
||||
|
||||
public static function wpTearDownAfterClass() {
|
||||
wp_delete_term( 1, 'wptests_tax' );
|
||||
wp_delete_term( self::$term_id, '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_fail_for_bool() {
|
||||
$found = WP_Term::get_instance( true );
|
||||
|
||||
$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 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_float() {
|
||||
$found = WP_Term::get_instance( 1.6 );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_array() {
|
||||
$found = WP_Term::get_instance( array( 1 ) );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
|
||||
/**
|
||||
* @ticket 37738
|
||||
*/
|
||||
public function test_get_instance_should_fail_for_class() {
|
||||
$class = new stdClass();
|
||||
$found = WP_Term::get_instance( $class );
|
||||
|
||||
$this->assertFalse( $found );
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user