Files
wordpress-develop/tests/phpunit/tests/post/slashes.php
Tonya Mork 40ac5de838 Coding Standards: Add visibility to methods in tests/phpunit/tests/.
Adds a `public` visibility to test fixtures, tests, data providers, and callbacks methods.

Adds a `private` visibility to helper methods within test classes.

Renames callbacks and helpers that previously started with a `_` prefix. Why? For consistency and to leverage using the method visibility. Further naming standardizations is beyond the scope of this commit.

Props costdev, jrf, hellofromTonya.
Fixes #54177.

git-svn-id: https://develop.svn.wordpress.org/trunk@52010 602fd350-edb4-49c9-b593-d223f7449a82
2021-11-04 15:22:47 +00:00

171 lines
5.0 KiB
PHP

<?php
/**
* @group post
* @group slashes
* @ticket 21767
*/
class Tests_Post_Slashes extends WP_UnitTestCase {
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 );
// 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.
$this->slash_1 = 'String with 1 slash \\';
$this->slash_2 = 'String with 2 slashes \\\\';
$this->slash_3 = 'String with 3 slashes \\\\\\';
$this->slash_4 = 'String with 4 slashes \\\\\\\\';
$this->slash_5 = 'String with 5 slashes \\\\\\\\\\';
$this->slash_6 = 'String with 6 slashes \\\\\\\\\\\\';
$this->slash_7 = 'String with 7 slashes \\\\\\\\\\\\\\';
}
/**
* 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'] = $this->slash_1;
$_POST['content'] = $this->slash_5;
$_POST['excerpt'] = $this->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( $this->slash_1, $post->post_title );
$this->assertSame( $this->slash_5, $post->post_content );
$this->assertSame( $this->slash_7, $post->post_excerpt );
$_POST = array();
$_POST['post_ID'] = $post_id;
$_POST['post_title'] = $this->slash_2;
$_POST['content'] = $this->slash_4;
$_POST['excerpt'] = $this->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( $this->slash_2, $post->post_title );
$this->assertSame( $this->slash_4, $post->post_content );
$this->assertSame( $this->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' => $this->slash_1,
'post_content' => $this->slash_3,
'post_excerpt' => $this->slash_5,
'post_type' => 'post',
'slashed' => false,
)
);
$post = get_post( $post_id );
$this->assertSame( wp_unslash( $this->slash_1 ), $post->post_title );
$this->assertSame( wp_unslash( $this->slash_3 ), $post->post_content );
$this->assertSame( wp_unslash( $this->slash_5 ), $post->post_excerpt );
$post_id = wp_insert_post(
array(
'post_status' => 'publish',
'post_title' => $this->slash_2,
'post_content' => $this->slash_4,
'post_excerpt' => $this->slash_6,
'post_type' => 'post',
)
);
$post = get_post( $post_id );
$this->assertSame( wp_unslash( $this->slash_2 ), $post->post_title );
$this->assertSame( wp_unslash( $this->slash_4 ), $post->post_content );
$this->assertSame( wp_unslash( $this->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' => $this->slash_1,
'post_content' => $this->slash_3,
'post_excerpt' => $this->slash_5,
)
);
$post = get_post( $post_id );
$this->assertSame( wp_unslash( $this->slash_1 ), $post->post_title );
$this->assertSame( wp_unslash( $this->slash_3 ), $post->post_content );
$this->assertSame( wp_unslash( $this->slash_5 ), $post->post_excerpt );
wp_update_post(
array(
'ID' => $post_id,
'post_title' => $this->slash_2,
'post_content' => $this->slash_4,
'post_excerpt' => $this->slash_6,
)
);
$post = get_post( $post_id );
$this->assertSame( wp_unslash( $this->slash_2 ), $post->post_title );
$this->assertSame( wp_unslash( $this->slash_4 ), $post->post_content );
$this->assertSame( wp_unslash( $this->slash_6 ), $post->post_excerpt );
}
/**
* @ticket 27550
*/
public function test_wp_trash_untrash() {
$post = array(
'post_title' => $this->slash_1,
'post_content' => $this->slash_3,
'post_excerpt' => $this->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( $this->slash_1, $post->post_title );
$this->assertSame( $this->slash_3, $post->post_content );
$this->assertSame( $this->slash_5, $post->post_excerpt );
$untrashed = wp_untrash_post( $post_id );
$this->assertNotEmpty( $untrashed );
$post = get_post( $post_id );
$this->assertSame( $this->slash_1, $post->post_title );
$this->assertSame( $this->slash_3, $post->post_content );
$this->assertSame( $this->slash_5, $post->post_excerpt );
}
}