53 lines
1.4 KiB
PHP
53 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Renatio\DynamicPDF\Tests;
|
|
|
|
use PluginTestCase;
|
|
use Renatio\DynamicPDF\Plugin;
|
|
use System\Classes\PluginManager;
|
|
|
|
class PluginTest extends PluginTestCase
|
|
{
|
|
|
|
protected $plugin;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->plugin = new Plugin(app());
|
|
}
|
|
|
|
/** @test */
|
|
public function it_provides_plugin_details()
|
|
{
|
|
$this->assertArrayHasKey('name', $this->plugin->pluginDetails());
|
|
$this->assertArrayHasKey('description', $this->plugin->pluginDetails());
|
|
}
|
|
|
|
/** @test */
|
|
public function it_registers_settings()
|
|
{
|
|
$this->assertArrayHasKey('templates', $this->plugin->registerSettings());
|
|
}
|
|
|
|
/** @test */
|
|
public function it_registers_permissions()
|
|
{
|
|
$this->assertArrayHasKey('renatio.dynamicpdf.manage_templates', $this->plugin->registerPermissions());
|
|
$this->assertArrayHasKey('renatio.dynamicpdf.manage_layouts', $this->plugin->registerPermissions());
|
|
}
|
|
|
|
/** @test */
|
|
public function it_registers_default_twig_filters_when_translate_plugin_is_not_available()
|
|
{
|
|
$filters = $this->plugin->registerMarkupTags();
|
|
|
|
if (!PluginManager::instance()->exists('RainLab.Translate')) {
|
|
$this->assertArrayHasKey('filters', $filters);
|
|
} else {
|
|
$this->assertArrayNotHasKey('filters', $filters);
|
|
}
|
|
}
|
|
}
|