mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-02 22:34:03 +01:00
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Actions\Settings;
|
|
|
|
use Roundcube\Tests\ActionTestCase;
|
|
use Roundcube\Tests\OutputHtmlMock;
|
|
|
|
/**
|
|
* Test class to test rcmail_action_settings_response_create
|
|
*/
|
|
class ResponseCreateTest extends ActionTestCase
|
|
{
|
|
/**
|
|
* Test run() method
|
|
*/
|
|
public function test_run()
|
|
{
|
|
$action = new \rcmail_action_settings_response_create();
|
|
$output = $this->initOutput(\rcmail_action::MODE_HTTP, 'settings', 'add-response');
|
|
|
|
$this->assertInstanceOf(\rcmail_action::class, $action);
|
|
$this->assertTrue($action->checks());
|
|
|
|
$_GET = [];
|
|
|
|
$this->runAndAssert($action, OutputHtmlMock::E_EXIT);
|
|
|
|
$result = $output->getOutput();
|
|
|
|
$this->assertSame('responseedit', $output->template);
|
|
$this->assertSame('Add response', $output->getProperty('pagetitle'));
|
|
$this->assertFalse($output->get_env('readonly'));
|
|
$this->assertTrue(stripos($result, '<!DOCTYPE html>') === 0);
|
|
$this->assertTrue(strpos($result, "rcmail.gui_object('editform', 'form')") !== false);
|
|
}
|
|
}
|