wordpress-develop/tests/phpunit/tests/ajax/QuickEdit.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

83 lines
2.0 KiB
PHP

<?php
/**
* Admin ajax functions to be tested
*/
require_once( ABSPATH . 'wp-admin/includes/ajax-actions.php' );
/**
* Testing Quick Edit AJAX functionality.
*
* @group ajax
*/
class Tests_Ajax_QuickEdit extends WP_Ajax_UnitTestCase {
/**
* @ticket 26948
*/
public function test_dont_process_terms_if_taxonomy_does_not_allow_show_on_quick_edit() {
register_taxonomy(
'wptests_tax_1', 'post', array(
'show_in_quick_edit' => false,
'hierarchical' => true,
)
);
register_taxonomy(
'wptests_tax_2', 'post', array(
'show_in_quick_edit' => true,
'hierarchical' => true,
)
);
$t1 = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax_1',
)
);
$t2 = self::factory()->term->create(
array(
'taxonomy' => 'wptests_tax_2',
)
);
// Become an administrator.
$this->_setRole( 'administrator' );
$post = self::factory()->post->create_and_get(
array(
'post_author' => get_current_user_id(),
)
);
// Set up a request.
$_POST['_inline_edit'] = wp_create_nonce( 'inlineeditnonce' );
$_POST['post_ID'] = $post->ID;
$_POST['post_type'] = $post->post_type;
$_POST['content'] = $post->post_content;
$_POST['excerpt'] = $post->post_excerpt;
$_POST['_status'] = $post->post_status;
$_POST['post_status'] = $post->post_status;
$_POST['screen'] = 'post';
$_POST['post_view'] = 'excerpt';
$_POST['tax_input'] = array(
'wptests_tax_1' => array( $t1 ),
'wptests_tax_2' => array( $t2 ),
);
// Make the request.
try {
$this->_handleAjax( 'inline-save' );
} catch ( WPAjaxDieContinueException $e ) {
unset( $e );
}
// wptests_tax_1 terms should have been refused.
$post_terms_1 = wp_get_object_terms( $post->ID, 'wptests_tax_1' );
$this->assertEmpty( $post_terms_1 );
// wptests_tax_2 terms should have been added successfully.
$post_terms_2 = wp_get_object_terms( $post->ID, 'wptests_tax_2' );
$this->assertEqualSets( array( $t2 ), wp_list_pluck( $post_terms_2, 'term_id' ) );
}
}