mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-19 07:53:14 +00:00
37 lines
1.5 KiB
PHP
37 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace Alchemy\Tests\Phrasea\Plugin\Schema;
|
|
|
|
use Alchemy\Phrasea\Plugin\Schema\Manifest;
|
|
|
|
/**
|
|
* @group functional
|
|
* @group legacy
|
|
*/
|
|
class ManifestTest extends \PhraseanetTestCase
|
|
{
|
|
public function testGetters()
|
|
{
|
|
$data = json_decode(file_get_contents(__DIR__ . '/../Fixtures/PluginDir/TestPlugin/manifest.json'), true);
|
|
$manifest = new Manifest($data);
|
|
|
|
$this->assertEquals('test-plugin', $manifest->getName());
|
|
$this->assertEquals('A custom class connector', $manifest->getDescription());
|
|
$this->assertEquals(['connector'], $manifest->getKeywords());
|
|
$this->assertEquals([[
|
|
'name' => 'Author name',
|
|
'homepage' => 'http://example.com',
|
|
'email' => 'email@example.com',
|
|
]], $manifest->getAuthors());
|
|
$this->assertEquals('http://example.com/project/example', $manifest->getHomepage());
|
|
$this->assertEquals('MIT', $manifest->getLicense());
|
|
$this->assertEquals('0.1', $manifest->getVersion());
|
|
$this->assertEquals('3.8', $manifest->getMinimumPhraseanetVersion());
|
|
$this->assertEquals('4.2', $manifest->getMaximumPhraseanetVersion());
|
|
$this->assertEquals(['views', 'twig-views'], $manifest->getTwigPaths());
|
|
$this->assertEquals([['class' => 'Vendor\CustomCommand']], $manifest->getCommands());
|
|
$this->assertEquals([['class' => 'Vendor\PluginService']], $manifest->getServices());
|
|
$this->assertEquals(['property' => 'value'], $manifest->getExtra());
|
|
}
|
|
}
|