mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-08 02:24:26 +00:00
45 lines
1.3 KiB
PHP
45 lines
1.3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group functional
|
|
* @group legacy
|
|
*/
|
|
class databox_Field_DCES_DCESTestCase extends \PhraseanetTestCase
|
|
{
|
|
public function testGet_label()
|
|
{
|
|
$data = explode('_', get_class($this));
|
|
$name = str_replace('Test', '', array_pop($data));
|
|
$this->assertEquals($name, $this->object->get_label());
|
|
}
|
|
|
|
public function testGet_definition()
|
|
{
|
|
$this->assertTrue(is_string($this->object->get_definition()));
|
|
$this->assertTrue(strlen($this->object->get_definition()) > 18);
|
|
}
|
|
|
|
public function testGet_documentation_link()
|
|
{
|
|
$this->assertRegExp('/^http:\/\/dublincore\.org\/documents\/dces\/#[a-z]+$/', $this->object->get_documentation_link());
|
|
}
|
|
|
|
public function testSerialization()
|
|
{
|
|
$serializer = self::$DI['app']['serializer'];
|
|
|
|
$data = json_decode($serializer->serialize($this->object, 'json'), true);
|
|
|
|
$this->assertInternalType('array', $data);
|
|
$this->assertCount(3, $data);
|
|
|
|
$this->assertArrayHasKey('label', $data);
|
|
$this->assertArrayHasKey('definition', $data);
|
|
$this->assertArrayHasKey('URI', $data);
|
|
|
|
$this->assertInternalType('string', $data['label']);
|
|
$this->assertInternalType('string', $data['definition']);
|
|
$this->assertInternalType('string', $data['URI']);
|
|
}
|
|
}
|