mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 06:44:03 +01:00
57 lines
1.9 KiB
PHP
57 lines
1.9 KiB
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Actions\Mail;
|
|
|
|
use Roundcube\Tests\ActionTestCase;
|
|
use Roundcube\Tests\OutputJsonMock;
|
|
|
|
/**
|
|
* Test class to test rcmail_action_mail_attachment_delete
|
|
*/
|
|
class AttachmentDeleteTest extends ActionTestCase
|
|
{
|
|
/**
|
|
* Test uploaded attachment delete
|
|
*/
|
|
public function test_run()
|
|
{
|
|
$rcmail = \rcmail::get_instance();
|
|
$action = new \rcmail_action_mail_attachment_delete();
|
|
$output = $this->initOutput(\rcmail_action::MODE_AJAX, 'mail', 'delete-attachment');
|
|
|
|
$this->assertInstanceOf(\rcmail_action::class, $action);
|
|
$this->assertTrue($action->checks());
|
|
|
|
// First we create the upload record
|
|
$file = $this->fileUpload('101');
|
|
|
|
// Test list_uploaded_files(), just because
|
|
$list = $rcmail->list_uploaded_files('101');
|
|
|
|
$this->assertSame([$file], $list);
|
|
|
|
// This is needed so upload deletion works
|
|
$rcmail = \rcmail::get_instance();
|
|
unset($rcmail->plugins->handlers['attachment_delete']);
|
|
$rcmail->plugins->register_hook('attachment_delete', static function ($att) {
|
|
$att['status'] = true;
|
|
$att['break'] = true;
|
|
return $att;
|
|
});
|
|
|
|
$_SERVER['REQUEST_METHOD'] = 'POST';
|
|
$_SESSION = ['compose_data_101' => ['test' => 'test']];
|
|
|
|
// Invoke the delete action
|
|
$_POST = ['_id' => '101', '_file' => 'rcmfile' . $file['id']];
|
|
$this->runAndAssert($action, OutputJsonMock::E_EXIT);
|
|
|
|
$result = $output->getOutput();
|
|
|
|
$this->assertContains('Content-Type: application/json; charset=UTF-8', $output->headers);
|
|
$this->assertSame('delete-attachment', $result['action']);
|
|
$this->assertSame('this.remove_from_attachment_list("rcmfile' . $file['id'] . '");', trim($result['exec']));
|
|
$this->assertNull($rcmail->get_uploaded_file($file['id']));
|
|
}
|
|
}
|