mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-02 22:34:03 +01:00
66 lines
2.1 KiB
PHP
66 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Actions\Settings;
|
|
|
|
use Roundcube\Tests\ActionTestCase;
|
|
use Roundcube\Tests\OutputJsonMock;
|
|
|
|
/**
|
|
* Test class to test rcmail_action_settings_response_delete
|
|
*/
|
|
class ResponseDeleteTest extends ActionTestCase
|
|
{
|
|
/**
|
|
* Test deleting a response
|
|
*/
|
|
public function test_delete_response()
|
|
{
|
|
$action = new \rcmail_action_settings_response_delete();
|
|
$output = $this->initOutput(\rcmail_action::MODE_AJAX, 'settings', 'delete-response');
|
|
|
|
$this->assertInstanceOf(\rcmail_action::class, $action);
|
|
$this->assertTrue($action->checks());
|
|
|
|
$rcmail = \rcmail::get_instance();
|
|
$rcmail->user->save_prefs(['compose_responses_static' => []]);
|
|
|
|
self::initDB('responses');
|
|
|
|
$responses = $rcmail->get_compose_responses();
|
|
|
|
$this->assertCount(2, $responses);
|
|
|
|
$rid = $responses[0]['id'];
|
|
|
|
// Test successful request
|
|
$_POST = ['_id' => $rid];
|
|
|
|
$this->runAndAssert($action, OutputJsonMock::E_EXIT);
|
|
|
|
$result = $output->getOutput();
|
|
|
|
$this->assertContains('Content-Type: application/json; charset=UTF-8', $output->headers);
|
|
$this->assertSame('delete-response', $result['action']);
|
|
$this->assertTrue(strpos($result['exec'], 'this.display_message("Successfully deleted.","confirmation");') !== false);
|
|
$this->assertTrue(strpos($result['exec'], 'this.remove_response("' . $rid . '")') !== false);
|
|
|
|
$responses = $rcmail->get_compose_responses();
|
|
|
|
$this->assertCount(1, $responses);
|
|
$this->assertTrue($responses[0]['id'] != $rid);
|
|
|
|
// Test error
|
|
$_POST = ['_id' => 'unknown'];
|
|
|
|
$this->runAndAssert($action, OutputJsonMock::E_EXIT);
|
|
|
|
$result = $output->getOutput();
|
|
|
|
$this->assertContains('Content-Type: application/json; charset=UTF-8', $output->headers);
|
|
$this->assertSame('delete-response', $result['action']);
|
|
$this->assertTrue(strpos($result['exec'], 'this.display_message("An error occurred while saving.","error"') !== false);
|
|
|
|
$this->assertCount(1, $rcmail->get_compose_responses());
|
|
}
|
|
}
|