mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-21 20:13:35 +00:00
62 lines
1.3 KiB
PHP
62 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Class QRStringTest
|
|
*
|
|
* @filesource QRStringTest.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, QRString};
|
|
|
|
/**
|
|
* Tests the QRString output module
|
|
*/
|
|
class QRStringTest extends QROutputTestAbstract{
|
|
|
|
/**
|
|
* @inheritDoc
|
|
* @internal
|
|
*/
|
|
protected function getOutputInterface(QROptions $options):QROutputInterface{
|
|
return new QRString($options, $this->matrix);
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
* @internal
|
|
*/
|
|
public function types():array{
|
|
return [
|
|
'json' => [QRCode::OUTPUT_STRING_JSON],
|
|
'text' => [QRCode::OUTPUT_STRING_TEXT],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function testSetModuleValues():void{
|
|
|
|
$this->options->moduleValues = [
|
|
// data
|
|
QRMatrix::M_DATA_DARK => 'A',
|
|
QRMatrix::M_DATA => 'B',
|
|
];
|
|
|
|
$this->outputInterface = $this->getOutputInterface($this->options);
|
|
$data = $this->outputInterface->dump();
|
|
|
|
$this::assertStringContainsString('A', $data);
|
|
$this::assertStringContainsString('B', $data);
|
|
}
|
|
|
|
}
|