mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-08 10:34:34 +00:00
86 lines
3.1 KiB
PHP
86 lines
3.1 KiB
PHP
<?php
|
|
|
|
require_once __DIR__ . '/../../Bridge_datas.inc';
|
|
|
|
/**
|
|
* @group functional
|
|
* @group legacy
|
|
*/
|
|
class Bridge_Api_Dailymotion_ContainerTest extends \PhraseanetTestCase
|
|
{
|
|
/**
|
|
* @var Bridge_Api_Dailymotion_Container
|
|
*/
|
|
protected $object;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->test = [
|
|
'id' => '01234567'
|
|
, 'description' => 'one description'
|
|
, 'name' => 'hello container'
|
|
];
|
|
}
|
|
|
|
public function testGet_created_on()
|
|
{
|
|
$this->object = new Bridge_Api_Dailymotion_Container($this->test, 'playlist', 'thumb', 'url');
|
|
$this->assertNull($this->object->get_created_on());
|
|
}
|
|
|
|
public function testGet_description()
|
|
{
|
|
$this->object = new Bridge_Api_Dailymotion_Container($this->test, 'playlist', 'thumb', 'url');
|
|
$this->assertEquals($this->test['description'], $this->object->get_description());
|
|
unset($this->test["description"]);
|
|
$this->object = new Bridge_Api_Dailymotion_Element($this->test, 'blabla');
|
|
$this->assertInternalType(PHPUnit_Framework_Constraint_IsType::TYPE_STRING, $this->object->get_description());
|
|
$this->assertEmpty($this->object->get_description());
|
|
}
|
|
|
|
public function testGet_id()
|
|
{
|
|
$this->object = new Bridge_Api_Dailymotion_Container($this->test, 'playlist', 'thumb', 'url');
|
|
$this->assertEquals($this->test['id'], $this->object->get_id());
|
|
unset($this->test["id"]);
|
|
$this->object = new Bridge_Api_Dailymotion_Element($this->test, 'blabla');
|
|
$this->assertInternalType(PHPUnit_Framework_Constraint_IsType::TYPE_STRING, $this->object->get_id());
|
|
$this->assertEmpty($this->object->get_id());
|
|
}
|
|
|
|
public function testGet_thumbnail()
|
|
{
|
|
$this->object = new Bridge_Api_Dailymotion_Container($this->test, 'playlist', 'thumb', 'url');
|
|
$this->assertEquals('thumb', $this->object->get_thumbnail());
|
|
}
|
|
|
|
public function testGet_title()
|
|
{
|
|
$this->object = new Bridge_Api_Dailymotion_Container($this->test, 'playlist', 'thumb', 'url');
|
|
$this->assertEquals($this->test['name'], $this->object->get_title());
|
|
unset($this->test["name"]);
|
|
$this->object = new Bridge_Api_Dailymotion_Element($this->test, 'blabla');
|
|
$this->assertInternalType(PHPUnit_Framework_Constraint_IsType::TYPE_STRING, $this->object->get_title());
|
|
$this->assertEmpty($this->object->get_title());
|
|
}
|
|
|
|
public function testGet_type()
|
|
{
|
|
$this->object = new Bridge_Api_Dailymotion_Container($this->test, 'playlist', 'thumb', 'url');
|
|
$this->assertEquals('playlist', $this->object->get_type());
|
|
}
|
|
|
|
public function testGet_updated_on()
|
|
{
|
|
$this->object = new Bridge_Api_Dailymotion_Container($this->test, 'playlist', 'thumb', 'url');
|
|
$this->assertNull($this->object->get_updated_on());
|
|
}
|
|
|
|
public function testGet_url()
|
|
{
|
|
$this->object = new Bridge_Api_Dailymotion_Container($this->test, 'playlist', 'thumb', 'url');
|
|
$this->assertEquals('url', $this->object->get_url());
|
|
}
|
|
}
|