mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-04 23:34:01 +01:00
67 lines
1.8 KiB
PHP
67 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Test class to test rcmail_action_settings_identity_save
|
|
*
|
|
* @package Tests
|
|
*/
|
|
class Actions_Settings_IdentitySave extends ActionTestCase
|
|
{
|
|
/**
|
|
* Test run() method
|
|
*/
|
|
function test_identity_edit()
|
|
{
|
|
$action = new rcmail_action_settings_identity_save;
|
|
$output = $this->initOutput(rcmail_action::MODE_HTTP, 'settings', 'save-identity');
|
|
|
|
$this->assertInstanceOf('rcmail_action', $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);
|
|
|
|
// Test successful identity update
|
|
|
|
$_POST = [
|
|
'_iid' => $identity['identity_id'],
|
|
'_name' => 'new-name',
|
|
'_email' => 'new@example.com',
|
|
'_standard' => '1',
|
|
'_signature' => 'test',
|
|
];
|
|
|
|
$action->run();
|
|
|
|
$this->assertSame('edit-identity', rcmail::get_instance()->action);
|
|
$this->assertSame('successfullysaved', $output->getProperty('message'));
|
|
|
|
$query = $db->query('SELECT * FROM `identities` WHERE `identity_id` = ?', $identity['identity_id']);
|
|
$identity = $db->fetch_assoc($query);
|
|
|
|
$this->assertSame('new-name', $identity['name']);
|
|
$this->assertSame('new@example.com', $identity['email']);
|
|
$this->assertSame('test', $identity['signature']);
|
|
$this->assertSame(1, (int) $identity['standard']);
|
|
}
|
|
|
|
/**
|
|
* Test run() method for a new identity
|
|
*/
|
|
function test_new_identity()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
|
|
/**
|
|
* Test run() method errors handling
|
|
*/
|
|
function test_run_errors()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
}
|