tainacan_entity_factory->create_entity( 'collection', array( 'name' => 'teste', 'description' => 'adasdasdsa', 'default_order' => 'DESC' ), true ); global $Tainacan_Collections; $this->assertEquals('Tainacan\Entities\Collection', get_class($x)); $test = $Tainacan_Collections->fetch($x->get_id()); $this->assertEquals($test->get_name(), 'teste'); $this->assertEquals($test->get_description(), 'adasdasdsa'); $this->assertEquals($test->get_default_order(), 'DESC'); $this->assertEquals('draft', $test->get_status()); } function test_item() { $x = $this->tainacan_entity_factory->create_entity( 'collection', array( 'name' => 'teste', 'description' => 'adasdasdsa', 'default_order' => 'DESC' ), true ); global $Tainacan_Collections; $collection = $Tainacan_Collections->fetch($x->get_id()); $i = $this->tainacan_entity_factory->create_entity( 'item', array( 'title' => 'item test', 'description' => 'adasdasdsa', 'order' => 'DESC', 'collection' => $collection ), true ); global $Tainacan_Items; $item = $Tainacan_Items->fetch( $i->get_id() ); $this->assertEquals($item->get_title(), 'item test'); $this->assertEquals($item->get_description(), 'adasdasdsa'); $this->assertEquals($item->get_collection_id(), $collection->get_id()); } function test_validation() { $x = $this->tainacan_entity_factory->create_entity( 'collection', array( 'name' => 'teste', 'description' => 'adasdasdsa', 'default_order' => 13 ) ); $this->assertFalse($x->validate()); $this->assertTrue(sizeof($x->get_errors()) > 0); $x->set_default_order('ASDASD'); $this->assertFalse($x->validate()); $this->assertTrue(sizeof($x->get_errors()) > 0); $x->set_default_order('DESC'); $this->assertTrue($x->validate()); $this->assertTrue(empty($x->get_errors())); global $Tainacan_Collections; $this->assertTrue(has_action('init', array($Tainacan_Collections, 'register_post_type')) !== false, 'Collections Init is not registred!'); } }