mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-04 23:34:01 +01:00
53 lines
1.6 KiB
PHP
53 lines
1.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Test class to test rcmail_action_settings_identities
|
|
*
|
|
* @package Tests
|
|
*/
|
|
class Actions_Settings_Identities extends ActionTestCase
|
|
{
|
|
/**
|
|
* Test run() method
|
|
*/
|
|
function test_run()
|
|
{
|
|
$action = new rcmail_action_settings_identities;
|
|
$output = $this->initOutput(rcmail_action::MODE_HTTP, 'settings', 'identities');
|
|
|
|
$this->assertInstanceOf('rcmail_action', $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
|
|
*/
|
|
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);
|
|
}
|
|
}
|