2022-05-03 18:46:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tainacan\Tests;
|
|
|
|
use Tainacan\Metadata_Types;
|
|
|
|
/**
|
|
|
|
* Class Metadatum
|
|
|
|
*
|
|
|
|
* @package Test_Tainacan
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2022-08-03 18:19:16 +00:00
|
|
|
* MetadataSection test case.
|
2022-05-03 18:46:23 +00:00
|
|
|
* @group metadata
|
|
|
|
*/
|
|
|
|
class MetadataSection extends TAINACAN_UnitTestCase {
|
|
|
|
|
|
|
|
/**
|
2022-08-03 18:19:16 +00:00
|
|
|
* Test create a metadata section
|
2022-05-03 18:46:23 +00:00
|
|
|
*/
|
2022-08-03 18:19:16 +00:00
|
|
|
function test_create() {
|
2022-05-03 18:46:23 +00:00
|
|
|
$Tainacan_Metadata = \Tainacan\Repositories\Metadata::get_instance();
|
|
|
|
$Tainacan_Metadata_Section = \Tainacan\Repositories\Metadata_Sections::get_instance();
|
|
|
|
|
|
|
|
$collection = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'collection',
|
|
|
|
array(
|
|
|
|
'name' => 'teste'
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadata_section = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'Metadata_Section',
|
|
|
|
array(
|
|
|
|
'name' => 'Section',
|
|
|
|
'description' => 'Section Description',
|
|
|
|
'collection' => $collection,
|
|
|
|
'status' => 'publish'
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadatum = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'metadatum',
|
|
|
|
array(
|
|
|
|
'name' => 'metadado',
|
|
|
|
'description' => 'descricao',
|
|
|
|
'collection' => $collection,
|
|
|
|
'accept_suggestion' => true,
|
|
|
|
'metadata_type' => 'Tainacan\Metadata_Types\Text',
|
|
|
|
'metadata_section_id' => $metadata_section->get_id(),
|
|
|
|
),
|
2022-05-12 04:31:17 +00:00
|
|
|
true,
|
2022-05-03 18:46:23 +00:00
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$test = $Tainacan_Metadata->fetch($metadatum->get_id());
|
2022-08-03 18:19:16 +00:00
|
|
|
$Tainacan_Metadata_Section->fetch($metadata_section->get_id());
|
2022-05-03 18:46:23 +00:00
|
|
|
|
|
|
|
$this->assertEquals($test->get_name(), 'metadado');
|
|
|
|
$this->assertEquals($test->get_description(), 'descricao');
|
|
|
|
$this->assertEquals($test->get_collection_id(), $collection->get_id());
|
|
|
|
$this->assertEquals($test->get_metadata_section_id(), $metadata_section->get_id());
|
|
|
|
|
2022-05-12 04:31:17 +00:00
|
|
|
$metadata_list = $metadata_section->get_metadata_object_list();
|
2022-05-03 18:46:23 +00:00
|
|
|
$this->assertEquals(count($metadata_list), 1);
|
2022-05-12 04:31:17 +00:00
|
|
|
$this->assertEquals($test->get_id(), $metadata_list[0]->get_id());
|
2022-05-03 18:46:23 +00:00
|
|
|
|
|
|
|
$this->assertTrue((bool) $test->get_accept_suggestion());
|
|
|
|
}
|
|
|
|
|
2022-08-03 18:19:16 +00:00
|
|
|
/**
|
|
|
|
* Test remove a metadata section
|
|
|
|
*/
|
|
|
|
function test_remove() {
|
|
|
|
$Tainacan_Metadata_Section = \Tainacan\Repositories\Metadata_Sections::get_instance();
|
|
|
|
|
|
|
|
$collection = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'collection',
|
|
|
|
array(
|
|
|
|
'name' => 'teste'
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadata_section_to_delete = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'Metadata_Section',
|
|
|
|
array(
|
|
|
|
'name' => 'Section',
|
|
|
|
'description' => 'Section Description',
|
|
|
|
'collection' => $collection,
|
|
|
|
'status' => 'publish'
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadata_section_no_delete = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'Metadata_Section',
|
|
|
|
array(
|
|
|
|
'name' => 'Section',
|
|
|
|
'description' => 'Section Description',
|
|
|
|
'collection' => $collection,
|
|
|
|
'status' => 'publish'
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->tainacan_entity_factory->create_entity(
|
|
|
|
'metadatum',
|
|
|
|
array(
|
|
|
|
'name' => 'metadado',
|
|
|
|
'description' => 'descricao',
|
|
|
|
'collection' => $collection,
|
|
|
|
'accept_suggestion' => true,
|
|
|
|
'metadata_type' => 'Tainacan\Metadata_Types\Text',
|
|
|
|
'metadata_section_id' => $metadata_section_no_delete->get_id(),
|
|
|
|
),
|
|
|
|
true,
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
// $Tainacan_Metadata->fetch($metadatum->get_id());
|
|
|
|
$section_id = $metadata_section_to_delete->get_id();
|
|
|
|
$section = $Tainacan_Metadata_Section->fetch($section_id);
|
|
|
|
$section = $Tainacan_Metadata_Section->delete($section);
|
|
|
|
$section_empty = $Tainacan_Metadata_Section->fetch($section_id);
|
|
|
|
$this->assertEquals($section_id, $section->get_id() );
|
|
|
|
$this->assertTrue(empty($section_empty));
|
|
|
|
|
|
|
|
$this->setExpectedException(\Exception::class);
|
2022-08-03 19:21:58 +00:00
|
|
|
$this->expectExceptionMessage('The metadata section must not contain metadata before deleted');
|
2022-08-03 18:19:16 +00:00
|
|
|
$section = $Tainacan_Metadata_Section->fetch($metadata_section_no_delete->get_id());
|
|
|
|
$Tainacan_Metadata_Section->delete($section);
|
|
|
|
|
|
|
|
}
|
2022-05-03 18:46:23 +00:00
|
|
|
|
2022-05-05 19:28:35 +00:00
|
|
|
function test_change_section() {
|
|
|
|
$Tainacan_Metadata = \Tainacan\Repositories\Metadata::get_instance();
|
|
|
|
$Tainacan_Metadata_Section = \Tainacan\Repositories\Metadata_Sections::get_instance();
|
|
|
|
|
|
|
|
$collection = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'collection',
|
|
|
|
array(
|
|
|
|
'name' => 'teste'
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadata_section_a = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'Metadata_Section',
|
|
|
|
array(
|
|
|
|
'name' => 'Section A',
|
|
|
|
'description' => 'Section Description',
|
|
|
|
'collection' => $collection,
|
|
|
|
'status' => 'publish'
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadata_section_b = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'Metadata_Section',
|
|
|
|
array(
|
|
|
|
'name' => 'Section B',
|
|
|
|
'description' => 'Section Description',
|
|
|
|
'collection' => $collection,
|
|
|
|
'status' => 'publish'
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadatum = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'metadatum',
|
|
|
|
array(
|
|
|
|
'name' => 'metadado',
|
|
|
|
'description' => 'descricao',
|
|
|
|
'collection' => $collection,
|
2022-05-12 04:31:17 +00:00
|
|
|
'status' => 'publish',
|
2022-05-05 19:28:35 +00:00
|
|
|
'metadata_type' => 'Tainacan\Metadata_Types\Text',
|
|
|
|
'metadata_section_id' => $metadata_section_a->get_id(),
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$test = $Tainacan_Metadata->fetch($metadatum->get_id());
|
|
|
|
|
|
|
|
$section_a = $Tainacan_Metadata_Section->fetch($metadata_section_a->get_id());
|
|
|
|
$section_b = $Tainacan_Metadata_Section->fetch($metadata_section_b->get_id());
|
|
|
|
|
2022-05-12 04:31:17 +00:00
|
|
|
$metadata_list_a = $section_a->get_metadata_object_list();
|
|
|
|
$metadata_list_b = $section_b->get_metadata_object_list();
|
|
|
|
$metadata_list_a = array_map(function($e) {
|
|
|
|
return $e->_toArray();
|
|
|
|
}, $metadata_list_a);
|
|
|
|
$metadata_list_b = array_map(function($e) {
|
|
|
|
return $e->_toArray();
|
|
|
|
}, $metadata_list_b);
|
|
|
|
|
|
|
|
$this->assertContains($test->get_id(), array_column($metadata_list_a, 'id'));
|
|
|
|
$this->assertNotContains($test->get_id(), array_column($metadata_list_b, 'id'));
|
2022-05-05 19:28:35 +00:00
|
|
|
|
|
|
|
$test->set_metadata_section_id($metadata_section_b->get_id());
|
|
|
|
$this->assertTrue($test->validate(), json_encode($test->get_errors()));
|
|
|
|
$Tainacan_Metadata->update($test);
|
|
|
|
|
|
|
|
$test = $Tainacan_Metadata->fetch($metadatum->get_id());
|
|
|
|
|
2022-05-12 04:31:17 +00:00
|
|
|
$metadata_list_a = $section_a->get_metadata_object_list();
|
|
|
|
$metadata_list_b = $section_b->get_metadata_object_list();
|
|
|
|
$metadata_list_a = array_map(function($e) {
|
|
|
|
return $e->_toArray();
|
|
|
|
}, $metadata_list_a);
|
|
|
|
$metadata_list_b = array_map(function($e) {
|
|
|
|
return $e->_toArray();
|
|
|
|
}, $metadata_list_b);
|
|
|
|
|
|
|
|
$this->assertNotContains($test->get_id(), array_column($metadata_list_a, 'id'));
|
|
|
|
$this->assertContains($test->get_id(), array_column($metadata_list_b, 'id'));
|
2022-05-05 19:28:35 +00:00
|
|
|
|
|
|
|
}
|
2022-05-03 18:46:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
function test_ordenation_metadata(){
|
|
|
|
$Tainacan_Collections = \Tainacan\Repositories\Collections::get_instance();
|
|
|
|
$Tainacan_Metadata = \Tainacan\Repositories\Metadata::get_instance();
|
|
|
|
|
|
|
|
$collection = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'collection',
|
|
|
|
array(
|
|
|
|
'name' => 'teste'
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
2022-05-12 04:31:17 +00:00
|
|
|
$metadata_section_1 = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'Metadata_Section',
|
|
|
|
array(
|
|
|
|
'name' => 'Section 1',
|
|
|
|
'description' => 'Section 1 Description',
|
|
|
|
'collection' => $collection,
|
|
|
|
'status' => 'publish',
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadata_section_a = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'Metadata_Section',
|
|
|
|
array(
|
|
|
|
'name' => 'Section A',
|
|
|
|
'description' => 'Section A Description',
|
|
|
|
'collection' => $collection,
|
|
|
|
'status' => 'publish',
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
2022-05-03 18:46:23 +00:00
|
|
|
$metadatum1 = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'metadatum',
|
|
|
|
array(
|
|
|
|
'name' => 'metadatum1',
|
|
|
|
'description' => 'descricao',
|
|
|
|
'collection' => $collection,
|
|
|
|
'metadata_type' => 'Tainacan\Metadata_Types\Text',
|
2022-05-12 04:31:17 +00:00
|
|
|
'status' => 'publish',
|
|
|
|
'metadata_section_id' => $metadata_section_1->get_id()
|
2022-05-03 18:46:23 +00:00
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadatum2 = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'metadatum',
|
|
|
|
array(
|
|
|
|
'name' => 'metadatum2',
|
|
|
|
'description' => 'metadatum2',
|
|
|
|
'collection' => $collection,
|
|
|
|
'metadata_type' => 'Tainacan\Metadata_Types\Text',
|
2022-05-12 04:31:17 +00:00
|
|
|
'status' => 'publish',
|
|
|
|
'metadata_section_id' => $metadata_section_1->get_id()
|
2022-05-03 18:46:23 +00:00
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadatum3 = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'metadatum',
|
|
|
|
array(
|
|
|
|
'name' => 'metadatum3',
|
|
|
|
'description' => 'metadatum3',
|
|
|
|
'collection' => $collection,
|
|
|
|
'metadata_type' => 'Tainacan\Metadata_Types\Text',
|
2022-05-12 04:31:17 +00:00
|
|
|
'status' => 'publish',
|
|
|
|
'metadata_section_id' => $metadata_section_1->get_id()
|
2022-05-03 18:46:23 +00:00
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadatum_a = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'metadatum',
|
|
|
|
array(
|
|
|
|
'name' => 'metadatum_a',
|
|
|
|
'description' => 'descricao_a',
|
|
|
|
'collection' => $collection,
|
|
|
|
'metadata_type' => 'Tainacan\Metadata_Types\Text',
|
2022-05-12 04:31:17 +00:00
|
|
|
'status' => 'publish',
|
|
|
|
'metadata_section_id' => $metadata_section_a->get_id()
|
2022-05-03 18:46:23 +00:00
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadatum_b = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'metadatum',
|
|
|
|
array(
|
|
|
|
'name' => 'metadatum_b',
|
|
|
|
'description' => 'metadatum_b',
|
|
|
|
'collection' => $collection,
|
|
|
|
'metadata_type' => 'Tainacan\Metadata_Types\Text',
|
2022-05-12 04:31:17 +00:00
|
|
|
'status' => 'publish',
|
|
|
|
'metadata_section_id' => $metadata_section_a->get_id()
|
2022-05-03 18:46:23 +00:00
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$metadatum_c = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'metadatum',
|
|
|
|
array(
|
|
|
|
'name' => 'metadatum_c',
|
|
|
|
'description' => 'metadatum_c',
|
|
|
|
'collection' => $collection,
|
|
|
|
'metadata_type' => 'Tainacan\Metadata_Types\Text',
|
2022-05-12 04:31:17 +00:00
|
|
|
'status' => 'publish',
|
|
|
|
'metadata_section_id' => $metadata_section_a->get_id()
|
2022-05-03 18:46:23 +00:00
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
|
|
|
$collection->set_metadata_order(
|
|
|
|
[
|
|
|
|
array( 'id' => $metadatum3->get_id(), 'enabled' => false ),
|
|
|
|
array( 'id' => $metadatum2->get_id(), 'enabled' => true ),
|
|
|
|
array( 'id' => $metadatum1->get_id(), 'enabled' => true )
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
$update_collection = $Tainacan_Collections->update( $collection );
|
|
|
|
$metadata_ordinate = $Tainacan_Metadata->fetch_by_collection( $update_collection );
|
|
|
|
$metadata_ordinate_enabled = $Tainacan_Metadata->fetch_by_collection( $update_collection, [ 'include_disabled' => true ] );
|
|
|
|
|
|
|
|
$this->assertEquals( 'metadatum2', $metadata_ordinate[0]->get_name() );
|
|
|
|
$this->assertEquals( 'metadatum3', $metadata_ordinate_enabled[0]->get_name() );
|
|
|
|
$this->assertFalse($metadata_ordinate_enabled[0]->get_enabled_for_collection());
|
|
|
|
$this->assertTrue($metadata_ordinate_enabled[1]->get_enabled_for_collection());
|
|
|
|
$this->assertTrue($metadata_ordinate_enabled[2]->get_enabled_for_collection());
|
|
|
|
|
|
|
|
$collection->set_metadata_section_order(
|
|
|
|
[
|
|
|
|
array( 'id' => $metadata_section_1->get_id(), 'enabled' => true, 'metadata_order' => [
|
|
|
|
array( 'id' => $metadatum2->get_id(), 'enabled' => true ),
|
|
|
|
array( 'id' => $metadatum3->get_id(), 'enabled' => false ),
|
|
|
|
array( 'id' => $metadatum1->get_id(), 'enabled' => true )
|
|
|
|
] ),
|
|
|
|
array( 'id' => $metadata_section_a->get_id(), 'enabled' => false, 'metadata_order' => [
|
|
|
|
array( 'id' => $metadatum_c->get_id(), 'enabled' => false ),
|
|
|
|
array( 'id' => $metadatum_b->get_id(), 'enabled' => true ),
|
|
|
|
array( 'id' => $metadatum_a->get_id(), 'enabled' => true )
|
|
|
|
])
|
|
|
|
]
|
|
|
|
);
|
|
|
|
|
|
|
|
$update_collection = $Tainacan_Collections->update( $collection );
|
|
|
|
$metadata_ordinate = $Tainacan_Metadata->fetch_by_collection( $update_collection );
|
|
|
|
$metadata_ordinate_enabled = $Tainacan_Metadata->fetch_by_collection( $update_collection, [ 'include_disabled' => true ] );
|
2022-05-03 20:20:45 +00:00
|
|
|
|
2022-05-03 18:46:23 +00:00
|
|
|
$this->assertEquals( 'metadatum2', $metadata_ordinate[0]->get_name() );
|
2022-05-03 20:20:45 +00:00
|
|
|
$this->assertEquals( 'metadatum1', $metadata_ordinate[1]->get_name() );
|
|
|
|
$this->assertEquals( 4, count($metadata_ordinate) );
|
|
|
|
|
|
|
|
$this->assertEquals( 8, count($metadata_ordinate_enabled) );
|
2022-05-03 18:46:23 +00:00
|
|
|
$this->assertEquals( 'metadatum3', $metadata_ordinate_enabled[1]->get_name() );
|
|
|
|
$this->assertTrue($metadata_ordinate_enabled[0]->get_enabled_for_collection());
|
|
|
|
$this->assertFalse($metadata_ordinate_enabled[1]->get_enabled_for_collection());
|
|
|
|
$this->assertTrue($metadata_ordinate_enabled[2]->get_enabled_for_collection());
|
|
|
|
|
2022-07-29 14:30:17 +00:00
|
|
|
//changing the metadata section of the metadata without changing the ordering
|
|
|
|
$metadatum2->set_metadata_section_id($metadata_section_a->get_id());
|
|
|
|
$this->assertTrue($metadatum2->validate(), json_encode($metadatum2->get_errors()));
|
|
|
|
$Tainacan_Metadata->update($metadatum2);
|
|
|
|
|
|
|
|
$metadatum_c->set_metadata_section_id($metadata_section_1->get_id());
|
|
|
|
$this->assertTrue($metadatum_c->validate(), json_encode($metadatum_c->get_errors()));
|
|
|
|
$Tainacan_Metadata->update($metadatum_c);
|
|
|
|
|
|
|
|
$metadata_ordinate_enabled = $Tainacan_Metadata->fetch_by_collection( $update_collection, [ 'include_disabled' => true ] );
|
|
|
|
$this->assertEquals( 8, count($metadata_ordinate_enabled) );
|
|
|
|
$this->assertEquals( 'metadatum3', $metadata_ordinate_enabled[0]->get_name() );
|
|
|
|
$this->assertEquals( 'metadatum_b', $metadata_ordinate_enabled[3]->get_name() );
|
|
|
|
$this->assertEquals( 'metadatum2', $metadata_ordinate_enabled[5]->get_name() );
|
|
|
|
$this->assertEquals( 'metadatum_c', $metadata_ordinate_enabled[2]->get_name() );
|
|
|
|
|
2022-05-03 18:46:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|