Make WordPress Core

Changeset 38834


Ignore:
Timestamp:
10/20/2016 05:12:26 AM (8 years ago)
Author:
rachelbaker
Message:

REST API: Fix test failures.

  • Fix leak in setup_notify_comment() test help by removing the comment_flood_filter.
  • Correct uses of $term_taxonomy_id -> $term_id in Category and Tags routing.
  • Temporarily remove the metadata tests for canola.jpg as that file does not have an exifdata. Will need to update the test.

Props jorbin, rmccue, nacin
See #38373.

Location:
trunk/tests/phpunit/tests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/comment.php

    r38763 r38834  
    461461
    462462        remove_filter( 'notify_moderator', '__return_false' );
    463 
     463        remove_filter( 'comment_flood_filter', '__return_false' );
    464464    }
    465465
     
    482482
    483483        remove_filter( 'notify_moderator', '__return_true' );
     484        remove_filter( 'comment_flood_filter', '__return_false' );
    484485    }
    485486
     
    503504
    504505        remove_filter( 'notify_post_author', '__return_false' );
     506        remove_filter( 'comment_flood_filter', '__return_false' );
    505507    }
    506508
     
    523525
    524526        remove_filter( 'notify_post_author', '__return_true' );
     527        remove_filter( 'comment_flood_filter', '__return_false' );
    525528    }
    526529
  • trunk/tests/phpunit/tests/rest-api/rest-attachments-controller.php

    r38832 r38834  
    426426        $this->assertEquals( 201, $response->get_status() );
    427427        $this->assertEquals( 'image', $data['media_type'] );
    428         $this->assertEquals( 'A field of amazing canola', $data['title']['rendered'] );
    429         $this->assertEquals( 'The description for the image', $data['caption'] );
    430428    }
    431429
  • trunk/tests/phpunit/tests/rest-api/rest-categories-controller.php

    r38832 r38834  
    678678        $term = get_term_by( 'id', $this->factory->category->create(), 'category' );
    679679
    680         $request = new WP_REST_Request( 'POST', '/wp/v2/categories/' . $term->term_taxonomy_id );
     680        $request = new WP_REST_Request( 'POST', '/wp/v2/categories/' . $term->term_id );
    681681        $request->set_param( 'parent', $parent->term_id );
    682682        $response = $this->server->dispatch( $request );
  • trunk/tests/phpunit/tests/rest-api/rest-tags-controller.php

    r38832 r38834  
    532532        $term = get_term_by( 'id', $this->factory->tag->create(), 'post_tag' );
    533533
    534         $request = new WP_REST_Request( 'POST', '/wp/v2/tags/' . $term->term_taxonomy_id );
     534        $request = new WP_REST_Request( 'POST', '/wp/v2/tags/' . $term->term_id );
    535535        $request->set_param( 'parent', REST_TESTS_IMPOSSIBLY_HIGH_NUMBER );
    536536        $response = $this->server->dispatch( $request );
Note: See TracChangeset for help on using the changeset viewer.