mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
39 lines
1.6 KiB
PHP
39 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Model\Manipulator;
|
|
|
|
use Alchemy\Phrasea\Model\Manipulator\PresetManipulator;
|
|
|
|
/**
|
|
* @group functional
|
|
* @group legacy
|
|
*/
|
|
class PresetManipulatorTest extends \PhraseanetTestCase
|
|
{
|
|
public function testCreate()
|
|
{
|
|
$manipulator = new PresetManipulator(self::$DI['app']['orm.em'], self::$DI['app']['repo.presets']);
|
|
$this->assertCount(0, self::$DI['app']['repo.presets']->findAll());
|
|
$fields = [
|
|
['name' => 'titi', 'value' => 'titi_value'], ['name' => 'tutu', 'value' => 'tutu_value'],
|
|
['name' => 'titi', 'value' => 'titi2_value'], ['name' => 'tutu', 'value' => 'tutu2_value'],
|
|
];
|
|
$title = 'title';
|
|
$preset = $manipulator->create(self::$DI['user'], self::$DI['collection']->get_sbas_id(), $title, $fields);
|
|
$this->assertEquals($title, $preset->getTitle());
|
|
$this->assertEquals($fields, $preset->getData());
|
|
$this->assertEquals(self::$DI['collection']->get_sbas_id(), $preset->getSbasId());
|
|
$this->assertEquals(self::$DI['user']->getid(), $preset->getUser()->getId());
|
|
$this->assertCount(1, self::$DI['app']['repo.presets']->findAll());
|
|
}
|
|
|
|
public function testDelete()
|
|
{
|
|
$manipulator = new PresetManipulator(self::$DI['app']['orm.em'], self::$DI['app']['repo.presets']);
|
|
$preset = $manipulator->create(self::$DI['user'], self::$DI['collection']->get_sbas_id(), 'title', []);
|
|
$countBefore = count(self::$DI['app']['repo.presets']->findAll());
|
|
$manipulator->delete($preset);
|
|
$this->assertGreaterThan(count(self::$DI['app']['repo.presets']->findAll()), $countBefore);
|
|
}
|
|
}
|