Files
roundcubemail/tests/Actions/Contacts/Delete.php
2020-11-05 11:59:02 +01:00

57 lines
1.8 KiB
PHP

<?php
/**
* Test class to test rcmail_action_contacts_delete
*
* @package Tests
*/
class Actions_Contacts_Delete extends ActionTestCase
{
/**
* Test deleting of a single existing contact
*/
function test_delete_single_existing_contact()
{
$action = new rcmail_action_contacts_delete;
$output = $this->initOutput(rcmail_action::MODE_AJAX, 'contacts', 'delete');
$this->assertInstanceOf('rcmail_action', $action);
$this->assertTrue($action->checks());
self::initDB('contacts');
$db = rcmail::get_instance()->get_dbh();
$query = $db->query('SELECT `contact_id` FROM `contacts` WHERE `user_id` = 1 LIMIT 1');
$result = $db->fetch_assoc($query);
$cid = $result['contact_id'];
$_POST = [
'_cid' => $cid,
'_source' => '0'
];
$this->runAndAssert($action, OutputJsonMock::E_EXIT);
$result = $output->getOutput();
$this->assertSame(['Content-Type: application/json; charset=UTF-8'], $output->headers);
$this->assertSame('delete', $result['action']);
$this->assertSame(1, $result['env']['pagecount']);
$this->assertTrue(strpos($result['exec'], 'this.display_message("Contact(s) deleted successfully.","confirmation",0);') !== false);
$this->assertTrue(strpos($result['exec'], 'this.set_rowcount("Contacts 1 to 5 of 5")') !== false);
$query = $db->query('SELECT * FROM `contacts` WHERE `contact_id` = ?', $cid);
$result = $db->fetch_assoc($query);
$this->assertTrue(!empty($result['del']));
}
/**
* Test deleting from a search result (with multiple sources)
*/
function test_delete_from_search()
{
$this->markTestIncomplete();
}
}