Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2024-09-11 07:37:01 +02:00
Родитель bfaddda421
Коммит 3a2cefa509
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CC42AC2A7F0E56D8
3 изменённых файлов: 3 добавлений и 6 удалений

Просмотреть файл

@ -22,5 +22,5 @@ return RectorConfig::configure()
phpunit: true,
)
->withPhpSets(
php71: true,
php73: true,
);

Просмотреть файл

@ -14,11 +14,8 @@ use OCA\Mail\Http\AttachmentDownloadResponse;
class AttachmentDownloadResponseTest extends TestCase {
/**
* @dataProvider providesResponseData
* @param $content
* @param $filename
* @param $contentType
*/
public function testIt($content, $filename, $contentType) {
public function testIt(string $content, string $filename, string $contentType) {
$resp = new AttachmentDownloadResponse($content, $filename, $contentType);
$headers = $resp->getHeaders();
$this->assertEquals($content, $resp->render());

Просмотреть файл

@ -25,7 +25,7 @@ class ProxyDownloadResponseTest extends TestCase {
$this->assertArrayHasKey('Content-Type', $headers);
$this->assertEquals($contentType, $headers['Content-Type']);
$this->assertArrayHasKey('Content-Disposition', $headers);
$pos = strpos($headers['Content-Disposition'], $filename);
$pos = strpos($headers['Content-Disposition'], (string)$filename);
$this->assertTrue($pos > 0);
}