- Timestamp:
- 01/03/2020 06:42:09 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/rest-comments-controller.php
r46657 r47036 3241 3241 } 3242 3242 } 3243 3244 /** 3245 * @ticket 42238 3246 */ 3247 public function test_check_read_post_permission_with_invalid_post_type() { 3248 register_post_type( 3249 'bug-post', 3250 array( 3251 'label' => 'Bug Posts', 3252 'supports' => array( 'title', 'editor', 'author', 'comments' ), 3253 'show_in_rest' => true, 3254 'public' => true, 3255 ) 3256 ); 3257 create_initial_rest_routes(); 3258 3259 $post_id = self::factory()->post->create( array( 'post_type' => 'bug-post' ) ); 3260 $comment_id = self::factory()->comment->create( array( 'comment_post_ID' => $post_id ) ); 3261 _unregister_post_type( 'bug-post' ); 3262 3263 $this->setExpectedIncorrectUsage( 'map_meta_cap' ); 3264 3265 wp_set_current_user( self::$admin_id ); 3266 $request = new WP_REST_Request( 'GET', '/wp/v2/comments/' . $comment_id ); 3267 $response = rest_get_server()->dispatch( $request ); 3268 $this->assertEquals( 403, $response->get_status() ); 3269 } 3243 3270 }
Note: See TracChangeset
for help on using the changeset viewer.