Files
roundcubemail/plugins/attachment_reminder/tests/AttachmentReminderTest.php
2024-06-05 07:46:51 +02:00

68 lines
1.8 KiB
PHP

<?php
namespace Roundcube\Plugins\Tests;
use PHPUnit\Framework\TestCase;
class AttachmentReminderTest extends TestCase
{
/**
* Plugin object construction test
*/
public function test_constructor()
{
$rcube = \rcube::get_instance();
$plugin = new \attachment_reminder($rcube->plugins);
$this->assertInstanceOf('attachment_reminder', $plugin);
$this->assertInstanceOf('rcube_plugin', $plugin);
$plugin->init();
}
/**
* Test prefs_list() method
*/
public function test_prefs_list()
{
$rcube = \rcube::get_instance();
$plugin = new \attachment_reminder($rcube->plugins);
$args = ['section' => 'compose', 'blocks' => ['main' => ['options' => []]]];
$result = $plugin->prefs_list($args);
$this->assertSame(
'<label for="rcmfd_attachment_reminder">Remind about forgotten attachments</label>',
$result['blocks']['main']['options']['attachment_reminder']['title']
);
$this->assertSame(
'<input name="_attachment_reminder" id="rcmfd_attachment_reminder" value="1" type="checkbox">',
$result['blocks']['main']['options']['attachment_reminder']['content']
);
}
/**
* Test prefs_save() method
*/
public function test_prefs_save()
{
$rcube = \rcube::get_instance();
$plugin = new \attachment_reminder($rcube->plugins);
$_POST = [];
$args = ['section' => 'compose', 'prefs' => []];
$result = $plugin->prefs_save($args);
$this->assertFalse($result['prefs']['attachment_reminder']);
$_POST = ['_attachment_reminder' => 1];
$args = ['section' => 'compose', 'prefs' => []];
$result = $plugin->prefs_save($args);
$this->assertTrue($result['prefs']['attachment_reminder']);
}
}