@@ -12,9 +12,13 @@ class Test_OD_REST_API extends WP_UnitTestCase {
12
12
use Optimization_Detective_Test_Helpers;
13
13
14
14
/**
15
- * @var string
15
+ * Gets the route.
16
+ *
17
+ * @return string Route.
16
18
*/
17
- const ROUTE = '/ ' . OD_Rest_API::OD_REST_API_NAMESPACE . OD_Rest_API::OD_URL_METRICS_ROUTE ;
19
+ private function get_route (): string {
20
+ return '/ ' . OD_Rest_API::get_namespace () . OD_Rest_API::get_route ();
21
+ }
18
22
19
23
/**
20
24
* Test add_hooks().
@@ -518,7 +522,7 @@ public function test_rest_request_bad_params( array $params, int $expected_statu
518
522
* @covers OD_Rest_API::od_is_allowed_http_origin
519
523
*/
520
524
public function test_rest_request_without_origin (): void {
521
- $ request = new WP_REST_Request ( 'POST ' , self :: ROUTE );
525
+ $ request = new WP_REST_Request ( 'POST ' , $ this -> get_route () );
522
526
$ request ->set_body_params ( $ this ->get_valid_params () ); // Valid and yet set as POST params and not as JSON body, so this is why it fails.
523
527
$ response = rest_get_server ()->dispatch ( $ request );
524
528
$ this ->assertSame ( 403 , $ response ->get_status (), 'Response: ' . wp_json_encode ( $ response ) );
@@ -534,7 +538,7 @@ public function test_rest_request_without_origin(): void {
534
538
* @covers OD_Rest_API::od_is_allowed_http_origin
535
539
*/
536
540
public function test_rest_request_cross_origin (): void {
537
- $ request = new WP_REST_Request ( 'POST ' , self :: ROUTE );
541
+ $ request = new WP_REST_Request ( 'POST ' , $ this -> get_route () );
538
542
$ request ->set_header ( 'Origin ' , 'https://cross-origin.example.com ' );
539
543
$ request ->set_body_params ( $ this ->get_valid_params () ); // Valid and yet set as POST params and not as JSON body, so this is why it fails.
540
544
$ response = rest_get_server ()->dispatch ( $ request );
@@ -569,7 +573,7 @@ static function ( string $url ): string {
569
573
* @covers OD_Rest_API::od_handle_rest_request
570
574
*/
571
575
public function test_rest_request_not_json_data (): void {
572
- $ request = new WP_REST_Request ( 'POST ' , self :: ROUTE );
576
+ $ request = new WP_REST_Request ( 'POST ' , $ this -> get_route () );
573
577
$ request ->set_header ( 'Origin ' , home_url () );
574
578
$ request ->set_body_params ( $ this ->get_valid_params () ); // Valid and yet set as POST params and not as JSON body, so this is why it fails.
575
579
$ response = rest_get_server ()->dispatch ( $ request );
@@ -585,7 +589,7 @@ public function test_rest_request_not_json_data(): void {
585
589
* @covers OD_Rest_API::od_handle_rest_request
586
590
*/
587
591
public function test_rest_request_not_json_content_type (): void {
588
- $ request = new WP_REST_Request ( 'POST ' , self :: ROUTE );
592
+ $ request = new WP_REST_Request ( 'POST ' , $ this -> get_route () );
589
593
$ request ->set_body ( wp_json_encode ( $ this ->get_valid_params () ) );
590
594
$ request ->set_header ( 'Content-Type ' , 'text/plain ' );
591
595
$ response = rest_get_server ()->dispatch ( $ request );
@@ -601,7 +605,7 @@ public function test_rest_request_not_json_content_type(): void {
601
605
* @covers OD_Rest_API::od_handle_rest_request
602
606
*/
603
607
public function test_rest_request_empty_array_json_body (): void {
604
- $ request = new WP_REST_Request ( 'POST ' , self :: ROUTE );
608
+ $ request = new WP_REST_Request ( 'POST ' , $ this -> get_route () );
605
609
$ request ->set_body ( '[] ' );
606
610
$ request ->set_header ( 'Content-Type ' , 'application/json ' );
607
611
$ response = rest_get_server ()->dispatch ( $ request );
@@ -617,7 +621,7 @@ public function test_rest_request_empty_array_json_body(): void {
617
621
* @covers OD_Rest_API::od_handle_rest_request
618
622
*/
619
623
public function test_rest_request_non_array_json_body (): void {
620
- $ request = new WP_REST_Request ( 'POST ' , self :: ROUTE );
624
+ $ request = new WP_REST_Request ( 'POST ' , $ this -> get_route () );
621
625
$ request ->set_body ( '"Hello World!" ' );
622
626
$ request ->set_header ( 'Content-Type ' , 'application/json ' );
623
627
$ response = rest_get_server ()->dispatch ( $ request );
@@ -973,7 +977,7 @@ private function create_request( array $params ): WP_REST_Request {
973
977
*
974
978
* @var WP_REST_Request<array<string, mixed>> $request
975
979
*/
976
- $ request = new WP_REST_Request ( 'POST ' , self :: ROUTE );
980
+ $ request = new WP_REST_Request ( 'POST ' , $ this -> get_route () );
977
981
$ request ->set_header ( 'Content-Type ' , 'application/json ' );
978
982
$ request ->set_query_params ( wp_array_slice_assoc ( $ params , array ( 'hmac ' , 'current_etag ' , 'slug ' , 'cache_purge_post_id ' ) ) );
979
983
$ request ->set_header ( 'Origin ' , home_url () );
0 commit comments