183 lines
3.9 KiB
PHP
183 lines
3.9 KiB
PHP
<?php
|
|
|
|
namespace Tainacan\Tests;
|
|
|
|
/**
|
|
* @group api
|
|
*/
|
|
class TAINACAN_REST_Terms extends TAINACAN_UnitApiTestCase {
|
|
|
|
public function test_create_term(){
|
|
$taxonomy = $this->tainacan_entity_factory->create_entity(
|
|
'taxonomy',
|
|
array(
|
|
'name' => '1genero',
|
|
'description' => 'tipos de musica',
|
|
'allow_insert' => 'yes',
|
|
'status' => 'publish'
|
|
),
|
|
true
|
|
);
|
|
|
|
$request = new \WP_REST_Request(
|
|
'POST', $this->namespace . '/taxonomy/' . $taxonomy->get_id() . '/terms'
|
|
);
|
|
|
|
$term = json_encode([
|
|
'name' => 'Termo teste',
|
|
'user' => get_current_user_id()
|
|
]);
|
|
|
|
$request->set_body($term);
|
|
|
|
$response = $this->server->dispatch($request);
|
|
|
|
$data = $response->get_data();
|
|
|
|
$this->assertEquals('Termo teste', $data['name']);
|
|
$this->assertEquals($taxonomy->get_db_identifier(), $data['taxonomy']);
|
|
}
|
|
|
|
public function test_delete(){
|
|
|
|
$taxonomy = $this->tainacan_entity_factory->create_entity(
|
|
'taxonomy',
|
|
array(
|
|
'name' => '1genero',
|
|
'description' => 'tipos de musica',
|
|
'allow_insert' => 'yes',
|
|
'status' => 'publish'
|
|
),
|
|
true
|
|
);
|
|
|
|
$term = $this->tainacan_entity_factory->create_entity(
|
|
'term',
|
|
array(
|
|
'taxonomy' => $taxonomy->get_db_identifier(),
|
|
'name' => 'Rock',
|
|
'user' => get_current_user_id(),
|
|
),
|
|
true
|
|
);
|
|
|
|
$request = new \WP_REST_Request('DELETE', $this->namespace . '/taxonomy/' . $taxonomy->get_id() . '/terms/' . $term);
|
|
|
|
$response = $this->server->dispatch($request);
|
|
|
|
$data = $response->get_data();
|
|
|
|
$this->assertTrue($data);
|
|
|
|
$term = get_term($term);
|
|
|
|
$this->assertNull($term);
|
|
}
|
|
|
|
public function test_update_term(){
|
|
$taxonomy = $this->tainacan_entity_factory->create_entity(
|
|
'taxonomy',
|
|
array(
|
|
'name' => '1genero',
|
|
'description' => 'tipos de musica',
|
|
'allow_insert' => 'yes',
|
|
'status' => 'publish'
|
|
),
|
|
true
|
|
);
|
|
|
|
$term = $this->tainacan_entity_factory->create_entity(
|
|
'term',
|
|
array(
|
|
'taxonomy' => $taxonomy->get_db_identifier(),
|
|
'name' => 'Rock',
|
|
'user' => get_current_user_id(),
|
|
),
|
|
true
|
|
);
|
|
|
|
$new_attributes = json_encode([
|
|
'name' => 'Trap'
|
|
]);
|
|
|
|
$request = new \WP_REST_Request(
|
|
'PATCH', $this->namespace . '/taxonomy/' . $taxonomy->get_id() . '/terms/' . $term
|
|
);
|
|
|
|
$request->set_body($new_attributes);
|
|
|
|
$response = $this->server->dispatch($request);
|
|
|
|
$data = $response->get_data();
|
|
|
|
$this->assertNotEquals('Rock', $data['name']);
|
|
$this->assertEquals('Trap', $data['name']);
|
|
|
|
$this->assertEquals($taxonomy->get_db_identifier(), $data['taxonomy']);
|
|
}
|
|
|
|
public function test_fetch_terms(){
|
|
$taxonomy = $this->tainacan_entity_factory->create_entity(
|
|
'taxonomy',
|
|
array(
|
|
'name' => 'Gender',
|
|
'description' => 'Music types',
|
|
'allow_insert' => 'yes',
|
|
'status' => 'publish'
|
|
),
|
|
true
|
|
);
|
|
|
|
$this->tainacan_entity_factory->create_entity(
|
|
'term',
|
|
array(
|
|
'taxonomy' => $taxonomy->get_db_identifier(),
|
|
'name' => 'Rock',
|
|
'user' => get_current_user_id(),
|
|
),
|
|
true
|
|
);
|
|
|
|
$term2 = $this->tainacan_entity_factory->create_entity(
|
|
'term',
|
|
array(
|
|
'taxonomy' => $taxonomy->get_db_identifier(),
|
|
'name' => 'Trap',
|
|
'user' => get_current_user_id(),
|
|
),
|
|
true
|
|
);
|
|
|
|
$request = new \WP_REST_Request(
|
|
'GET', $this->namespace . '/taxonomy/' . $taxonomy->get_id() . '/terms'
|
|
);
|
|
|
|
$request->set_query_params([
|
|
'hide_empty' => false
|
|
]);
|
|
|
|
$response = $this->server->dispatch($request);
|
|
|
|
$data = $response->get_data();
|
|
|
|
$termA = $data[0];
|
|
$termB = $data[1];
|
|
|
|
$this->assertEquals('Trap', $termB['name']);
|
|
$this->assertEquals('Rock', $termA['name']);
|
|
|
|
#### FETCH A TERM ####
|
|
|
|
$request = new \WP_REST_Request(
|
|
'GET', $this->namespace . '/taxonomy/' . $taxonomy->get_id() . '/terms/' . $term2
|
|
);
|
|
|
|
$response = $this->server->dispatch($request);
|
|
|
|
$data = $response->get_data();
|
|
|
|
$this->assertEquals('Trap', $data['name']);
|
|
}
|
|
}
|
|
|
|
?>
|