wordpress-develop/tests/phpunit/tests/post/slashes.php
Sergey Biryukov bafecbeab5 Code Modernization: Remove dynamic properties in Tests_*_Slashes.
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
2022-06-23 14:24:08 +00:00

175 lines
5.0 KiB
PHP

<?php
/**
* @group post
* @group slashes
* @ticket 21767
*/
class Tests_Post_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 $author_id;
protected static $post_id;
public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
self::$author_id = $factory->user->create( array( 'role' => 'editor' ) );
self::$post_id = $factory->post->create();
}
public function set_up() {
parent::set_up();
wp_set_current_user( self::$author_id );
}
/**
* Tests the controller function that expects slashed data.
*/
public function test_edit_post() {
$post_id = self::$post_id;
$_POST = array();
$_POST['post_ID'] = $post_id;
$_POST['post_title'] = self::SLASH_1;
$_POST['content'] = self::SLASH_5;
$_POST['excerpt'] = self::SLASH_7;
$_POST = add_magic_quotes( $_POST ); // The edit_post() function will strip slashes.
$post_id = edit_post();
$post = get_post( $post_id );
$this->assertSame( self::SLASH_1, $post->post_title );
$this->assertSame( self::SLASH_5, $post->post_content );
$this->assertSame( self::SLASH_7, $post->post_excerpt );
$_POST = array();
$_POST['post_ID'] = $post_id;
$_POST['post_title'] = self::SLASH_2;
$_POST['content'] = self::SLASH_4;
$_POST['excerpt'] = self::SLASH_6;
$_POST = add_magic_quotes( $_POST ); // The edit_post() function will strip slashes.
$post_id = edit_post();
$post = get_post( $post_id );
$this->assertSame( self::SLASH_2, $post->post_title );
$this->assertSame( self::SLASH_4, $post->post_content );
$this->assertSame( self::SLASH_6, $post->post_excerpt );
}
/**
* Tests the model function that expects slashed data.
*/
public function test_wp_insert_post() {
$post_id = wp_insert_post(
array(
'post_status' => 'publish',
'post_title' => self::SLASH_1,
'post_content' => self::SLASH_3,
'post_excerpt' => self::SLASH_5,
'post_type' => 'post',
'slashed' => false,
)
);
$post = get_post( $post_id );
$this->assertSame( wp_unslash( self::SLASH_1 ), $post->post_title );
$this->assertSame( wp_unslash( self::SLASH_3 ), $post->post_content );
$this->assertSame( wp_unslash( self::SLASH_5 ), $post->post_excerpt );
$post_id = wp_insert_post(
array(
'post_status' => 'publish',
'post_title' => self::SLASH_2,
'post_content' => self::SLASH_4,
'post_excerpt' => self::SLASH_6,
'post_type' => 'post',
)
);
$post = get_post( $post_id );
$this->assertSame( wp_unslash( self::SLASH_2 ), $post->post_title );
$this->assertSame( wp_unslash( self::SLASH_4 ), $post->post_content );
$this->assertSame( wp_unslash( self::SLASH_6 ), $post->post_excerpt );
}
/**
* Tests the model function that expects slashed data.
*/
public function test_wp_update_post() {
$post_id = self::$post_id;
wp_update_post(
array(
'ID' => $post_id,
'post_title' => self::SLASH_1,
'post_content' => self::SLASH_3,
'post_excerpt' => self::SLASH_5,
)
);
$post = get_post( $post_id );
$this->assertSame( wp_unslash( self::SLASH_1 ), $post->post_title );
$this->assertSame( wp_unslash( self::SLASH_3 ), $post->post_content );
$this->assertSame( wp_unslash( self::SLASH_5 ), $post->post_excerpt );
wp_update_post(
array(
'ID' => $post_id,
'post_title' => self::SLASH_2,
'post_content' => self::SLASH_4,
'post_excerpt' => self::SLASH_6,
)
);
$post = get_post( $post_id );
$this->assertSame( wp_unslash( self::SLASH_2 ), $post->post_title );
$this->assertSame( wp_unslash( self::SLASH_4 ), $post->post_content );
$this->assertSame( wp_unslash( self::SLASH_6 ), $post->post_excerpt );
}
/**
* @ticket 27550
*/
public function test_wp_trash_untrash() {
$post = array(
'post_title' => self::SLASH_1,
'post_content' => self::SLASH_3,
'post_excerpt' => self::SLASH_5,
);
$post_id = wp_insert_post( wp_slash( $post ) );
$trashed = wp_trash_post( $post_id );
$this->assertNotEmpty( $trashed );
$post = get_post( $post_id );
$this->assertSame( self::SLASH_1, $post->post_title );
$this->assertSame( self::SLASH_3, $post->post_content );
$this->assertSame( self::SLASH_5, $post->post_excerpt );
$untrashed = wp_untrash_post( $post_id );
$this->assertNotEmpty( $untrashed );
$post = get_post( $post_id );
$this->assertSame( self::SLASH_1, $post->post_title );
$this->assertSame( self::SLASH_3, $post->post_content );
$this->assertSame( self::SLASH_5, $post->post_excerpt );
}
}