@@ -63,6 +63,17 @@ static function ( array $properties ): array {
63
63
* @covers ::od_handle_rest_request
64
64
*/
65
65
public function test_rest_request_good_params ( Closure $ set_up ): void {
66
+ add_action (
67
+ 'od_url_metric_stored ' ,
68
+ function ( OD_URL_Metric_Stored_Context $ context ): void {
69
+ $ this ->assertInstanceOf ( OD_URL_Metric_Group_Collection::class, $ context ->url_metric_group_collection );
70
+ $ this ->assertInstanceOf ( OD_URL_Metric_Group::class, $ context ->url_metric_group );
71
+ $ this ->assertInstanceOf ( OD_URL_Metric::class, $ context ->url_metric );
72
+ $ this ->assertInstanceOf ( WP_REST_Request::class, $ context ->request );
73
+ $ this ->assertIsInt ( $ context ->post_id );
74
+ }
75
+ );
76
+
66
77
$ valid_params = $ set_up ();
67
78
$ this ->assertCount ( 0 , get_posts ( array ( 'post_type ' => OD_URL_Metrics_Post_Type::SLUG ) ) );
68
79
$ request = $ this ->create_request ( $ valid_params );
@@ -87,6 +98,7 @@ public function test_rest_request_good_params( Closure $set_up ): void {
87
98
$ expected_data ,
88
99
wp_array_slice_assoc ( $ url_metrics [0 ]->jsonSerialize (), array_keys ( $ expected_data ) )
89
100
);
101
+ $ this ->assertSame ( 1 , did_action ( 'od_url_metric_stored ' ) );
90
102
}
91
103
92
104
/**
@@ -225,6 +237,7 @@ public function test_rest_request_bad_params( array $params ): void {
225
237
$ this ->assertSame ( 'rest_invalid_param ' , $ response ->get_data ()['code ' ], 'Response: ' . wp_json_encode ( $ response ) );
226
238
227
239
$ this ->assertNull ( OD_URL_Metrics_Post_Type::get_post ( $ params ['slug ' ] ) );
240
+ $ this ->assertSame ( 0 , did_action ( 'od_url_metric_stored ' ) );
228
241
}
229
242
230
243
/**
@@ -239,6 +252,7 @@ public function test_rest_request_not_json_data(): void {
239
252
$ response = rest_get_server ()->dispatch ( $ request );
240
253
$ this ->assertSame ( 400 , $ response ->get_status (), 'Response: ' . wp_json_encode ( $ response ) );
241
254
$ this ->assertSame ( 'missing_array_json_body ' , $ response ->get_data ()['code ' ], 'Response: ' . wp_json_encode ( $ response ) );
255
+ $ this ->assertSame ( 0 , did_action ( 'od_url_metric_stored ' ) );
242
256
}
243
257
244
258
/**
@@ -254,6 +268,7 @@ public function test_rest_request_not_json_content_type(): void {
254
268
$ response = rest_get_server ()->dispatch ( $ request );
255
269
$ this ->assertSame ( 400 , $ response ->get_status (), 'Response: ' . wp_json_encode ( $ response ) );
256
270
$ this ->assertSame ( 'rest_missing_callback_param ' , $ response ->get_data ()['code ' ], 'Response: ' . wp_json_encode ( $ response ) );
271
+ $ this ->assertSame ( 0 , did_action ( 'od_url_metric_stored ' ) );
257
272
}
258
273
259
274
/**
@@ -269,6 +284,7 @@ public function test_rest_request_empty_array_json_body(): void {
269
284
$ response = rest_get_server ()->dispatch ( $ request );
270
285
$ this ->assertSame ( 400 , $ response ->get_status (), 'Response: ' . wp_json_encode ( $ response ) );
271
286
$ this ->assertSame ( 'rest_missing_callback_param ' , $ response ->get_data ()['code ' ], 'Response: ' . wp_json_encode ( $ response ) );
287
+ $ this ->assertSame ( 0 , did_action ( 'od_url_metric_stored ' ) );
272
288
}
273
289
274
290
/**
@@ -284,6 +300,7 @@ public function test_rest_request_non_array_json_body(): void {
284
300
$ response = rest_get_server ()->dispatch ( $ request );
285
301
$ this ->assertSame ( 400 , $ response ->get_status (), 'Response: ' . wp_json_encode ( $ response ) );
286
302
$ this ->assertSame ( 'rest_missing_callback_param ' , $ response ->get_data ()['code ' ], 'Response: ' . wp_json_encode ( $ response ) );
303
+ $ this ->assertSame ( 0 , did_action ( 'od_url_metric_stored ' ) );
287
304
}
288
305
289
306
/**
0 commit comments