mirror of
https://github.com/shlinkio/shlink.git
synced 2025-02-25 18:45:27 -06:00
Migrated QrCodeOptions to immutable object
This commit is contained in:
@@ -13,6 +13,8 @@
|
|||||||
],
|
],
|
||||||
"require": {
|
"require": {
|
||||||
"php": "^8.1",
|
"php": "^8.1",
|
||||||
|
"ext-curl": "*",
|
||||||
|
"ext-gd": "*",
|
||||||
"ext-json": "*",
|
"ext-json": "*",
|
||||||
"ext-pdo": "*",
|
"ext-pdo": "*",
|
||||||
"akrabat/ip-address-middleware": "^2.1",
|
"akrabat/ip-address-middleware": "^2.1",
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ return [
|
|||||||
Options\RedirectOptions::class => ConfigAbstractFactory::class,
|
Options\RedirectOptions::class => ConfigAbstractFactory::class,
|
||||||
Options\UrlShortenerOptions::class => ConfigAbstractFactory::class,
|
Options\UrlShortenerOptions::class => ConfigAbstractFactory::class,
|
||||||
Options\TrackingOptions::class => [ValinorConfigFactory::class, 'config.tracking'],
|
Options\TrackingOptions::class => [ValinorConfigFactory::class, 'config.tracking'],
|
||||||
Options\QrCodeOptions::class => ConfigAbstractFactory::class,
|
Options\QrCodeOptions::class => [ValinorConfigFactory::class, 'config.qr_codes'],
|
||||||
Options\RabbitMqOptions::class => ConfigAbstractFactory::class,
|
Options\RabbitMqOptions::class => ConfigAbstractFactory::class,
|
||||||
Options\WebhookOptions::class => ConfigAbstractFactory::class,
|
Options\WebhookOptions::class => ConfigAbstractFactory::class,
|
||||||
|
|
||||||
@@ -88,7 +88,6 @@ return [
|
|||||||
|
|
||||||
Options\RedirectOptions::class => ['config.redirects'],
|
Options\RedirectOptions::class => ['config.redirects'],
|
||||||
Options\UrlShortenerOptions::class => ['config.url_shortener'],
|
Options\UrlShortenerOptions::class => ['config.url_shortener'],
|
||||||
Options\QrCodeOptions::class => ['config.qr_codes'],
|
|
||||||
Options\RabbitMqOptions::class => ['config.rabbitmq'],
|
Options\RabbitMqOptions::class => ['config.rabbitmq'],
|
||||||
Options\WebhookOptions::class => ['config.visits_webhooks'],
|
Options\WebhookOptions::class => ['config.visits_webhooks'],
|
||||||
|
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ final class QrCodeParams
|
|||||||
|
|
||||||
private static function resolveSize(array $query, QrCodeOptions $defaults): int
|
private static function resolveSize(array $query, QrCodeOptions $defaults): int
|
||||||
{
|
{
|
||||||
$size = (int) ($query['size'] ?? $defaults->size());
|
$size = (int) ($query['size'] ?? $defaults->size);
|
||||||
if ($size < self::MIN_SIZE) {
|
if ($size < self::MIN_SIZE) {
|
||||||
return self::MIN_SIZE;
|
return self::MIN_SIZE;
|
||||||
}
|
}
|
||||||
@@ -62,7 +62,7 @@ final class QrCodeParams
|
|||||||
|
|
||||||
private static function resolveMargin(array $query, QrCodeOptions $defaults): int
|
private static function resolveMargin(array $query, QrCodeOptions $defaults): int
|
||||||
{
|
{
|
||||||
$margin = $query['margin'] ?? (string) $defaults->margin();
|
$margin = $query['margin'] ?? (string) $defaults->margin;
|
||||||
$intMargin = (int) $margin;
|
$intMargin = (int) $margin;
|
||||||
if ($margin !== (string) $intMargin) {
|
if ($margin !== (string) $intMargin) {
|
||||||
return 0;
|
return 0;
|
||||||
@@ -74,7 +74,7 @@ final class QrCodeParams
|
|||||||
private static function resolveWriter(array $query, QrCodeOptions $defaults): WriterInterface
|
private static function resolveWriter(array $query, QrCodeOptions $defaults): WriterInterface
|
||||||
{
|
{
|
||||||
$qFormat = self::normalizeParam($query['format'] ?? '');
|
$qFormat = self::normalizeParam($query['format'] ?? '');
|
||||||
$format = contains(self::SUPPORTED_FORMATS, $qFormat) ? $qFormat : self::normalizeParam($defaults->format());
|
$format = contains(self::SUPPORTED_FORMATS, $qFormat) ? $qFormat : self::normalizeParam($defaults->format);
|
||||||
|
|
||||||
return match ($format) {
|
return match ($format) {
|
||||||
'svg' => new SvgWriter(),
|
'svg' => new SvgWriter(),
|
||||||
@@ -84,7 +84,7 @@ final class QrCodeParams
|
|||||||
|
|
||||||
private static function resolveErrorCorrection(array $query, QrCodeOptions $defaults): ErrorCorrectionLevelInterface
|
private static function resolveErrorCorrection(array $query, QrCodeOptions $defaults): ErrorCorrectionLevelInterface
|
||||||
{
|
{
|
||||||
$errorCorrectionLevel = self::normalizeParam($query['errorCorrection'] ?? $defaults->errorCorrection());
|
$errorCorrectionLevel = self::normalizeParam($query['errorCorrection'] ?? $defaults->errorCorrection);
|
||||||
return match ($errorCorrectionLevel) {
|
return match ($errorCorrectionLevel) {
|
||||||
'h' => new ErrorCorrectionLevelHigh(),
|
'h' => new ErrorCorrectionLevelHigh(),
|
||||||
'q' => new ErrorCorrectionLevelQuartile(),
|
'q' => new ErrorCorrectionLevelQuartile(),
|
||||||
@@ -97,7 +97,7 @@ final class QrCodeParams
|
|||||||
{
|
{
|
||||||
$doNotRoundBlockSize = isset($query['roundBlockSize'])
|
$doNotRoundBlockSize = isset($query['roundBlockSize'])
|
||||||
? $query['roundBlockSize'] === 'false'
|
? $query['roundBlockSize'] === 'false'
|
||||||
: ! $defaults->roundBlockSize();
|
: ! $defaults->roundBlockSize;
|
||||||
return $doNotRoundBlockSize ? new RoundBlockSizeModeNone() : new RoundBlockSizeModeMargin();
|
return $doNotRoundBlockSize ? new RoundBlockSizeModeNone() : new RoundBlockSizeModeMargin();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,69 +4,20 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace Shlinkio\Shlink\Core\Options;
|
namespace Shlinkio\Shlink\Core\Options;
|
||||||
|
|
||||||
use Laminas\Stdlib\AbstractOptions;
|
|
||||||
|
|
||||||
use const Shlinkio\Shlink\DEFAULT_QR_CODE_ERROR_CORRECTION;
|
use const Shlinkio\Shlink\DEFAULT_QR_CODE_ERROR_CORRECTION;
|
||||||
use const Shlinkio\Shlink\DEFAULT_QR_CODE_FORMAT;
|
use const Shlinkio\Shlink\DEFAULT_QR_CODE_FORMAT;
|
||||||
use const Shlinkio\Shlink\DEFAULT_QR_CODE_MARGIN;
|
use const Shlinkio\Shlink\DEFAULT_QR_CODE_MARGIN;
|
||||||
use const Shlinkio\Shlink\DEFAULT_QR_CODE_ROUND_BLOCK_SIZE;
|
use const Shlinkio\Shlink\DEFAULT_QR_CODE_ROUND_BLOCK_SIZE;
|
||||||
use const Shlinkio\Shlink\DEFAULT_QR_CODE_SIZE;
|
use const Shlinkio\Shlink\DEFAULT_QR_CODE_SIZE;
|
||||||
|
|
||||||
class QrCodeOptions extends AbstractOptions
|
final class QrCodeOptions
|
||||||
{
|
{
|
||||||
private int $size = DEFAULT_QR_CODE_SIZE;
|
public function __construct(
|
||||||
private int $margin = DEFAULT_QR_CODE_MARGIN;
|
public readonly int $size = DEFAULT_QR_CODE_SIZE,
|
||||||
private string $format = DEFAULT_QR_CODE_FORMAT;
|
public readonly int $margin = DEFAULT_QR_CODE_MARGIN,
|
||||||
private string $errorCorrection = DEFAULT_QR_CODE_ERROR_CORRECTION;
|
public readonly string $format = DEFAULT_QR_CODE_FORMAT,
|
||||||
private bool $roundBlockSize = DEFAULT_QR_CODE_ROUND_BLOCK_SIZE;
|
public readonly string $errorCorrection = DEFAULT_QR_CODE_ERROR_CORRECTION,
|
||||||
|
public readonly bool $roundBlockSize = DEFAULT_QR_CODE_ROUND_BLOCK_SIZE,
|
||||||
public function size(): int
|
) {
|
||||||
{
|
|
||||||
return $this->size;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function setSize(int $size): void
|
|
||||||
{
|
|
||||||
$this->size = $size;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function margin(): int
|
|
||||||
{
|
|
||||||
return $this->margin;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function setMargin(int $margin): void
|
|
||||||
{
|
|
||||||
$this->margin = $margin;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function format(): string
|
|
||||||
{
|
|
||||||
return $this->format;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function setFormat(string $format): void
|
|
||||||
{
|
|
||||||
$this->format = $format;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function errorCorrection(): string
|
|
||||||
{
|
|
||||||
return $this->errorCorrection;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function setErrorCorrection(string $errorCorrection): void
|
|
||||||
{
|
|
||||||
$this->errorCorrection = $errorCorrection;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function roundBlockSize(): bool
|
|
||||||
{
|
|
||||||
return $this->roundBlockSize;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function setRoundBlockSize(bool $roundBlockSize): void
|
|
||||||
{
|
|
||||||
$this->roundBlockSize = $roundBlockSize;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,6 @@ namespace ShlinkioTest\Shlink\Core\Action;
|
|||||||
use Laminas\Diactoros\Response;
|
use Laminas\Diactoros\Response;
|
||||||
use Laminas\Diactoros\ServerRequest;
|
use Laminas\Diactoros\ServerRequest;
|
||||||
use Laminas\Diactoros\ServerRequestFactory;
|
use Laminas\Diactoros\ServerRequestFactory;
|
||||||
use Mezzio\Router\RouterInterface;
|
|
||||||
use PHPUnit\Framework\TestCase;
|
use PHPUnit\Framework\TestCase;
|
||||||
use Prophecy\Argument;
|
use Prophecy\Argument;
|
||||||
use Prophecy\PhpUnit\ProphecyTrait;
|
use Prophecy\PhpUnit\ProphecyTrait;
|
||||||
@@ -35,24 +34,11 @@ class QrCodeActionTest extends TestCase
|
|||||||
private const WHITE = 0xFFFFFF;
|
private const WHITE = 0xFFFFFF;
|
||||||
private const BLACK = 0x0;
|
private const BLACK = 0x0;
|
||||||
|
|
||||||
private QrCodeAction $action;
|
|
||||||
private ObjectProphecy $urlResolver;
|
private ObjectProphecy $urlResolver;
|
||||||
private QrCodeOptions $options;
|
|
||||||
|
|
||||||
protected function setUp(): void
|
protected function setUp(): void
|
||||||
{
|
{
|
||||||
$router = $this->prophesize(RouterInterface::class);
|
|
||||||
$router->generateUri(Argument::cetera())->willReturn('/foo/bar');
|
|
||||||
|
|
||||||
$this->urlResolver = $this->prophesize(ShortUrlResolverInterface::class);
|
$this->urlResolver = $this->prophesize(ShortUrlResolverInterface::class);
|
||||||
$this->options = new QrCodeOptions();
|
|
||||||
|
|
||||||
$this->action = new QrCodeAction(
|
|
||||||
$this->urlResolver->reveal(),
|
|
||||||
new ShortUrlStringifier(['domain' => 'doma.in']),
|
|
||||||
new NullLogger(),
|
|
||||||
$this->options,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/** @test */
|
/** @test */
|
||||||
@@ -65,7 +51,7 @@ class QrCodeActionTest extends TestCase
|
|||||||
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
||||||
$process = $delegate->handle(Argument::any())->willReturn(new Response());
|
$process = $delegate->handle(Argument::any())->willReturn(new Response());
|
||||||
|
|
||||||
$this->action->process((new ServerRequest())->withAttribute('shortCode', $shortCode), $delegate->reveal());
|
$this->action()->process((new ServerRequest())->withAttribute('shortCode', $shortCode), $delegate->reveal());
|
||||||
|
|
||||||
$process->shouldHaveBeenCalledOnce();
|
$process->shouldHaveBeenCalledOnce();
|
||||||
}
|
}
|
||||||
@@ -79,7 +65,7 @@ class QrCodeActionTest extends TestCase
|
|||||||
->shouldBeCalledOnce();
|
->shouldBeCalledOnce();
|
||||||
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
||||||
|
|
||||||
$resp = $this->action->process(
|
$resp = $this->action()->process(
|
||||||
(new ServerRequest())->withAttribute('shortCode', $shortCode),
|
(new ServerRequest())->withAttribute('shortCode', $shortCode),
|
||||||
$delegate->reveal(),
|
$delegate->reveal(),
|
||||||
);
|
);
|
||||||
@@ -98,7 +84,6 @@ class QrCodeActionTest extends TestCase
|
|||||||
array $query,
|
array $query,
|
||||||
string $expectedContentType,
|
string $expectedContentType,
|
||||||
): void {
|
): void {
|
||||||
$this->options->setFromArray(['format' => $defaultFormat]);
|
|
||||||
$code = 'abc123';
|
$code = 'abc123';
|
||||||
$this->urlResolver->resolveEnabledShortUrl(ShortUrlIdentifier::fromShortCodeAndDomain($code, ''))->willReturn(
|
$this->urlResolver->resolveEnabledShortUrl(ShortUrlIdentifier::fromShortCodeAndDomain($code, ''))->willReturn(
|
||||||
ShortUrl::createEmpty(),
|
ShortUrl::createEmpty(),
|
||||||
@@ -106,7 +91,7 @@ class QrCodeActionTest extends TestCase
|
|||||||
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
||||||
$req = (new ServerRequest())->withAttribute('shortCode', $code)->withQueryParams($query);
|
$req = (new ServerRequest())->withAttribute('shortCode', $code)->withQueryParams($query);
|
||||||
|
|
||||||
$resp = $this->action->process($req, $delegate->reveal());
|
$resp = $this->action(new QrCodeOptions(format: $defaultFormat))->process($req, $delegate->reveal());
|
||||||
|
|
||||||
self::assertEquals($expectedContentType, $resp->getHeaderLine('Content-Type'));
|
self::assertEquals($expectedContentType, $resp->getHeaderLine('Content-Type'));
|
||||||
}
|
}
|
||||||
@@ -128,18 +113,17 @@ class QrCodeActionTest extends TestCase
|
|||||||
* @dataProvider provideRequestsWithSize
|
* @dataProvider provideRequestsWithSize
|
||||||
*/
|
*/
|
||||||
public function imageIsReturnedWithExpectedSize(
|
public function imageIsReturnedWithExpectedSize(
|
||||||
array $defaults,
|
QrCodeOptions $defaultOptions,
|
||||||
ServerRequestInterface $req,
|
ServerRequestInterface $req,
|
||||||
int $expectedSize,
|
int $expectedSize,
|
||||||
): void {
|
): void {
|
||||||
$this->options->setFromArray($defaults);
|
|
||||||
$code = 'abc123';
|
$code = 'abc123';
|
||||||
$this->urlResolver->resolveEnabledShortUrl(ShortUrlIdentifier::fromShortCodeAndDomain($code, ''))->willReturn(
|
$this->urlResolver->resolveEnabledShortUrl(ShortUrlIdentifier::fromShortCodeAndDomain($code, ''))->willReturn(
|
||||||
ShortUrl::createEmpty(),
|
ShortUrl::createEmpty(),
|
||||||
);
|
);
|
||||||
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
||||||
|
|
||||||
$resp = $this->action->process($req->withAttribute('shortCode', $code), $delegate->reveal());
|
$resp = $this->action($defaultOptions)->process($req->withAttribute('shortCode', $code), $delegate->reveal());
|
||||||
[$size] = getimagesizefromstring($resp->getBody()->__toString());
|
[$size] = getimagesizefromstring($resp->getBody()->__toString());
|
||||||
|
|
||||||
self::assertEquals($expectedSize, $size);
|
self::assertEquals($expectedSize, $size);
|
||||||
@@ -148,52 +132,64 @@ class QrCodeActionTest extends TestCase
|
|||||||
public function provideRequestsWithSize(): iterable
|
public function provideRequestsWithSize(): iterable
|
||||||
{
|
{
|
||||||
yield 'different margin and size defaults' => [
|
yield 'different margin and size defaults' => [
|
||||||
['size' => 660, 'margin' => 40],
|
new QrCodeOptions(size: 660, margin: 40),
|
||||||
ServerRequestFactory::fromGlobals(),
|
ServerRequestFactory::fromGlobals(),
|
||||||
740,
|
740,
|
||||||
];
|
];
|
||||||
yield 'no size' => [[], ServerRequestFactory::fromGlobals(), 300];
|
yield 'no size' => [new QrCodeOptions(), ServerRequestFactory::fromGlobals(), 300];
|
||||||
yield 'no size, different default' => [['size' => 500], ServerRequestFactory::fromGlobals(), 500];
|
yield 'no size, different default' => [new QrCodeOptions(size: 500), ServerRequestFactory::fromGlobals(), 500];
|
||||||
yield 'size in query' => [[], ServerRequestFactory::fromGlobals()->withQueryParams(['size' => '123']), 123];
|
yield 'size in query' => [
|
||||||
|
new QrCodeOptions(),
|
||||||
|
ServerRequestFactory::fromGlobals()->withQueryParams(['size' => '123']),
|
||||||
|
123,
|
||||||
|
];
|
||||||
yield 'size in query, default margin' => [
|
yield 'size in query, default margin' => [
|
||||||
['margin' => 25],
|
new QrCodeOptions(margin: 25),
|
||||||
ServerRequestFactory::fromGlobals()->withQueryParams(['size' => '123']),
|
ServerRequestFactory::fromGlobals()->withQueryParams(['size' => '123']),
|
||||||
173,
|
173,
|
||||||
];
|
];
|
||||||
yield 'margin' => [[], ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '35']), 370];
|
yield 'margin' => [
|
||||||
|
new QrCodeOptions(),
|
||||||
|
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '35']),
|
||||||
|
370,
|
||||||
|
];
|
||||||
yield 'margin and different default' => [
|
yield 'margin and different default' => [
|
||||||
['size' => 400],
|
new QrCodeOptions(size: 400),
|
||||||
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '35']),
|
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '35']),
|
||||||
470,
|
470,
|
||||||
];
|
];
|
||||||
yield 'margin and size' => [
|
yield 'margin and size' => [
|
||||||
[],
|
new QrCodeOptions(),
|
||||||
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '100', 'size' => '200']),
|
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '100', 'size' => '200']),
|
||||||
400,
|
400,
|
||||||
];
|
];
|
||||||
yield 'negative margin' => [[], ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '-50']), 300];
|
yield 'negative margin' => [
|
||||||
|
new QrCodeOptions(),
|
||||||
|
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '-50']),
|
||||||
|
300,
|
||||||
|
];
|
||||||
yield 'negative margin, default margin' => [
|
yield 'negative margin, default margin' => [
|
||||||
['margin' => 10],
|
new QrCodeOptions(margin: 10),
|
||||||
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '-50']),
|
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '-50']),
|
||||||
300,
|
300,
|
||||||
];
|
];
|
||||||
yield 'non-numeric margin' => [
|
yield 'non-numeric margin' => [
|
||||||
[],
|
new QrCodeOptions(),
|
||||||
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => 'foo']),
|
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => 'foo']),
|
||||||
300,
|
300,
|
||||||
];
|
];
|
||||||
yield 'negative margin and size' => [
|
yield 'negative margin and size' => [
|
||||||
[],
|
new QrCodeOptions(),
|
||||||
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '-1', 'size' => '150']),
|
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '-1', 'size' => '150']),
|
||||||
150,
|
150,
|
||||||
];
|
];
|
||||||
yield 'negative margin and size, default margin' => [
|
yield 'negative margin and size, default margin' => [
|
||||||
['margin' => 5],
|
new QrCodeOptions(margin: 5),
|
||||||
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '-1', 'size' => '150']),
|
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => '-1', 'size' => '150']),
|
||||||
150,
|
150,
|
||||||
];
|
];
|
||||||
yield 'non-numeric margin and size' => [
|
yield 'non-numeric margin and size' => [
|
||||||
[],
|
new QrCodeOptions(),
|
||||||
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => 'foo', 'size' => '538']),
|
ServerRequestFactory::fromGlobals()->withQueryParams(['margin' => 'foo', 'size' => '538']),
|
||||||
538,
|
538,
|
||||||
];
|
];
|
||||||
@@ -204,11 +200,10 @@ class QrCodeActionTest extends TestCase
|
|||||||
* @dataProvider provideRoundBlockSize
|
* @dataProvider provideRoundBlockSize
|
||||||
*/
|
*/
|
||||||
public function imageCanRemoveExtraMarginWhenBlockRoundIsDisabled(
|
public function imageCanRemoveExtraMarginWhenBlockRoundIsDisabled(
|
||||||
array $defaults,
|
QrCodeOptions $defaultOptions,
|
||||||
?string $roundBlockSize,
|
?string $roundBlockSize,
|
||||||
int $expectedColor,
|
int $expectedColor,
|
||||||
): void {
|
): void {
|
||||||
$this->options->setFromArray($defaults);
|
|
||||||
$code = 'abc123';
|
$code = 'abc123';
|
||||||
$req = ServerRequestFactory::fromGlobals()
|
$req = ServerRequestFactory::fromGlobals()
|
||||||
->withQueryParams(['size' => 250, 'roundBlockSize' => $roundBlockSize])
|
->withQueryParams(['size' => 250, 'roundBlockSize' => $roundBlockSize])
|
||||||
@@ -219,7 +214,7 @@ class QrCodeActionTest extends TestCase
|
|||||||
);
|
);
|
||||||
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
$delegate = $this->prophesize(RequestHandlerInterface::class);
|
||||||
|
|
||||||
$resp = $this->action->process($req, $delegate->reveal());
|
$resp = $this->action($defaultOptions)->process($req, $delegate->reveal());
|
||||||
$image = imagecreatefromstring($resp->getBody()->__toString());
|
$image = imagecreatefromstring($resp->getBody()->__toString());
|
||||||
$color = imagecolorat($image, 1, 1);
|
$color = imagecolorat($image, 1, 1);
|
||||||
|
|
||||||
@@ -228,11 +223,33 @@ class QrCodeActionTest extends TestCase
|
|||||||
|
|
||||||
public function provideRoundBlockSize(): iterable
|
public function provideRoundBlockSize(): iterable
|
||||||
{
|
{
|
||||||
yield 'no round block param' => [[], null, self::WHITE];
|
yield 'no round block param' => [new QrCodeOptions(), null, self::WHITE];
|
||||||
yield 'no round block param, but disabled by default' => [['round_block_size' => false], null, self::BLACK];
|
yield 'no round block param, but disabled by default' => [
|
||||||
yield 'round block: "true"' => [[], 'true', self::WHITE];
|
new QrCodeOptions(roundBlockSize: false),
|
||||||
yield 'round block: "true", but disabled by default' => [['round_block_size' => false], 'true', self::WHITE];
|
null,
|
||||||
yield 'round block: "false"' => [[], 'false', self::BLACK];
|
self::BLACK,
|
||||||
yield 'round block: "false", but enabled by default' => [['round_block_size' => true], 'false', self::BLACK];
|
];
|
||||||
|
yield 'round block: "true"' => [new QrCodeOptions(), 'true', self::WHITE];
|
||||||
|
yield 'round block: "true", but disabled by default' => [
|
||||||
|
new QrCodeOptions(roundBlockSize: false),
|
||||||
|
'true',
|
||||||
|
self::WHITE,
|
||||||
|
];
|
||||||
|
yield 'round block: "false"' => [new QrCodeOptions(), 'false', self::BLACK];
|
||||||
|
yield 'round block: "false", but enabled by default' => [
|
||||||
|
new QrCodeOptions(roundBlockSize: true),
|
||||||
|
'false',
|
||||||
|
self::BLACK,
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
public function action(?QrCodeOptions $options = null): QrCodeAction
|
||||||
|
{
|
||||||
|
return new QrCodeAction(
|
||||||
|
$this->urlResolver->reveal(),
|
||||||
|
new ShortUrlStringifier(['domain' => 'doma.in']),
|
||||||
|
new NullLogger(),
|
||||||
|
$options ?? new QrCodeOptions(),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user