wordpress-develop/tests/phpunit/tests/term/slashes.php
Gary Pendergast 8f95800d52 Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.



git-svn-id: https://develop.svn.wordpress.org/trunk@42343 602fd350-edb4-49c9-b593-d223f7449a82
2017-11-30 23:09:33 +00:00

125 lines
3.2 KiB
PHP

<?php
/**
* @group term
* @group slashes
* @ticket 21767
*/
class Tests_Term_Slashes extends WP_Ajax_UnitTestCase {
function setUp() {
parent::setUp();
$this->author_id = self::factory()->user->create( array( 'role' => 'administrator' ) );
wp_set_current_user( $this->author_id );
$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 model function that expects slashed data
*/
function test_wp_insert_term() {
$taxonomies = array(
'category',
'post_tag',
);
foreach ( $taxonomies as $taxonomy ) {
$insert = wp_insert_term(
$this->slash_1,
$taxonomy,
array(
'slug' => 'slash_test_1_' . $taxonomy,
'description' => $this->slash_3,
)
);
$term = get_term( $insert['term_id'], $taxonomy );
$this->assertEquals( wp_unslash( $this->slash_1 ), $term->name );
$this->assertEquals( wp_unslash( $this->slash_3 ), $term->description );
$insert = wp_insert_term(
$this->slash_3,
$taxonomy,
array(
'slug' => 'slash_test_2_' . $taxonomy,
'description' => $this->slash_5,
)
);
$term = get_term( $insert['term_id'], $taxonomy );
$this->assertEquals( wp_unslash( $this->slash_3 ), $term->name );
$this->assertEquals( wp_unslash( $this->slash_5 ), $term->description );
$insert = wp_insert_term(
$this->slash_2,
$taxonomy,
array(
'slug' => 'slash_test_3_' . $taxonomy,
'description' => $this->slash_4,
)
);
$term = get_term( $insert['term_id'], $taxonomy );
$this->assertEquals( wp_unslash( $this->slash_2 ), $term->name );
$this->assertEquals( wp_unslash( $this->slash_4 ), $term->description );
}
}
/**
* Tests the model function that expects slashed data
*/
function test_wp_update_term() {
$taxonomies = array(
'category',
'post_tag',
);
foreach ( $taxonomies as $taxonomy ) {
$id = self::factory()->term->create(
array(
'taxonomy' => $taxonomy,
)
);
$update = wp_update_term(
$id,
$taxonomy,
array(
'name' => $this->slash_1,
'description' => $this->slash_3,
)
);
$term = get_term( $id, $taxonomy );
$this->assertEquals( wp_unslash( $this->slash_1 ), $term->name );
$this->assertEquals( wp_unslash( $this->slash_3 ), $term->description );
$update = wp_update_term(
$id,
$taxonomy,
array(
'name' => $this->slash_3,
'description' => $this->slash_5,
)
);
$term = get_term( $id, $taxonomy );
$this->assertEquals( wp_unslash( $this->slash_3 ), $term->name );
$this->assertEquals( wp_unslash( $this->slash_5 ), $term->description );
$update = wp_update_term(
$id,
$taxonomy,
array(
'name' => $this->slash_2,
'description' => $this->slash_4,
)
);
$term = get_term( $id, $taxonomy );
$this->assertEquals( wp_unslash( $this->slash_2 ), $term->name );
$this->assertEquals( wp_unslash( $this->slash_4 ), $term->description );
}
}
}