tainacan/tests/test-fields.php

229 lines
5.8 KiB
PHP
Raw Normal View History

<?php
2017-11-15 18:50:11 +00:00
namespace Tainacan\Tests;
2017-12-05 10:37:50 +00:00
use Tainacan\Field_Types;
/**
* Class Field
*
* @package Test_Tainacan
*/
/**
* Field test case.
*/
class Fields extends TAINACAN_UnitTestCase {
/**
* Test insert a regular field with type
*/
function test_add() {
global $Tainacan_Fields;
2017-12-04 18:20:49 +00:00
$collection = $this->tainacan_entity_factory->create_entity(
'collection',
array(
'name' => 'teste'
),
true
);
$type = $this->tainacan_field_factory->create_field('text');
$field = $this->tainacan_entity_factory->create_entity(
'field',
2017-12-04 18:20:49 +00:00
array(
'name' => 'metadado',
'description' => 'descricao',
'collection' => $collection,
'field_type' => $type
2017-12-04 18:20:49 +00:00
),
true
);
$test = $Tainacan_Fields->fetch($field->get_id());
2017-11-09 15:51:16 +00:00
$this->assertEquals($test->get_name(), 'metadado');
$this->assertEquals($test->get_description(), 'descricao');
2017-11-12 23:14:47 +00:00
$this->assertEquals($test->get_collection_id(), $collection->get_id());
}
2017-11-09 15:51:16 +00:00
/**
* Test insert a regular field with type
2017-11-09 15:51:16 +00:00
*/
2017-11-30 13:44:29 +00:00
function test_add_type(){
global $Tainacan_Fields;
2017-12-04 18:20:49 +00:00
$collection = $this->tainacan_entity_factory->create_entity(
'collection',
array(
'name' => 'teste'
),
true
);
$type = $this->tainacan_field_factory->create_field('text');
$field = $this->tainacan_entity_factory->create_entity(
'field',
2017-12-04 18:20:49 +00:00
array(
'name' => 'metadado',
'description' => 'descricao',
'collection_id' => $collection->get_id(),
'field_type' => $type
2017-12-04 18:20:49 +00:00
),
true
);
2017-11-09 15:51:16 +00:00
$test = $Tainacan_Fields->fetch($field->get_id());
2017-11-09 15:51:16 +00:00
$this->assertEquals($test->get_name(), 'metadado');
2017-11-12 23:14:47 +00:00
$this->assertEquals($test->get_collection_id(), $collection->get_id());
2017-11-20 14:37:01 +00:00
$this->assertEquals('Tainacan\Field_Types\Text', $test->get_field_type());
2017-11-14 18:44:04 +00:00
$this->assertEquals($test->get_field_type_object(), $type);
2017-11-09 15:51:16 +00:00
}
2017-11-30 13:44:29 +00:00
2017-12-04 18:30:54 +00:00
/**
* test if parent field are visible for children collection
2017-12-04 18:30:54 +00:00
*/
2017-11-30 13:44:29 +00:00
function test_hierarchy_metadata(){
global $Tainacan_Fields;
2017-12-04 18:20:49 +00:00
$type = $this->tainacan_field_factory->create_field('text');
$this->tainacan_entity_factory->create_entity(
'field',
2017-12-04 18:20:49 +00:00
array(
'name' => 'field default',
'collection_id' => $Tainacan_Fields->get_default_metadata_attribute(),
'field_type' => $type,
2017-12-04 18:20:49 +00:00
'status' => 'publish'
),
true
);
$collection_grandfather = $this->tainacan_entity_factory->create_entity(
'collection',
array(
'name' => 'collection grandfather'
),
true
);
$this->tainacan_entity_factory->create_entity(
'field',
2017-12-04 18:20:49 +00:00
array(
'name' => 'field grandfather',
2017-12-04 18:20:49 +00:00
'collection_id' => $collection_grandfather->get_id(),
'field_type' => $type,
2017-12-04 18:20:49 +00:00
'status' => 'publish'
),
true
);
$collection_father = $this->tainacan_entity_factory->create_entity(
'collection',
array(
'name' => 'collection father',
'parent' => $collection_grandfather->get_id()
),
true
);
$this->tainacan_entity_factory->create_entity(
'field',
2017-12-04 18:20:49 +00:00
array(
'name' => 'field father',
2017-12-04 18:20:49 +00:00
'collection_id' => $collection_father->get_id(),
'field_type' => $type,
2017-12-04 18:20:49 +00:00
'status' => 'publish'
),
true
);
$collection_son = $this->tainacan_entity_factory->create_entity(
'collection',
array(
'name' => 'collection son',
'parent' => $collection_father->get_id()
),
true
);
2017-11-30 13:44:29 +00:00
$this->assertEquals( $collection_grandfather->get_id(), $collection_father->get_parent() );
$this->assertEquals( $collection_father->get_id(), $collection_son->get_parent() );
2017-12-04 18:20:49 +00:00
$this->tainacan_entity_factory->create_entity(
'field',
2017-12-04 18:20:49 +00:00
array(
'name' => 'field son',
2017-12-04 18:20:49 +00:00
'collection_id' => $collection_son->get_id(),
'field_type' => $type,
2017-12-04 18:20:49 +00:00
'status' => 'publish'
),
true
);
2017-11-30 13:44:29 +00:00
$retrieve_metadata = $Tainacan_Fields->fetch_by_collection( $collection_son, [], 'OBJECT' );
// should return 6
$this->assertEquals( 6, sizeof( $retrieve_metadata ) );
}
function test_core_fields(){
global $Tainacan_Fields;
$collection_grandfather = $this->tainacan_entity_factory->create_entity(
'collection',
array(
'name' => 'collection field'
),
true
);
$core_fields = $Tainacan_Fields->get_core_fields( $collection_grandfather );
$this->expectException(\ErrorException::class);
if( $core_fields ){
foreach( $core_fields as $core_field ){
wp_trash_post( $core_field->get_id() );
}
}
2017-11-30 13:44:29 +00:00
}
2017-12-04 18:30:54 +00:00
/**
* test if the defaults types are registered
*/
function test_metadata_field_type(){
global $Tainacan_Fields;
$this->assertEquals( 8, sizeof( $Tainacan_Fields->fetch_field_types() ) );
2017-12-04 18:30:54 +00:00
}
/**
* test if the defaults types are registered
*/
2017-12-05 10:37:50 +00:00
function test_metadata_field_type_insert(){
global $Tainacan_Fields;
2017-12-05 10:37:50 +00:00
$class = new RandomType;
$this->assertEquals( 9, sizeof( $Tainacan_Fields->fetch_field_types() ) );
2017-12-05 10:37:50 +00:00
}
}
/**
* Class TainacanFieldType
*/
class RandomType extends Field_Types\Field_Type {
function __construct(){
parent::__construct();
}
/**
* @param $field
2017-12-05 10:37:50 +00:00
* @return string
*/
public function render( $field ){}
}