mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Dynamic (non-explicitly declared) properties are deprecated as of PHP 8.2 and are expected to become a fatal error in PHP 9.0. In this particular case, the test classes contain a `set_up()` method that sets a group of properties, which are ''used'' by the tests, but the values of these properties are never ''changed'' by the tests. In other words, setting these properties in the `set_up()` is an unnecessary overhead and the properties should be changed to class constants. Follow-up to [1041/tests], [1071/tests]. Props jrf. See #56033. git-svn-id: https://develop.svn.wordpress.org/trunk@53557 602fd350-edb4-49c9-b593-d223f7449a82
248 lines
9.8 KiB
PHP
248 lines
9.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group meta
|
|
* @group slashes
|
|
* @ticket 21767
|
|
*/
|
|
class Tests_Meta_Slashes extends WP_UnitTestCase {
|
|
|
|
/*
|
|
* It is important to test with both even and odd numbered slashes,
|
|
* as KSES does a strip-then-add slashes in some of its function calls.
|
|
*/
|
|
|
|
const SLASH_1 = 'String with 1 slash \\';
|
|
const SLASH_2 = 'String with 2 slashes \\\\';
|
|
const SLASH_3 = 'String with 3 slashes \\\\\\';
|
|
const SLASH_4 = 'String with 4 slashes \\\\\\\\';
|
|
const SLASH_5 = 'String with 5 slashes \\\\\\\\\\';
|
|
const SLASH_6 = 'String with 6 slashes \\\\\\\\\\\\';
|
|
const SLASH_7 = 'String with 7 slashes \\\\\\\\\\\\\\';
|
|
|
|
protected static $editor_id;
|
|
protected static $post_id;
|
|
protected static $comment_id;
|
|
protected static $user_id;
|
|
|
|
public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
|
|
self::$editor_id = $factory->user->create( array( 'role' => 'editor' ) );
|
|
self::$post_id = $factory->post->create();
|
|
self::$comment_id = $factory->comment->create( array( 'comment_post_ID' => self::$post_id ) );
|
|
self::$user_id = $factory->user->create();
|
|
}
|
|
|
|
public function set_up() {
|
|
parent::set_up();
|
|
|
|
wp_set_current_user( self::$editor_id );
|
|
}
|
|
|
|
/**
|
|
* Tests the controller function that expects slashed data.
|
|
*/
|
|
public function test_edit_post() {
|
|
$post_id = self::$post_id;
|
|
|
|
if ( function_exists( 'wp_add_post_meta' ) ) {
|
|
$meta_1 = wp_add_post_meta( $post_id, 'slash_test_1', 'foo' );
|
|
$meta_2 = wp_add_post_meta( $post_id, 'slash_test_2', 'foo' );
|
|
$meta_3 = wp_add_post_meta( $post_id, 'slash_test_3', 'foo' );
|
|
} else {
|
|
// Expects slashed data.
|
|
$meta_1 = add_post_meta( $post_id, 'slash_test_1', addslashes( 'foo' ) );
|
|
$meta_2 = add_post_meta( $post_id, 'slash_test_2', addslashes( 'foo' ) );
|
|
$meta_3 = add_post_meta( $post_id, 'slash_test_3', addslashes( 'foo' ) );
|
|
}
|
|
|
|
$_POST = array();
|
|
$_POST['post_ID'] = $post_id;
|
|
$_POST['metakeyselect'] = '#NONE#';
|
|
$_POST['metakeyinput'] = 'slash_test_0';
|
|
$_POST['metavalue'] = self::SLASH_6;
|
|
$_POST['meta'] = array(
|
|
$meta_1 => array(
|
|
'key' => 'slash_test_1',
|
|
'value' => self::SLASH_1,
|
|
),
|
|
$meta_2 => array(
|
|
'key' => 'slash_test_2',
|
|
'value' => self::SLASH_3,
|
|
),
|
|
$meta_3 => array(
|
|
'key' => 'slash_test_3',
|
|
'value' => self::SLASH_4,
|
|
),
|
|
);
|
|
|
|
$_POST = add_magic_quotes( $_POST ); // The edit_post() function will strip slashes.
|
|
|
|
edit_post();
|
|
$post = get_post( $post_id );
|
|
|
|
$this->assertSame( self::SLASH_6, get_post_meta( $post_id, 'slash_test_0', true ) );
|
|
$this->assertSame( self::SLASH_1, get_post_meta( $post_id, 'slash_test_1', true ) );
|
|
$this->assertSame( self::SLASH_3, get_post_meta( $post_id, 'slash_test_2', true ) );
|
|
$this->assertSame( self::SLASH_4, get_post_meta( $post_id, 'slash_test_3', true ) );
|
|
|
|
$_POST = array();
|
|
$_POST['post_ID'] = $post_id;
|
|
$_POST['metakeyselect'] = '#NONE#';
|
|
$_POST['metakeyinput'] = 'slash_test_0';
|
|
$_POST['metavalue'] = self::SLASH_7;
|
|
$_POST['meta'] = array(
|
|
$meta_1 => array(
|
|
'key' => 'slash_test_1',
|
|
'value' => self::SLASH_2,
|
|
),
|
|
$meta_2 => array(
|
|
'key' => 'slash_test_2',
|
|
'value' => self::SLASH_4,
|
|
),
|
|
$meta_3 => array(
|
|
'key' => 'slash_test_3',
|
|
'value' => self::SLASH_5,
|
|
),
|
|
);
|
|
|
|
$_POST = add_magic_quotes( $_POST ); // The edit_post() function will strip slashes.
|
|
|
|
edit_post();
|
|
$post = get_post( $post_id );
|
|
|
|
$this->assertSame( self::SLASH_2, get_post_meta( $post_id, 'slash_test_1', true ) );
|
|
$this->assertSame( self::SLASH_4, get_post_meta( $post_id, 'slash_test_2', true ) );
|
|
$this->assertSame( self::SLASH_5, get_post_meta( $post_id, 'slash_test_3', true ) );
|
|
}
|
|
|
|
/**
|
|
* Tests the legacy model function that expects slashed data.
|
|
*/
|
|
public function test_add_post_meta() {
|
|
$post_id = self::$post_id;
|
|
|
|
add_post_meta( $post_id, 'slash_test_1', addslashes( self::SLASH_1 ) );
|
|
add_post_meta( $post_id, 'slash_test_2', addslashes( self::SLASH_3 ) );
|
|
add_post_meta( $post_id, 'slash_test_3', addslashes( self::SLASH_4 ) );
|
|
|
|
$this->assertSame( self::SLASH_1, get_post_meta( $post_id, 'slash_test_1', true ) );
|
|
$this->assertSame( self::SLASH_3, get_post_meta( $post_id, 'slash_test_2', true ) );
|
|
$this->assertSame( self::SLASH_4, get_post_meta( $post_id, 'slash_test_3', true ) );
|
|
}
|
|
|
|
/**
|
|
* Tests the legacy model function that expects slashed data.
|
|
*/
|
|
public function test_update_post_meta() {
|
|
$post_id = self::$post_id;
|
|
|
|
update_post_meta( $post_id, 'slash_test_1', addslashes( self::SLASH_1 ) );
|
|
update_post_meta( $post_id, 'slash_test_2', addslashes( self::SLASH_3 ) );
|
|
update_post_meta( $post_id, 'slash_test_3', addslashes( self::SLASH_4 ) );
|
|
|
|
$this->assertSame( self::SLASH_1, get_post_meta( $post_id, 'slash_test_1', true ) );
|
|
$this->assertSame( self::SLASH_3, get_post_meta( $post_id, 'slash_test_2', true ) );
|
|
$this->assertSame( self::SLASH_4, get_post_meta( $post_id, 'slash_test_3', true ) );
|
|
}
|
|
|
|
/**
|
|
* Tests the model function that expects slashed data.
|
|
*/
|
|
public function test_add_comment_meta() {
|
|
$comment_id = self::$comment_id;
|
|
|
|
add_comment_meta( $comment_id, 'slash_test_1', self::SLASH_1 );
|
|
add_comment_meta( $comment_id, 'slash_test_2', self::SLASH_3 );
|
|
add_comment_meta( $comment_id, 'slash_test_3', self::SLASH_5 );
|
|
|
|
$this->assertSame( wp_unslash( self::SLASH_1 ), get_comment_meta( $comment_id, 'slash_test_1', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_3 ), get_comment_meta( $comment_id, 'slash_test_2', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_5 ), get_comment_meta( $comment_id, 'slash_test_3', true ) );
|
|
|
|
add_comment_meta( $comment_id, 'slash_test_4', self::SLASH_2 );
|
|
add_comment_meta( $comment_id, 'slash_test_5', self::SLASH_4 );
|
|
add_comment_meta( $comment_id, 'slash_test_6', self::SLASH_6 );
|
|
|
|
$this->assertSame( wp_unslash( self::SLASH_2 ), get_comment_meta( $comment_id, 'slash_test_4', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_4 ), get_comment_meta( $comment_id, 'slash_test_5', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_6 ), get_comment_meta( $comment_id, 'slash_test_6', true ) );
|
|
}
|
|
|
|
/**
|
|
* Tests the model function that expects slashed data.
|
|
*/
|
|
public function test_update_comment_meta() {
|
|
$comment_id = self::$comment_id;
|
|
|
|
add_comment_meta( $comment_id, 'slash_test_1', 'foo' );
|
|
add_comment_meta( $comment_id, 'slash_test_2', 'foo' );
|
|
add_comment_meta( $comment_id, 'slash_test_3', 'foo' );
|
|
|
|
update_comment_meta( $comment_id, 'slash_test_1', self::SLASH_1 );
|
|
update_comment_meta( $comment_id, 'slash_test_2', self::SLASH_3 );
|
|
update_comment_meta( $comment_id, 'slash_test_3', self::SLASH_5 );
|
|
|
|
$this->assertSame( wp_unslash( self::SLASH_1 ), get_comment_meta( $comment_id, 'slash_test_1', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_3 ), get_comment_meta( $comment_id, 'slash_test_2', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_5 ), get_comment_meta( $comment_id, 'slash_test_3', true ) );
|
|
|
|
update_comment_meta( $comment_id, 'slash_test_1', self::SLASH_2 );
|
|
update_comment_meta( $comment_id, 'slash_test_2', self::SLASH_4 );
|
|
update_comment_meta( $comment_id, 'slash_test_3', self::SLASH_6 );
|
|
|
|
$this->assertSame( wp_unslash( self::SLASH_2 ), get_comment_meta( $comment_id, 'slash_test_1', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_4 ), get_comment_meta( $comment_id, 'slash_test_2', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_6 ), get_comment_meta( $comment_id, 'slash_test_3', true ) );
|
|
}
|
|
|
|
/**
|
|
* Tests the model function that expects slashed data.
|
|
*/
|
|
public function test_add_user_meta() {
|
|
$user_id = self::$user_id;
|
|
|
|
add_user_meta( $user_id, 'slash_test_1', self::SLASH_1 );
|
|
add_user_meta( $user_id, 'slash_test_2', self::SLASH_3 );
|
|
add_user_meta( $user_id, 'slash_test_3', self::SLASH_5 );
|
|
|
|
$this->assertSame( wp_unslash( self::SLASH_1 ), get_user_meta( $user_id, 'slash_test_1', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_3 ), get_user_meta( $user_id, 'slash_test_2', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_5 ), get_user_meta( $user_id, 'slash_test_3', true ) );
|
|
|
|
add_user_meta( $user_id, 'slash_test_4', self::SLASH_2 );
|
|
add_user_meta( $user_id, 'slash_test_5', self::SLASH_4 );
|
|
add_user_meta( $user_id, 'slash_test_6', self::SLASH_6 );
|
|
|
|
$this->assertSame( wp_unslash( self::SLASH_2 ), get_user_meta( $user_id, 'slash_test_4', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_4 ), get_user_meta( $user_id, 'slash_test_5', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_6 ), get_user_meta( $user_id, 'slash_test_6', true ) );
|
|
}
|
|
|
|
/**
|
|
* Tests the model function that expects slashed data.
|
|
*/
|
|
public function test_update_user_meta() {
|
|
$user_id = self::$user_id;
|
|
|
|
add_user_meta( $user_id, 'slash_test_1', 'foo' );
|
|
add_user_meta( $user_id, 'slash_test_2', 'foo' );
|
|
add_user_meta( $user_id, 'slash_test_3', 'foo' );
|
|
|
|
update_user_meta( $user_id, 'slash_test_1', self::SLASH_1 );
|
|
update_user_meta( $user_id, 'slash_test_2', self::SLASH_3 );
|
|
update_user_meta( $user_id, 'slash_test_3', self::SLASH_5 );
|
|
|
|
$this->assertSame( wp_unslash( self::SLASH_1 ), get_user_meta( $user_id, 'slash_test_1', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_3 ), get_user_meta( $user_id, 'slash_test_2', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_5 ), get_user_meta( $user_id, 'slash_test_3', true ) );
|
|
|
|
update_user_meta( $user_id, 'slash_test_1', self::SLASH_2 );
|
|
update_user_meta( $user_id, 'slash_test_2', self::SLASH_4 );
|
|
update_user_meta( $user_id, 'slash_test_3', self::SLASH_6 );
|
|
|
|
$this->assertSame( wp_unslash( self::SLASH_2 ), get_user_meta( $user_id, 'slash_test_1', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_4 ), get_user_meta( $user_id, 'slash_test_2', true ) );
|
|
$this->assertSame( wp_unslash( self::SLASH_6 ), get_user_meta( $user_id, 'slash_test_3', true ) );
|
|
}
|
|
}
|