Changeset 39563 for trunk/tests/phpunit/tests/rest-api/rest-request.php
- Timestamp:
- 12/11/2016 09:25:40 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/phpunit/tests/rest-api/rest-request.php
r39109 r39563 341 341 $this->assertWPError( $valid ); 342 342 $this->assertEquals( 'rest_invalid_param', $valid->get_error_code() ); 343 } 344 345 public function test_sanitize_params_with_null_callback() { 346 $this->request->set_url_params( array( 347 'some_email' => '', 348 ) ); 349 350 $this->request->set_attributes( array( 351 'args' => array( 352 'some_email' => array( 353 'type' => 'string', 354 'format' => 'email', 355 'sanitize_callback' => null, 356 ), 357 ), 358 ) ); 359 360 $this->assertTrue( $this->request->sanitize_params() ); 361 } 362 363 public function test_sanitize_params_with_false_callback() { 364 $this->request->set_url_params( array( 365 'some_uri' => 1.23422, 366 ) ); 367 368 $this->request->set_attributes( array( 369 'args' => array( 370 'some_uri' => array( 371 'type' => 'string', 372 'format' => 'uri', 373 'sanitize_callback' => false, 374 ), 375 ), 376 ) ); 377 378 $this->assertTrue( $this->request->sanitize_params() ); 343 379 } 344 380
Note: See TracChangeset
for help on using the changeset viewer.