update test and fix has value method
This commit is contained in:
parent
a57e2382c5
commit
c2a6fb8765
|
@ -313,7 +313,7 @@ class Item_Metadata_Entity extends Entity {
|
||||||
return $this->has_value;
|
return $this->has_value;
|
||||||
|
|
||||||
$value = $this->get_value();
|
$value = $this->get_value();
|
||||||
$this->has_value = !empty($value);
|
$this->has_value = (is_array($value)) ? !empty(array_filter($value)) : !empty($value);
|
||||||
return $this->has_value;
|
return $this->has_value;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -306,9 +306,9 @@ class Item_Metadata extends TAINACAN_UnitTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @group test_item_metadata_multiple_has_value
|
* @group test_item_metadata_has_value
|
||||||
*/
|
*/
|
||||||
function test_item_metadata_multiple_has_value() {
|
function test_item_metadata_has_value() {
|
||||||
$Tainacan_Item_Metadata = \Tainacan\Repositories\Item_Metadata::get_instance();
|
$Tainacan_Item_Metadata = \Tainacan\Repositories\Item_Metadata::get_instance();
|
||||||
|
|
||||||
$collection = $this->tainacan_entity_factory->create_entity(
|
$collection = $this->tainacan_entity_factory->create_entity(
|
||||||
|
@ -330,6 +330,33 @@ class Item_Metadata extends TAINACAN_UnitTestCase {
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
$metadatum_textarea = $this->tainacan_entity_factory->create_entity(
|
||||||
|
'metadatum',
|
||||||
|
array(
|
||||||
|
'name' => 'metadadoTextarea',
|
||||||
|
'description' => 'descricao',
|
||||||
|
'collection_id' => $collection->get_id(),
|
||||||
|
'metadata_type' => 'Tainacan\Metadata_Types\Textarea',
|
||||||
|
),
|
||||||
|
true
|
||||||
|
);
|
||||||
|
|
||||||
|
$value_textarea = '';
|
||||||
|
$item_metadata_textarea = new \Tainacan\Entities\Item_Metadata_Entity($i, $metadatum_textarea);
|
||||||
|
$item_metadata_textarea->set_value($value_textarea);
|
||||||
|
|
||||||
|
$item_metadata_textarea->validate();
|
||||||
|
$item_metadata_textarea = $Tainacan_Item_Metadata->insert($item_metadata_textarea);
|
||||||
|
|
||||||
|
$this->assertFalse($item_metadata_textarea->has_value());
|
||||||
|
|
||||||
|
$item_metadata_textarea->set_value('has_value');
|
||||||
|
$item_metadata_textarea->validate();
|
||||||
|
$item_metadata_textarea = $Tainacan_Item_Metadata->insert($item_metadata_textarea);
|
||||||
|
|
||||||
|
$this->assertTrue($item_metadata_textarea->has_value());
|
||||||
|
|
||||||
$metadatum_text = $this->tainacan_entity_factory->create_entity(
|
$metadatum_text = $this->tainacan_entity_factory->create_entity(
|
||||||
'metadatum',
|
'metadatum',
|
||||||
array(
|
array(
|
||||||
|
@ -351,6 +378,19 @@ class Item_Metadata extends TAINACAN_UnitTestCase {
|
||||||
$item_metadata_text->validate();
|
$item_metadata_text->validate();
|
||||||
$item_metadata = $Tainacan_Item_Metadata->insert($item_metadata_text);
|
$item_metadata = $Tainacan_Item_Metadata->insert($item_metadata_text);
|
||||||
|
|
||||||
$this->assertTrue($item_metadata->has_value());
|
$this->assertFalse($item_metadata->has_value());
|
||||||
|
|
||||||
|
$item_metadata_text->set_value([
|
||||||
|
''
|
||||||
|
]);
|
||||||
|
|
||||||
|
$item_metadata_text->validate();
|
||||||
|
$item_metadata_text = $Tainacan_Item_Metadata->insert($item_metadata_text);
|
||||||
|
|
||||||
|
$item_metadata_text->set_value([
|
||||||
|
'has_value'
|
||||||
|
]);
|
||||||
|
|
||||||
|
$this->assertTrue($item_metadata_text->has_value());
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue