2017-11-27 14:32:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tainacan\Tests;
|
|
|
|
|
2017-12-04 18:46:56 +00:00
|
|
|
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] ) ) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-27 14:32:03 +00:00
|
|
|
|
2017-11-29 13:45:30 +00:00
|
|
|
public function test_create_and_fetch_collection_by_id(){
|
2017-11-27 14:32:03 +00:00
|
|
|
|
2017-11-29 13:45:30 +00:00
|
|
|
$collection_JSON = json_encode([
|
2017-12-04 18:46:56 +00:00
|
|
|
'name' => 'TesteJsonAdd',
|
2017-11-29 13:45:30 +00:00
|
|
|
'description' => 'Teste JSON',
|
2017-11-27 14:32:03 +00:00
|
|
|
]);
|
2017-11-29 19:11:30 +00:00
|
|
|
|
2017-12-04 18:46:56 +00:00
|
|
|
$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);
|
|
|
|
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$this->assertEquals( 201, $response->get_status() );
|
|
|
|
|
|
|
|
$collection = json_decode($response->get_data());
|
|
|
|
$id = $collection->id;
|
|
|
|
|
|
|
|
$requestGet = new \WP_REST_Request( 'GET', $this->namespaced_route.'/collections/'.$id );
|
|
|
|
$responseGet = $this->server->dispatch( $requestGet );
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $responseGet->get_status() );
|
|
|
|
|
|
|
|
$data = json_decode($responseGet->get_data(), true);
|
|
|
|
|
|
|
|
$this->assertEquals('TesteJsonAdd', $data['name']);
|
|
|
|
|
2017-11-27 14:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function test_fetch_collections(){
|
2017-12-04 18:46:56 +00:00
|
|
|
$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() );
|
|
|
|
|
|
|
|
$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('testeApi', $one_collection['name']);
|
2017-11-27 14:32:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|