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

46 lines
1.5 KiB
PHP

<?php
namespace Roundcube\Tests\Actions\Mail;
use Roundcube\Tests\ActionTestCase;
use Roundcube\Tests\OutputJsonMock;
/**
* Test class to test rcmail_action_mail_attachment_rename
*/
class AttachmentRenameTest extends ActionTestCase
{
/**
* Test uploaded attachment rename
*/
public function test_run()
{
$rcmail = \rcmail::get_instance();
$action = new \rcmail_action_mail_attachment_rename();
$output = $this->initOutput(\rcmail_action::MODE_AJAX, 'mail', 'rename-attachment');
$this->assertInstanceOf(\rcmail_action::class, $action);
$this->assertTrue($action->checks());
// First we create the upload record
$file = $this->fileUpload('100');
$_SERVER['REQUEST_METHOD'] = 'POST';
$_SESSION = ['compose_data_100' => ['test' => 'test']];
// Invoke the rename action
$_POST = ['_id' => '100', '_file' => 'rcmfile' . $file['id'], '_name' => 'mod.gif'];
$this->runAndAssert($action, OutputJsonMock::E_EXIT);
$result = $output->getOutput();
$this->assertContains('Content-Type: application/json; charset=UTF-8', $output->headers);
$this->assertSame('rename-attachment', $result['action']);
$this->assertSame('this.rename_attachment_handler("rcmfile' . $file['id'] . '","mod.gif");', trim($result['exec']));
$upload = $rcmail->get_uploaded_file($file['id']);
$this->assertSame($_POST['_name'], $upload['name']);
$this->assertSame($_POST['_id'], $upload['group']);
}
}