- Timestamp:
- 06/27/2023 05:24:44 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/rest-post-meta-fields.php
r55562 r56075 2301 2301 2302 2302 /** 2303 * @ticket 57745 2304 */ 2305 public function test_update_meta_with_unchanged_values_and_custom_authentication() { 2306 register_post_meta( 2307 'post', 2308 'authenticated', 2309 array( 2310 'single' => true, 2311 'type' => 'boolean', 2312 'default' => false, 2313 'show_in_rest' => true, 2314 'auth_callback' => '__return_false', 2315 ) 2316 ); 2317 2318 add_post_meta( self::$post_id, 'authenticated', false ); 2319 2320 $this->grant_write_permission(); 2321 2322 $request = new WP_REST_Request( 'PUT', sprintf( '/wp/v2/posts/%d', self::$post_id ) ); 2323 $request->set_body_params( 2324 array( 2325 'meta' => array( 2326 'authenticated' => false, 2327 ), 2328 ) 2329 ); 2330 2331 $response = rest_get_server()->dispatch( $request ); 2332 $this->assertSame( 200, $response->get_status() ); 2333 2334 $data = $response->get_data(); 2335 $this->assertSame( false, $data['meta']['authenticated'] ); 2336 } 2337 2338 /** 2303 2339 * @ticket 43392 2304 2340 */
Note: See TracChangeset
for help on using the changeset viewer.