removed unsed tests. these were migrated to test facets
This commit is contained in:
parent
a330a52127
commit
626e1cce60
|
@ -404,128 +404,6 @@ class TAINACAN_REST_Metadata_Controller extends TAINACAN_UnitApiTestCase {
|
||||||
$this->assertEquals('No name', $data['name']);
|
$this->assertEquals('No name', $data['name']);
|
||||||
}
|
}
|
||||||
|
|
||||||
// public function test_fetch_all_metadatum_values(){
|
|
||||||
// $Tainacan_Item_Metadata = \Tainacan\Repositories\Item_Metadata::get_instance();
|
|
||||||
//
|
|
||||||
// $collection = $this->tainacan_entity_factory->create_entity(
|
|
||||||
// 'collection',
|
|
||||||
// array(
|
|
||||||
// 'name' => 'Statement',
|
|
||||||
// 'description' => 'No Statement',
|
|
||||||
// 'status' => 'publish'
|
|
||||||
// ),
|
|
||||||
// true
|
|
||||||
// );
|
|
||||||
//
|
|
||||||
// $item1 = $this->tainacan_entity_factory->create_entity(
|
|
||||||
// 'item',
|
|
||||||
// array(
|
|
||||||
// 'title' => 'No name1',
|
|
||||||
// 'description' => 'No description1',
|
|
||||||
// 'status' => 'publish',
|
|
||||||
// 'collection' => $collection
|
|
||||||
// ),
|
|
||||||
// true
|
|
||||||
// );
|
|
||||||
//
|
|
||||||
// $item2 = $this->tainacan_entity_factory->create_entity(
|
|
||||||
// 'item',
|
|
||||||
// array(
|
|
||||||
// 'title' => 'No name2',
|
|
||||||
// 'description' => 'No description2',
|
|
||||||
// 'status' => 'private',
|
|
||||||
// 'collection' => $collection
|
|
||||||
// ),
|
|
||||||
// true
|
|
||||||
// );
|
|
||||||
//
|
|
||||||
// $item3 = $this->tainacan_entity_factory->create_entity(
|
|
||||||
// 'item',
|
|
||||||
// array(
|
|
||||||
// 'title' => 'No name3',
|
|
||||||
// 'description' => 'No description3',
|
|
||||||
// 'status' => 'private',
|
|
||||||
// 'collection' => $collection
|
|
||||||
// ),
|
|
||||||
// true
|
|
||||||
// );
|
|
||||||
//
|
|
||||||
// $metadatum = $this->tainacan_entity_factory->create_entity(
|
|
||||||
// 'metadatum',
|
|
||||||
// array(
|
|
||||||
// 'name' => 'Data',
|
|
||||||
// 'description' => 'Descreve valor do campo data.',
|
|
||||||
// 'collection' => $collection,
|
|
||||||
// 'status' => 'publish',
|
|
||||||
// 'metadata_type' => 'Tainacan\Metadata_Types\Text',
|
|
||||||
// ),
|
|
||||||
// true
|
|
||||||
// );
|
|
||||||
//
|
|
||||||
// $item_metadata1 = new \Tainacan\Entities\Item_Metadata_Entity($item1, $metadatum);
|
|
||||||
// $item_metadata1->set_value('12/12/2017');
|
|
||||||
//
|
|
||||||
// $item_metadata1->validate();
|
|
||||||
// $Tainacan_Item_Metadata->insert($item_metadata1);
|
|
||||||
//
|
|
||||||
// $item_metadata2 = new \Tainacan\Entities\Item_Metadata_Entity($item2, $metadatum);
|
|
||||||
// $item_metadata2->set_value('02/03/2018');
|
|
||||||
//
|
|
||||||
// $item_metadata2->validate();
|
|
||||||
// $Tainacan_Item_Metadata->insert($item_metadata2);
|
|
||||||
//
|
|
||||||
// // Is repeated for test return of duplicates
|
|
||||||
// $item_metadata3 = new \Tainacan\Entities\Item_Metadata_Entity($item3, $metadatum);
|
|
||||||
// $item_metadata3->set_value('12/12/2017');
|
|
||||||
//
|
|
||||||
// $item_metadata3->validate();
|
|
||||||
// $Tainacan_Item_Metadata->insert($item_metadata3);
|
|
||||||
//
|
|
||||||
// //=======================
|
|
||||||
//
|
|
||||||
// $request = new \WP_REST_Request(
|
|
||||||
// 'GET',
|
|
||||||
// $this->namespace . '/collection/' . $collection->get_id() . '/facets/' . $metadatum->get_id()
|
|
||||||
// );
|
|
||||||
//
|
|
||||||
// //=======================
|
|
||||||
//
|
|
||||||
// // Set no one user
|
|
||||||
// wp_set_current_user(0);
|
|
||||||
//
|
|
||||||
// $response1 = $this->server->dispatch($request);
|
|
||||||
//
|
|
||||||
// $data1 = $response1->get_data();
|
|
||||||
//
|
|
||||||
// $this->assertCount(1, $data1);
|
|
||||||
// $this->assertEquals('12/12/2017', $data1[0]['value']);
|
|
||||||
//
|
|
||||||
// //=======================
|
|
||||||
//
|
|
||||||
// $new_user1 = $this->factory()->user->create(array( 'role' => 'subscriber' ));
|
|
||||||
// wp_set_current_user($new_user1);
|
|
||||||
//
|
|
||||||
// $response1 = $this->server->dispatch($request);
|
|
||||||
//
|
|
||||||
// $data1 = $response1->get_data();
|
|
||||||
//
|
|
||||||
// $this->assertCount(1, $data1);
|
|
||||||
// $this->assertEquals('12/12/2017', $data1[0]['value']);
|
|
||||||
//
|
|
||||||
// //=======================
|
|
||||||
//
|
|
||||||
// $new_user2 = $this->factory()->user->create(array( 'role' => 'administrator' ));
|
|
||||||
// wp_set_current_user($new_user2);
|
|
||||||
//
|
|
||||||
// $response2 = $this->server->dispatch($request);
|
|
||||||
//
|
|
||||||
// $data2 = $response2->get_data();
|
|
||||||
//
|
|
||||||
// // Only two without duplicates
|
|
||||||
// //$this->assertCount(2, $data2);
|
|
||||||
// //$this->assertEquals('12/12/2017', $data2[0]['value']);
|
|
||||||
// //$this->assertEquals('02/03/2018', $data2[1]['value']);
|
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
Loading…
Reference in New Issue