Files
roundcubemail/tests/Actions/Contacts/DeleteTest.php
Aleksander Machniak 825fb4fb58 Fix tests regression
2024-08-04 10:53:03 +02:00

60 lines
1.9 KiB
PHP

<?php
namespace Roundcube\Tests\Actions\Contacts;
use Roundcube\Tests\ActionTestCase;
use Roundcube\Tests\OutputJsonMock;
/**
* Test class to test rcmail_action_contacts_delete
*/
class DeleteTest extends ActionTestCase
{
/**
* Test deleting of a single existing contact
*/
public 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::class, $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->assertContains('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)
*/
public function test_delete_from_search()
{
$this->markTestIncomplete();
}
}