mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-17 18:41:04 +00:00
53 lines
1.2 KiB
PHP
53 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* Class QRStringTEXTTest
|
|
*
|
|
* @created 11.12.2021
|
|
* @author smiley <smiley@chillerlan.net>
|
|
* @copyright 2021 smiley
|
|
* @license MIT
|
|
*/
|
|
|
|
namespace chillerlan\QRCodeTest\Output;
|
|
|
|
use chillerlan\QRCode\Data\QRMatrix;
|
|
use chillerlan\QRCode\Output\QROutputInterface;
|
|
use chillerlan\QRCode\Output\QRStringText;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
final class QRStringTEXTTest extends QROutputTestAbstract{
|
|
|
|
protected string $type = QROutputInterface::STRING_TEXT;
|
|
protected string $FQN = QRStringText::class;
|
|
|
|
public static function moduleValueProvider():array{
|
|
return [
|
|
'invalid: wrong type' => [[], false],
|
|
'valid: string' => ['abc', true],
|
|
'valid: zero length string' => ['', true],
|
|
'valid: empty string' => [' ', true],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function testSetModuleValues():void{
|
|
|
|
$this->options->moduleValues = [
|
|
// data
|
|
QRMatrix::M_DATA_DARK => 'A',
|
|
QRMatrix::M_DATA => 'B',
|
|
];
|
|
|
|
$this->outputInterface = new $this->FQN($this->options, $this->matrix);
|
|
$data = $this->outputInterface->dump();
|
|
|
|
$this::assertStringContainsString('A', $data);
|
|
$this::assertStringContainsString('B', $data);
|
|
}
|
|
|
|
}
|