1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
<?php
namespace Roundcube\Tests\Actions\Contacts;
use Roundcube\Tests\ActionTestCase;
use Roundcube\Tests\OutputHtmlMock;
/**
* Test class to test rcmail_action_settings_identity_edit
*/
class Actions_Settings_IdentityEdit extends ActionTestCase
{
/**
* Test run() method
*/
function test_run()
{
$action = new \rcmail_action_settings_identity_edit();
$output = $this->initOutput(\rcmail_action::MODE_HTTP, 'settings', 'edit-identity');
$this->assertInstanceOf(\rcmail_action::class, $action);
$this->assertTrue($action->checks());
self::initDB('identities');
$db = \rcmail::get_instance()->get_dbh();
$query = $db->query('SELECT * FROM `identities` WHERE `standard` = 1 LIMIT 1');
$identity = $db->fetch_assoc($query);
$_GET = ['_iid' => $identity['identity_id']];
$this->runAndAssert($action, OutputHtmlMock::E_EXIT);
$result = $output->getOutput();
$this->assertSame('identityedit', $output->template);
$this->assertSame('Edit identity', $output->getProperty('pagetitle'));
$this->assertSame($identity['identity_id'], $output->get_env('iid'));
$this->assertTrue(stripos($result, "<!DOCTYPE html>") === 0);
$this->assertTrue(strpos($result, "rcmail.gui_object('editform', 'form')") !== false);
$this->assertTrue(strpos($result, "test@example.com") !== false);
// TODO: Test error handling
}
/**
* Test identity_form() method
*/
function test_identity_form()
{
$action = new \rcmail_action_settings_identity_edit();
$output = $this->initOutput(\rcmail_action::MODE_HTTP, 'settings', 'edit-identity');
self::initDB('identities');
$result = $action->identity_form([]);
$this->assertTrue(strpos($result, '<form id="identityImageUpload"') !== false);
$this->assertTrue(strpos($result, '<legend>Settings</legend>') !== false);
}
}
|