2021-02-04 19:07:33 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tainacan\Tests;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class TestCollections
|
|
|
|
*
|
|
|
|
* @package Test_Tainacan
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2021-03-12 04:18:12 +00:00
|
|
|
* HTML INJECTION test case.
|
2021-02-04 19:07:33 +00:00
|
|
|
*/
|
2021-03-12 07:47:33 +00:00
|
|
|
class TAINACAN_HTML_Injection extends TAINACAN_UnitTestCase
|
2021-02-04 19:07:33 +00:00
|
|
|
{
|
2021-03-12 07:47:33 +00:00
|
|
|
// Evil attempts
|
|
|
|
private $link = "<a href='www.tainacan.org'>link</a>";
|
|
|
|
private $js = "<script>alert('XSS')</script>";
|
|
|
|
private $css = "my text along with some style <style>a { display: none }</style>";
|
2021-07-22 20:55:37 +00:00
|
|
|
private $iframe = "<iframe src='www.tainacan.org' title='Tainacan'></iframe>";
|
2021-03-12 07:47:33 +00:00
|
|
|
private $text_and_link = "";
|
|
|
|
private $text_and_iframe = "";
|
|
|
|
|
|
|
|
// Accepted formatting
|
|
|
|
private $strong = "I have some info to tell the world. And I can <strong> bold it </strong>";
|
|
|
|
private $html = "<div><h1>Main Info</h1><h3>sub title</h3><p>My structure description<p></p>and another paragraph</p></div>";
|
|
|
|
|
|
|
|
// Expected returns
|
|
|
|
private $expected_title = 'my very interesting name and link as well';
|
|
|
|
private $expected_desc = 'description item';
|
|
|
|
|
|
|
|
private $collection = null;
|
|
|
|
private $item = null;
|
|
|
|
private $metadatum = null;
|
|
|
|
private $taxonomy = null;
|
|
|
|
private $taxonomy_db = null;
|
|
|
|
|
2024-01-23 04:10:20 +00:00
|
|
|
public function setUp(): void
|
2021-03-12 07:47:33 +00:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
$link = $this->link;
|
|
|
|
$iframe = $this->iframe;
|
|
|
|
$this->text_and_link = "my very interesting name and $link as well";
|
|
|
|
$this->text_and_iframe = "description item $iframe";
|
|
|
|
|
|
|
|
$this->test_collections();
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_collections() {
|
|
|
|
$Tainacan_Collections = \Tainacan\Repositories\Collections::get_instance();
|
|
|
|
$collection = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'collection',
|
|
|
|
array(
|
|
|
|
'name' => 'collection name <a href="www.tainacan.org">link <a href="link2.com.br"> link2 </a> </a>',
|
|
|
|
'description' => $this->text_and_iframe,
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
$collection = $Tainacan_Collections->fetch($collection->get_id());
|
|
|
|
$this->assertEquals($collection->get_name(), 'collection name link link2');
|
|
|
|
$this->assertEquals($collection->get_description(), $this->expected_desc);
|
|
|
|
|
|
|
|
$this->collection = $collection;
|
|
|
|
$this->test_items();
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_items() {
|
|
|
|
$Tainacan_Items = \Tainacan\Repositories\Items::get_instance();
|
|
|
|
$item = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'item',
|
|
|
|
array(
|
|
|
|
'title' => 'title item <script>console.log("XSS")</script>',
|
|
|
|
'description' => $this->text_and_iframe,
|
|
|
|
'collection' => $this->collection
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
2021-02-04 19:07:33 +00:00
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
$item = $Tainacan_Items->fetch($item->get_id());
|
|
|
|
$this->assertEquals($item->get_title(), 'title item console.log("XSS")');
|
|
|
|
$this->assertEquals($item->get_description(), $this->expected_desc);
|
2021-03-12 04:18:12 +00:00
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
$this->item = $item;
|
|
|
|
$this->test_metadata();
|
|
|
|
}
|
2021-03-12 05:58:06 +00:00
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
function test_metadata() {
|
|
|
|
$Tainacan_Metadata = \Tainacan\Repositories\Metadata::get_instance();
|
|
|
|
$metadatum = $this->tainacan_entity_factory->create_entity(
|
2021-02-04 19:07:33 +00:00
|
|
|
'metadatum',
|
|
|
|
array(
|
2021-03-12 07:47:33 +00:00
|
|
|
'name' => $this->text_and_link,
|
2021-02-04 19:07:33 +00:00
|
|
|
'description' => 'metadatum description',
|
2021-03-12 07:47:33 +00:00
|
|
|
'collection' => $this->collection,
|
2021-02-04 19:07:33 +00:00
|
|
|
'metadata_type' => 'Tainacan\Metadata_Types\Text',
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
$metadatum = $Tainacan_Metadata->fetch($metadatum->get_id());
|
2021-03-12 07:47:33 +00:00
|
|
|
$this->assertEquals($metadatum->get_name(), $this->expected_title);
|
2021-02-04 19:07:33 +00:00
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
$this->metadatum = $metadatum;
|
|
|
|
$this->test_taxonomies();
|
|
|
|
}
|
2021-03-12 04:18:12 +00:00
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
function test_taxonomies() {
|
|
|
|
$Tainacan_Taxonomies = \Tainacan\Repositories\Taxonomies::get_instance();
|
|
|
|
$taxonomy = $this->tainacan_entity_factory->create_entity(
|
2021-03-12 05:58:06 +00:00
|
|
|
'taxonomy',
|
2021-03-12 04:18:12 +00:00
|
|
|
array(
|
2021-03-12 07:47:33 +00:00
|
|
|
'name' => $this->text_and_link,
|
|
|
|
'collections' => [$this->collection],
|
|
|
|
'description' => $this->text_and_iframe,
|
2021-03-12 04:18:12 +00:00
|
|
|
'status' => 'publish'
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
$tx = $Tainacan_Taxonomies->fetch($taxonomy->get_id());
|
|
|
|
$this->assertEquals($tx->get_name(), $this->expected_title);
|
|
|
|
$this->assertEquals($tx->get_description(), $this->expected_desc);
|
|
|
|
|
|
|
|
$this->taxonomy = $taxonomy;
|
|
|
|
$this->taxonomy_db = $taxonomy->get_db_identifier();
|
|
|
|
}
|
2021-02-04 19:07:33 +00:00
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
function test_terms() {
|
|
|
|
$Tainacan_Terms = \Tainacan\Repositories\Terms::get_instance();
|
|
|
|
$term = $this->tainacan_entity_factory->create_entity(
|
|
|
|
'term',
|
|
|
|
array(
|
|
|
|
'taxonomy' => $this->taxonomy_db,
|
|
|
|
'name' => $this->css,
|
|
|
|
),
|
|
|
|
true
|
|
|
|
);
|
|
|
|
$t = $Tainacan_Terms->fetch($term->get_term_id(), $this->taxonomy);
|
|
|
|
$this->assertEquals($t->get_name(), 'my text along with some style');
|
|
|
|
}
|
|
|
|
|
|
|
|
function test_item_metadata() {
|
|
|
|
$Tainacan_Item_Metadata = \Tainacan\Repositories\Item_Metadata::get_instance();
|
|
|
|
$item_metadata = new \Tainacan\Entities\Item_Metadata_Entity($this->item, $this->metadatum);
|
|
|
|
$item_metadata->set_value($this->js);
|
2021-02-04 19:07:33 +00:00
|
|
|
$item_metadata->validate();
|
|
|
|
$item_metadata = $Tainacan_Item_Metadata->insert($item_metadata);
|
|
|
|
|
|
|
|
$this->assertEquals($item_metadata->get_value(), "alert('XSS')");
|
2021-02-05 04:37:26 +00:00
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
$item_metadata->set_value($this->link);
|
2021-02-05 04:37:26 +00:00
|
|
|
$item_metadata->validate();
|
|
|
|
$item_metadata = $Tainacan_Item_Metadata->update($item_metadata);
|
|
|
|
$this->assertEquals($item_metadata->get_value(), 'link');
|
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
$item_metadata->set_value($this->css);
|
2021-02-05 15:05:16 +00:00
|
|
|
$item_metadata->validate();
|
|
|
|
$item_metadata = $Tainacan_Item_Metadata->update($item_metadata);
|
|
|
|
$this->assertEquals($item_metadata->get_value(), 'my text along with some style a { display: none }');
|
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
$item_metadata->set_value($this->iframe);
|
2021-02-05 15:05:16 +00:00
|
|
|
$item_metadata->validate();
|
|
|
|
$item_metadata = $Tainacan_Item_Metadata->update($item_metadata);
|
|
|
|
$this->assertEquals($item_metadata->get_value(), '');
|
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
$item_metadata->set_value($this->strong);
|
2021-02-05 15:25:52 +00:00
|
|
|
$item_metadata->validate();
|
|
|
|
$item_metadata = $Tainacan_Item_Metadata->update($item_metadata);
|
2021-03-12 07:47:33 +00:00
|
|
|
$this->assertEquals($item_metadata->get_value(), $this->strong);
|
2021-02-05 15:25:52 +00:00
|
|
|
|
2021-03-12 07:47:33 +00:00
|
|
|
$item_metadata->set_value($this->html);
|
2021-02-05 15:25:52 +00:00
|
|
|
$item_metadata->validate();
|
|
|
|
$item_metadata = $Tainacan_Item_Metadata->update($item_metadata);
|
2021-03-12 07:47:33 +00:00
|
|
|
$this->assertEquals($item_metadata->get_value(), $this->html);
|
|
|
|
}
|
2021-03-12 04:18:12 +00:00
|
|
|
|
2021-02-04 19:07:33 +00:00
|
|
|
}
|