mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-02 22:34:03 +01:00
56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Actions\Settings;
|
|
|
|
use Roundcube\Tests\ActionTestCase;
|
|
use Roundcube\Tests\OutputHtmlMock;
|
|
|
|
/**
|
|
* Test class to test rcmail_action_settings_identities
|
|
*/
|
|
class IdentitiesTest extends ActionTestCase
|
|
{
|
|
/**
|
|
* Test run() method
|
|
*/
|
|
public function test_run()
|
|
{
|
|
$action = new \rcmail_action_settings_identities();
|
|
$output = $this->initOutput(\rcmail_action::MODE_HTTP, 'settings', 'identities');
|
|
|
|
$this->assertInstanceOf(\rcmail_action::class, $action);
|
|
$this->assertTrue($action->checks());
|
|
|
|
self::initDB('identities');
|
|
|
|
$this->runAndAssert($action, OutputHtmlMock::E_EXIT);
|
|
|
|
$result = $output->getOutput();
|
|
|
|
$this->assertSame('identities', $output->template);
|
|
$this->assertSame('Identities', $output->getProperty('pagetitle'));
|
|
$this->assertTrue(stripos($result, '<!DOCTYPE html>') === 0);
|
|
$this->assertTrue(strpos($result, 'test@example.org') !== false);
|
|
$this->assertMatchesRegularExpression('/list(.min)?.js/', $result);
|
|
}
|
|
|
|
/**
|
|
* Test identities_list() method
|
|
*/
|
|
public function test_identities_list()
|
|
{
|
|
$action = new \rcmail_action_settings_identities();
|
|
$output = $this->initOutput(\rcmail_action::MODE_HTTP, 'settings', 'identities');
|
|
|
|
self::initDB('identities');
|
|
|
|
$result = $action->identities_list([]);
|
|
|
|
$expected = '<table id="rcmIdentitiesList"><thead><tr><th class="mail">Mail</th></tr></thead>'
|
|
. '<tbody><tr id="rcmrow1"><td class="mail">test <test@example.com></td></tr>'
|
|
. '<tr id="rcmrow2"><td class="mail">test <test@example.org></td></tr></tbody></table>';
|
|
|
|
$this->assertSame($expected, $result);
|
|
}
|
|
}
|