getAbstractRenderer(DocxRenderer::class); self::assertFalse($sut->supports($this->getInvoiceDocument('invoice.html.twig'))); self::assertFalse($sut->supports($this->getInvoiceDocument('service-date.pdf.twig'))); self::assertFalse($sut->supports($this->getInvoiceDocument('timesheet.html.twig'))); self::assertTrue($sut->supports($this->getInvoiceDocument('company.docx', true))); self::assertFalse($sut->supports($this->getInvoiceDocument('spreadsheet.xlsx', true))); self::assertFalse($sut->supports($this->getInvoiceDocument('open-spreadsheet.ods', true))); } public function testRender(): void { /** @var DocxRenderer $sut */ $sut = $this->getAbstractRenderer(DocxRenderer::class); $model = $this->getInvoiceModel(); $document = $this->getInvoiceDocument('company.docx', true); /** @var BinaryFileResponse $response */ $response = $sut->render($document, $model); $filename = $model->getInvoiceNumber() . '-customer_with_special_name.docx'; $file = $response->getFile(); self::assertEquals('application/vnd.openxmlformats-officedocument.wordprocessingml.document', $response->headers->get('Content-Type')); self::assertEquals('attachment; filename=' . $filename, $response->headers->get('Content-Disposition')); self::assertTrue(file_exists($file->getPathname())); ob_start(); $response->sendContent(); $content2 = ob_get_clean(); self::assertNotEmpty($content2); self::assertFalse(file_exists($file->getRealPath())); } }