woocommerce/tests/legacy/framework/vendor/class-wp-test-spy-rest-serv...

43 lines
962 B
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* @version 2.0-beta13.1
*/
class WP_Test_Spy_REST_Server extends WP_REST_Server {
/**
* Get the raw $endpoints data from the server
*
* @return array
*/
public function get_raw_endpoint_data() {
return $this->endpoints;
}
/**
* Allow calling protected methods from tests
*
* @param string $method Method to call
* @param array $args Arguments to pass to the method
* @return mixed
*/
public function __call( $method, $args ) {
return call_user_func_array( array( $this, $method ), $args );
}
/**
* Call dispatch() with the rest_post_dispatch filter
*/
public function dispatch( $request ) {
$result = parent::dispatch( $request );
$result = rest_ensure_response( $result );
if ( is_wp_error( $result ) ) {
$result = $this->error_to_response( $result );
}
return apply_filters( 'rest_post_dispatch', rest_ensure_response( $result ), $this, $request );
}
}