mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
wp-tests-config.php can/should reside in the root of a develop checkout. `phpunit` should be run from the root. see #25088. git-svn-id: https://develop.svn.wordpress.org/trunk@25165 602fd350-edb4-49c9-b593-d223f7449a82
115 lines
2.6 KiB
PHP
115 lines
2.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Admin ajax functions to be tested
|
|
*/
|
|
require_once( ABSPATH . 'wp-admin/includes/ajax-actions.php' );
|
|
|
|
/**
|
|
* Testing ajax save draft functionality
|
|
*
|
|
* @package WordPress
|
|
* @subpackage UnitTests
|
|
* @since 3.4.0
|
|
* @group ajax
|
|
* @runTestsInSeparateProcesses
|
|
*/
|
|
class Tests_Ajax_Autosave extends WP_Ajax_UnitTestCase {
|
|
|
|
/**
|
|
* Post
|
|
* @var mixed
|
|
*/
|
|
protected $_post = null;
|
|
|
|
/**
|
|
* Set up the test fixture
|
|
*/
|
|
public function setUp() {
|
|
parent::setUp();
|
|
$post_id = $this->factory->post->create( array( 'post_status' => 'draft' ) );
|
|
$this->_post = get_post( $post_id );
|
|
}
|
|
|
|
/**
|
|
* Test autosaving a post
|
|
* @return void
|
|
*/
|
|
public function test_autosave_post() {
|
|
|
|
// Become an admin
|
|
$this->_setRole( 'administrator' );
|
|
|
|
// Set up the $_POST request
|
|
$md5 = md5( uniqid() );
|
|
$_POST = array(
|
|
'post_id' => $this->_post->ID,
|
|
'autosavenonce' => wp_create_nonce( 'autosave' ),
|
|
'post_content' => $this->_post->post_content . PHP_EOL . $md5,
|
|
'post_type' => 'post',
|
|
'autosave' => 1,
|
|
);
|
|
|
|
// Make the request
|
|
try {
|
|
$this->_handleAjax( 'autosave' );
|
|
} catch ( WPAjaxDieContinueException $e ) {
|
|
unset( $e );
|
|
}
|
|
|
|
// Get the response
|
|
$xml = simplexml_load_string( $this->_last_response, 'SimpleXMLElement', LIBXML_NOCDATA );
|
|
|
|
// Ensure everything is correct
|
|
$this->assertEquals( $this->_post->ID, (int) $xml->response[0]->autosave['id'] );
|
|
$this->assertEquals( 'autosave_' . $this->_post->ID, (string) $xml->response['action']);
|
|
|
|
// Check that the edit happened
|
|
$post = get_post( $this->_post->ID) ;
|
|
$this->assertGreaterThanOrEqual( 0, strpos( $post->post_content, $md5 ) );
|
|
}
|
|
|
|
/**
|
|
* Test with an invalid nonce
|
|
* @return void
|
|
*/
|
|
public function test_with_invalid_nonce( ) {
|
|
|
|
// Become an administrator
|
|
$this->_setRole( 'administrator' );
|
|
|
|
// Set up the $_POST request
|
|
$_POST = array(
|
|
'post_id' => $this->_post->ID,
|
|
'autosavenonce' => md5( uniqid() ),
|
|
'autosave' => 1
|
|
);
|
|
|
|
// Make the request
|
|
$this->setExpectedException( 'WPAjaxDieStopException', '-1' );
|
|
$this->_handleAjax( 'autosave' );
|
|
}
|
|
|
|
/**
|
|
* Test with a bad post id
|
|
* @return void
|
|
*/
|
|
public function test_with_invalid_post_id( ) {
|
|
|
|
// Become an administrator
|
|
$this->_setRole( 'administrator' );
|
|
|
|
// Set up the $_POST request
|
|
$_POST = array(
|
|
'post_id' => 0,
|
|
'autosavenonce' => wp_create_nonce( 'autosave' ),
|
|
'autosave' => 1,
|
|
'post_type' => 'post'
|
|
);
|
|
|
|
// Make the request
|
|
$this->setExpectedException( 'WPAjaxDieStopException', 'You are not allowed to edit this post.' );
|
|
$this->_handleAjax( 'autosave' );
|
|
}
|
|
}
|