Make WordPress Core


Ignore:
Timestamp:
05/22/2020 08:58:50 PM (6 years ago)
Author:
whyisjake
Message:

REST API: Ensure proper namespacing when registering routes.
The PR will corerce routes that have a leading slash and throwing a _doing_it_wrong notice while ensuring a proper namespace.

This brings the changes from [47842] to the 5.4 branch.

Fixes #49749.
Props TimothyBlynJacobs, skarabeq, afercia, skithund.

Location:
branches/5.4
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/5.4

  • branches/5.4/tests/phpunit/tests/rest-api.php

    r47563 r47843  
    955955    public function test_rest_parse_embed_param( $expected, $embed ) {
    956956        $this->assertEquals( $expected, rest_parse_embed_param( $embed ) );
     957    }
     958
     959    /**
     960     * @ticket 49749
     961     */
     962    public function test_register_route_with_invalid_namespace() {
     963        $this->setExpectedIncorrectUsage( 'register_rest_route' );
     964
     965        register_rest_route(
     966            '/my-namespace/v1/',
     967            '/my-route',
     968            array(
     969                'callback' => '__return_true',
     970            )
     971        );
     972
     973        $routes = rest_get_server()->get_routes( 'my-namespace/v1' );
     974        $this->assertCount( 2, $routes );
     975
     976        $this->assertTrue( rest_do_request( '/my-namespace/v1/my-route' )->get_data() );
    957977    }
    958978
Note: See TracChangeset for help on using the changeset viewer.