Changeset 39487
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php
r39457 r39487 393 393 */ 394 394 $allow_anonymous = apply_filters( 'rest_allow_anonymous_comments', false, $request ); 395 if ( false ===$allow_anonymous ) {395 if ( ! $allow_anonymous ) { 396 396 return new WP_Error( 'rest_comment_login_required', __( 'Sorry, you must be logged in to comment.' ), array( 'status' => 401 ) ); 397 397 } -
trunk/tests/phpunit/tests/rest-api/rest-comments-controller.php
r39444 r39487 1748 1748 $response = $this->server->dispatch( $request ); 1749 1749 $this->assertEquals( 400, $response->get_status() ); 1750 } 1751 1752 public function anonymous_comments_callback_null() { 1753 // I'm a plugin developer who forgot to include a return value for some 1754 // code path in my 'rest_allow_anonymous_comments' filter. 1755 } 1756 1757 public function test_allow_anonymous_comments_null() { 1758 add_filter( 'rest_allow_anonymous_comments', array( $this, 'anonymous_comments_callback_null' ), 10, 2 ); 1759 1760 $params = array( 1761 'post' => self::$post_id, 1762 'author_name' => 'Comic Book Guy', 1763 'author_email' => 'cbg@androidsdungeon.com', 1764 'author_url' => 'http://androidsdungeon.com', 1765 'content' => 'Worst Comment Ever!', 1766 ); 1767 1768 $request = new WP_REST_Request( 'POST', '/wp/v2/comments' ); 1769 $request->add_header( 'content-type', 'application/json' ); 1770 $request->set_body( wp_json_encode( $params ) ); 1771 1772 $response = $this->server->dispatch( $request ); 1773 1774 remove_filter( 'rest_allow_anonymous_comments', array( $this, 'anonymous_comments_callback_null' ), 10, 2 ); 1775 1776 $this->assertErrorResponse( 'rest_comment_login_required', $response, 401 ); 1750 1777 } 1751 1778
Note: See TracChangeset
for help on using the changeset viewer.