|
|
@@ -0,0 +1,89 @@
|
|
|
+<?php
|
|
|
+/**
|
|
|
+ * Class QRFpdfTest
|
|
|
+ *
|
|
|
+ * @filesource QRFpdfTest.php
|
|
|
+ * @created 03.06.2020
|
|
|
+ * @package chillerlan\QRCodeTest\Output
|
|
|
+ * @author smiley <smiley@chillerlan.net>
|
|
|
+ * @copyright 2020 smiley
|
|
|
+ * @license MIT
|
|
|
+ */
|
|
|
+
|
|
|
+namespace chillerlan\QRCodeTest\Output;
|
|
|
+
|
|
|
+use FPDF;
|
|
|
+use chillerlan\QRCode\Output\{QRFpdf, QROutputInterface};
|
|
|
+use chillerlan\QRCode\{QRCode, QROptions};
|
|
|
+
|
|
|
+use function class_exists, substr;
|
|
|
+
|
|
|
+/**
|
|
|
+ * Tests the QRFpdf output module
|
|
|
+ */
|
|
|
+class QRFpdfTest extends QROutputTestAbstract{
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @inheritDoc
|
|
|
+ * @internal
|
|
|
+ */
|
|
|
+ public function setUp():void{
|
|
|
+
|
|
|
+ if(!class_exists(FPDF::class)){
|
|
|
+ $this->markTestSkipped('FPDF not available');
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ parent::setUp();
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @inheritDoc
|
|
|
+ * @internal
|
|
|
+ */
|
|
|
+ protected function getOutputInterface(QROptions $options):QROutputInterface{
|
|
|
+ return new QRFpdf($options, $this->matrix);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @inheritDoc
|
|
|
+ * @internal
|
|
|
+ */
|
|
|
+ public function types():array{
|
|
|
+ return [
|
|
|
+ 'fpdf' => [QRCode::OUTPUT_FPDF],
|
|
|
+ ];
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @inheritDoc
|
|
|
+ */
|
|
|
+ public function testSetModuleValues():void{
|
|
|
+
|
|
|
+ $this->options->moduleValues = [
|
|
|
+ // data
|
|
|
+ 1024 => [0, 0, 0],
|
|
|
+ 4 => [255, 255, 255],
|
|
|
+ ];
|
|
|
+
|
|
|
+ $this->outputInterface = $this->getOutputInterface($this->options);
|
|
|
+ $this->outputInterface->dump();
|
|
|
+
|
|
|
+ $this::assertTrue(true); // tricking the code coverage
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @inheritDoc
|
|
|
+ * @dataProvider types
|
|
|
+ */
|
|
|
+ public function testRenderImage(string $type):void{
|
|
|
+ $this->options->outputType = $type;
|
|
|
+
|
|
|
+ $this::assertStringContainsString(
|
|
|
+ // substr() to avoid CreationDate
|
|
|
+ substr(file_get_contents(__DIR__.'/samples/'.$type), 0, 2560),
|
|
|
+ (new QRCode($this->options))->render('test')
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+}
|