new api test method, using wordpress rest team form (https://github.com/WP-API/WP-API/blob/develop/tests/test-rest-posts-controller.php)
This commit is contained in:
parent
a867901849
commit
9da2c61044
|
@ -2,46 +2,81 @@
|
|||
|
||||
namespace Tainacan\Tests;
|
||||
|
||||
class TAINACAN_REST_Collections_Controller extends \WP_UnitTestCase {
|
||||
class TAINACAN_REST_Collections_Controller extends TAINACAN_UnitApiTestCase {
|
||||
|
||||
public function test_register_route() {
|
||||
$routes = $this->server->get_routes();
|
||||
$this->assertArrayHasKey($this->namespaced_route, $routes );
|
||||
}
|
||||
|
||||
public function test_endpoints() {
|
||||
$the_route = $this->namespaced_route;
|
||||
$routes = $this->server->get_routes();
|
||||
foreach( $routes as $route => $route_config ) {
|
||||
if( 0 === strpos( $the_route, $route ) ) {
|
||||
$this->assertTrue( is_array( $route_config ) );
|
||||
foreach( $route_config as $i => $endpoint ) {
|
||||
$this->assertArrayHasKey( 'callback', $endpoint );
|
||||
$this->assertArrayHasKey( 0, $endpoint[ 'callback' ], get_class( $this ) );
|
||||
$this->assertArrayHasKey( 1, $endpoint[ 'callback' ], get_class( $this ) );
|
||||
$this->assertTrue( is_callable( array( $endpoint[ 'callback' ][0], $endpoint[ 'callback' ][1] ) ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function test_create_and_fetch_collection_by_id(){
|
||||
|
||||
$collection_JSON = json_encode([
|
||||
'name' => 'Teste',
|
||||
'name' => 'TesteJsonAdd',
|
||||
'description' => 'Teste JSON',
|
||||
]);
|
||||
|
||||
$collection = wp_remote_post(TAINACAN_TESTS_URL . '/wp-json/tainacan/v2/collections/', array(
|
||||
'body' => $collection_JSON
|
||||
));
|
||||
$request = new \WP_REST_Request('POST', $this->namespaced_route.'/collections');
|
||||
//$request->set_param('name', 'TesteJsonAdd');
|
||||
//$request->set_param('description', 'Teste JSON');
|
||||
$request->set_body($collection_JSON);
|
||||
|
||||
$this->assertEquals(201, $collection['response']['code']);
|
||||
$response = $this->server->dispatch( $request );
|
||||
$this->assertEquals( 201, $response->get_status() );
|
||||
|
||||
$collection = json_decode(json_decode($collection['body'], true), true);
|
||||
$collection = json_decode($response->get_data());
|
||||
$id = $collection->id;
|
||||
|
||||
$id = $collection['id'];
|
||||
$requestGet = new \WP_REST_Request( 'GET', $this->namespaced_route.'/collections/'.$id );
|
||||
$responseGet = $this->server->dispatch( $requestGet );
|
||||
|
||||
$response = wp_remote_get(TAINACAN_TESTS_URL . '/wp-json/tainacan/v2/collections/'. $id);
|
||||
$this->assertEquals( 200, $responseGet->get_status() );
|
||||
|
||||
$this->assertEquals(200, $response['response']['code']);
|
||||
$data = json_decode($responseGet->get_data(), true);
|
||||
|
||||
$data = json_decode(json_decode($response['body'], true), true);
|
||||
$this->assertEquals('TesteJsonAdd', $data['name']);
|
||||
|
||||
$this->assertEquals('Teste', $data['name']);
|
||||
}
|
||||
|
||||
public function test_fetch_collections(){
|
||||
$response = wp_remote_get(TAINACAN_TESTS_URL . '/wp-json/tainacan/v2/collections/');
|
||||
$x = $this->tainacan_entity_factory->create_entity(
|
||||
'collection',
|
||||
array(
|
||||
'name' => 'testeApi',
|
||||
'description' => 'adasdasdsa',
|
||||
'default_order' => 'DESC',
|
||||
'status' => 'publish'
|
||||
),
|
||||
true
|
||||
);
|
||||
$request = new \WP_REST_Request( 'GET', $this->namespaced_route.'/collections' );
|
||||
$response = $this->server->dispatch( $request );
|
||||
$this->assertEquals( 200, $response->get_status() );
|
||||
|
||||
$this->assertEquals(200, $response['response']['code']);
|
||||
|
||||
$data = json_decode(json_decode($response['body'], true), true);
|
||||
$data = json_decode($response->get_data());
|
||||
//$data is a valid json?
|
||||
$this->assertTrue(json_last_error() === JSON_ERROR_NONE);
|
||||
|
||||
$this->assertContainsOnly('string', $data);
|
||||
|
||||
$one_collection = json_decode($data[0], true);
|
||||
|
||||
$this->assertEquals('Teste', $one_collection['name']);
|
||||
$this->assertEquals('testeApi', $one_collection['name']);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue