Make WordPress Core

Changeset 39408 for branches/4.7


Ignore:
Timestamp:
12/01/2016 03:42:14 AM (10 years ago)
Author:
rachelbaker
Message:

REST API: Add test for creating a comment with an invalid post ID.

Props @jnylen0.

Merges [39375] to the 4.7 branch.
Fixes #38991 for 4.7.

Location:
branches/4.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.7

  • branches/4.7/tests/phpunit/tests/rest-api/rest-comments-controller.php

    r39349 r39408  
    15061506
    15071507                $response = $this->server->dispatch( $request );
    1508 
     1508                $this->assertErrorResponse( 'rest_comment_invalid_post_id', $response, 403 );
     1509        }
     1510
     1511        public function test_create_comment_invalid_post_id() {
     1512                wp_set_current_user( self::$admin_id );
     1513
     1514                $params = array(
     1515                        'author_name'  => 'Homer Jay Simpson',
     1516                        'author_email' => 'chunkylover53@aol.com',
     1517                        'author_url'   => 'http://compuglobalhypermeganet.com',
     1518                        'content'      => 'Here\’s to alcohol: the cause of, and solution to, all of life\’s problems.',
     1519                        'status'       => 'approved',
     1520                        'post'         => REST_TESTS_IMPOSSIBLY_HIGH_NUMBER,
     1521                );
     1522
     1523                $request = new WP_REST_Request( 'POST', '/wp/v2/comments' );
     1524                $request->add_header( 'content-type', 'application/json' );
     1525                $request->set_body( wp_json_encode( $params ) );
     1526
     1527                $response = $this->server->dispatch( $request );
    15091528                $this->assertErrorResponse( 'rest_comment_invalid_post_id', $response, 403 );
    15101529        }
Note: See TracChangeset for help on using the changeset viewer.