Files
roundcubemail/plugins/attachment_reminder/tests/AttachmentReminderTest.php
Michael Voříšek 1e360999b2 Use composer autoloader for bundled plugins testing (#9412)
* use fixed "roundcube/plugin-installer"

* Use composer autoloader for plugins testing

* cherrypick remaining from 9241 related with testing

* minor legacy autoload improvements
2024-04-11 18:28:46 +02:00

66 lines
1.8 KiB
PHP

<?php
use PHPUnit\Framework\TestCase;
class AttachmentReminder_Plugin 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']);
}
}