tainacan/tests/__test-api-export.php

271 lines
7.5 KiB
PHP
Raw Normal View History

2018-05-03 00:55:41 +00:00
<?php
namespace Tainacan\Tests;
/**
* @group api
*/
class TAINACAN_REST_Export_Controller extends TAINACAN_UnitApiTestCase {
protected function create_requirements() {
$collection = $this->tainacan_entity_factory->create_entity(
'collection',
array(
'name' => 'testeItemExport',
'description' => 'No description',
),
true,
true
);
$type = $this->tainacan_metadatum_factory->create_metadatum('text');
2018-05-03 00:55:41 +00:00
$metadatum = $this->tainacan_entity_factory->create_entity(
'metadatum',
2018-05-03 00:55:41 +00:00
array(
'name' => 'teste_Export',
'description' => 'descricao',
'collection' => $collection,
2018-06-11 17:57:50 +00:00
'metadata_type' => $type,
2018-05-03 00:55:41 +00:00
'exposer_mapping' => [
'dublin-core' => 'language'
]
),
true,
true
);
$item = $this->tainacan_entity_factory->create_entity(
'item',
array(
'title' => 'item_teste_Export',
'description' => 'adasdasdsa',
'collection' => $collection
),
true,
true
);
$Tainacan_Item_Metadata = \Tainacan\Repositories\Item_Metadata::get_instance();
$item_metadata = new \Tainacan\Entities\Item_Metadata_Entity($item, $metadatum);
2018-05-03 00:55:41 +00:00
$item_metadata->set_value('teste_export_metadatum_value');
2018-05-03 00:55:41 +00:00
$item_metadata->validate();
$item_metadata = $Tainacan_Item_Metadata->insert($item_metadata);
$item2 = $this->tainacan_entity_factory->create_entity(
'item',
array(
'title' => 'item_teste_Export2',
'description' => 'adasdasdsa2',
'collection' => $collection
),
true,
true
);
2018-05-03 00:55:41 +00:00
$item_metadata2 = new \Tainacan\Entities\Item_Metadata_Entity($item2, $metadatum);
2018-05-03 00:55:41 +00:00
$item_metadata2->set_value('teste_export_metadatum_value2');
2018-05-03 00:55:41 +00:00
$item_metadata2->validate();
$item_metadata2 = $Tainacan_Item_Metadata->insert($item_metadata2);
$item3 = $this->tainacan_entity_factory->create_entity(
'item',
array(
'title' => 'item_teste_Export3',
'description' => 'adasdasdsa3',
'collection' => $collection
),
true,
true
);
2018-05-03 00:55:41 +00:00
$item_metadata3 = new \Tainacan\Entities\Item_Metadata_Entity($item3, $metadatum);
2018-05-03 00:55:41 +00:00
$item_metadata3->set_value('teste_export_metadatum_value3');
2018-05-03 00:55:41 +00:00
$item_metadata3->validate();
$item_metadata3 = $Tainacan_Item_Metadata->insert($item_metadata3);
2018-06-07 23:40:22 +00:00
$collection2 = $this->tainacan_entity_factory->create_entity(
'collection',
array(
'name' => 'testeItemExport2',
'description' => 'No description',
),
true,
true
);
$type2 = $this->tainacan_metadatum_factory->create_metadatum('text');
2018-06-07 23:40:22 +00:00
$metadatum2 = $this->tainacan_entity_factory->create_entity(
'metadatum',
2018-06-07 23:40:22 +00:00
array(
'name' => 'teste_Export2',
'description' => 'descricao2',
'collection' => $collection2,
'metadata_type' => $type2,
2018-06-07 23:40:22 +00:00
'exposer_mapping' => [
'dublin-core' => 'contributor'
]
),
true,
true
);
$item_c2 = $this->tainacan_entity_factory->create_entity(
'item',
array(
'title' => 'item_c2_teste_Export',
'description' => 'adasdasdsa_c2',
'collection' => $collection2
),
true,
true
);
$item_c2_metadata = new \Tainacan\Entities\Item_Metadata_Entity($item_c2, $metadatum2);
2018-06-07 23:40:22 +00:00
$item_c2_metadata->set_value('teste_export_metadatum_value');
2018-06-07 23:40:22 +00:00
$item_c2_metadata->validate();
$item_c2_metadata = $Tainacan_Item_Metadata->insert($item_c2_metadata);
$item_c2_2 = $this->tainacan_entity_factory->create_entity(
'item',
array(
'title' => 'item_c2_teste_Export2',
'description' => 'adasdasdsa2_c2',
'collection' => $collection2
),
true,
true
);
$item_c2_metadata2 = new \Tainacan\Entities\Item_Metadata_Entity($item_c2_2, $metadatum2);
2018-06-07 23:40:22 +00:00
$item_c2_metadata2->set_value('teste_export_metadatum_value2');
2018-06-07 23:40:22 +00:00
$item_c2_metadata2->validate();
$item_c2_metadata2 = $Tainacan_Item_Metadata->insert($item_c2_metadata2);
$item_c2_3 = $this->tainacan_entity_factory->create_entity(
'item',
array(
'title' => 'item_c2_teste_Export3',
'description' => 'adasdasdsa3_c2',
'collection' => $collection2
),
true,
true
);
$item_c2_metadata3 = new \Tainacan\Entities\Item_Metadata_Entity($item_c2_3, $metadatum2);
2018-06-07 23:40:22 +00:00
$item_c2_metadata3->set_value('teste_export_metadatum_value3');
2018-06-07 23:40:22 +00:00
$item_c2_metadata3->validate();
$item_c2_metadata3 = $Tainacan_Item_Metadata->insert($item_c2_metadata3);
return [
'collection' => $collection,
'items' => [$item, $item2, $item3],
'metadatum' => $metadatum,
2018-06-07 23:40:22 +00:00
'items_metadatas' => [$item_metadata, $item_metadata2, $item_metadata3],
'collections' => [$collection, $collection2],
'items2' => [$item_c2, $item_c2_2, $item_c2_3],
'items_metadatas2' => [$item_c2_metadata, $item_c2_metadata2, $item_c2_metadata3],
];
2018-05-03 00:55:41 +00:00
}
public function test_export_a_collection() {
extract($this->create_requirements());
$item_exposer_json = json_encode([
2018-11-25 22:52:04 +00:00
\Tainacan\Exposers_Handler::TYPE_PARAM => 'Xml',
\Tainacan\Exposers_Handler::MAPPER_PARAM => 'Value',
'export-background' => false
2018-05-03 00:55:41 +00:00
]);
$query = [
'orderby' => 'id',
'order' => 'asc',
];
2018-05-03 00:55:41 +00:00
$request = new \WP_REST_Request('GET', $this->namespace . '/export/collection/' . $collection->get_id() );
$request->set_query_params($query);
2018-05-03 00:55:41 +00:00
$request->set_body($item_exposer_json);
$response = $this->server->dispatch($request);
$this->assertEquals(200, $response->get_status());
$data = $response->get_data();
$this->assertInstanceOf('SimpleXMLElement', $xml = @simplexml_load_string($data));
$this->assertEquals(3, $xml->count());
$i = 0;
foreach ($xml->children() as $xml_item ) {
$metadata = $items[$i]->get_metadata();
foreach ($metadata as $metadatum_meta) {
$metadatum = $metadatum_meta->get_metadatum();
$this->assertEquals($metadatum_meta->get_value(), $xml_item->{$metadatum->get_name()});
//echo "{$metadatum->get_name()}:{$metadatum_meta->get_value()}"; // uncomment if need debug
}
$i++;
}
2018-05-03 00:55:41 +00:00
}
2018-06-07 23:40:22 +00:00
/**
* @group export_all
*/
public function test_export_all() {
extract($this->create_requirements());
$item_exposer_json = json_encode([
2018-11-25 22:52:04 +00:00
\Tainacan\Exposers_Handler::TYPE_PARAM => 'Xml',
2018-06-07 23:40:22 +00:00
'exposer-map' => 'Value',
'export-background' => false
]);
$query = [
'orderby' => 'id',
'order' => 'asc',
];
$request = new \WP_REST_Request('GET', $this->namespace . '/export' );
$request->set_query_params($query);
$request->set_body($item_exposer_json);
$response = $this->server->dispatch($request);
$this->assertEquals(200, $response->get_status());
$data = $response->get_data();
$this->assertInstanceOf('SimpleXMLElement', $xml = @simplexml_load_string($data));
2018-07-10 06:20:57 +00:00
//var_dump($data);
2018-06-07 23:40:22 +00:00
/*
$this->assertEquals(3, $xml->count());
$i = 0;
foreach ($xml->children() as $xml_item ) {
$metadata = $items[$i]->get_metadata();
foreach ($metadata as $metadatum_meta) {
$metadatum = $metadatum_meta->get_metadatum();
$this->assertEquals($metadatum_meta->get_value(), $xml_item->{$metadatum->get_name()});
//echo "{$metadatum->get_name()}:{$metadatum_meta->get_value()}"; // uncomment if need debug
2018-06-07 23:40:22 +00:00
}
$i++;
}*/
}
2018-05-03 00:55:41 +00:00
}
?>