| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?php
- /**
- * Class QRImageTest
- *
- * @filesource QRImageTest.php
- * @created 24.12.2017
- * @package chillerlan\QRCodeTest\Output
- * @author Smiley <smiley@chillerlan.net>
- * @copyright 2017 Smiley
- * @license MIT
- */
- namespace chillerlan\QRCodeTest\Output;
- use chillerlan\QRCode\{QRCode, QROptions};
- use chillerlan\QRCode\Data\QRMatrix;
- use chillerlan\QRCode\Output\{QROutputInterface, QRImage};
- /**
- * Tests the QRImage output module
- */
- class QRImageTest extends QROutputTestAbstract{
- /**
- * @inheritDoc
- * @internal
- */
- public function setUp():void{
- if(!extension_loaded('gd')){
- $this->markTestSkipped('ext-gd not loaded');
- return;
- }
- parent::setUp();
- }
- /**
- * @inheritDoc
- * @internal
- */
- protected function getOutputInterface(QROptions $options):QROutputInterface{
- return new QRImage($options, $this->matrix);
- }
- /**
- * @inheritDoc
- * @internal
- */
- public function types():array{
- return [
- 'png' => [QRCode::OUTPUT_IMAGE_PNG],
- 'gif' => [QRCode::OUTPUT_IMAGE_GIF],
- 'jpg' => [QRCode::OUTPUT_IMAGE_JPG],
- ];
- }
- /**
- * @inheritDoc
- */
- public function testSetModuleValues():void{
- $this->options->moduleValues = [
- // data
- QRMatrix::M_DATA_DARK => [0, 0, 0],
- QRMatrix::M_DATA => [255, 255, 255],
- ];
- $this->outputInterface = $this->getOutputInterface($this->options);
- $this->outputInterface->dump();
- $this::assertTrue(true); // tricking the code coverage
- }
- /**
- * @phan-suppress PhanUndeclaredClassReference
- */
- public function testOutputGetResource():void{
- $this->options->returnResource = true;
- $this->outputInterface = $this->getOutputInterface($this->options);
- $actual = $this->outputInterface->dump();
- /** @noinspection PhpElementIsNotAvailableInCurrentPhpVersionInspection */
- \PHP_MAJOR_VERSION >= 8
- ? $this::assertInstanceOf(\GdImage::class, $actual)
- : $this::assertIsResource($actual);
- }
- }
|