2021-02-26 16:16:17 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Class DatainterfaceTestAbstract
|
|
|
|
*
|
|
|
|
* @filesource DatainterfaceTestAbstract.php
|
|
|
|
* @created 24.11.2017
|
|
|
|
* @package chillerlan\QRCodeTest\Data
|
|
|
|
* @author Smiley <smiley@chillerlan.net>
|
|
|
|
* @copyright 2017 Smiley
|
|
|
|
* @license MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace chillerlan\QRCodeTest\Data;
|
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
use chillerlan\QRCode\QRCode;
|
2021-02-26 16:16:17 +00:00
|
|
|
use chillerlan\QRCode\QROptions;
|
2022-07-02 14:01:51 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2021-02-26 16:16:17 +00:00
|
|
|
use chillerlan\QRCode\Data\{QRCodeDataException, QRDataInterface, QRMatrix};
|
2022-07-02 14:01:51 +00:00
|
|
|
use ReflectionClass;
|
2021-02-26 16:16:17 +00:00
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
use function str_repeat;
|
2021-02-26 16:16:17 +00:00
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
/**
|
|
|
|
* The data interface test abstract
|
|
|
|
*/
|
|
|
|
abstract class DatainterfaceTestAbstract extends TestCase{
|
2021-02-26 16:16:17 +00:00
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
/** @internal */
|
|
|
|
protected ReflectionClass $reflection;
|
|
|
|
/** @internal */
|
|
|
|
protected QRDataInterface $dataInterface;
|
|
|
|
/** @internal */
|
|
|
|
protected string $testdata;
|
|
|
|
/** @internal */
|
|
|
|
protected array $expected;
|
2021-02-26 16:16:17 +00:00
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2021-02-26 16:16:17 +00:00
|
|
|
protected function setUp():void{
|
2022-07-02 14:01:51 +00:00
|
|
|
$this->dataInterface = $this->getDataInterfaceInstance(new QROptions(['version' => 4]));
|
|
|
|
$this->reflection = new ReflectionClass($this->dataInterface);
|
2021-02-26 16:16:17 +00:00
|
|
|
}
|
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
/**
|
|
|
|
* Returns a data interface instance
|
|
|
|
*
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
abstract protected function getDataInterfaceInstance(QROptions $options):QRDataInterface;
|
2021-02-26 16:16:17 +00:00
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
/**
|
|
|
|
* Verifies the data interface instance
|
|
|
|
*/
|
|
|
|
public function testInstance():void{
|
|
|
|
$this::assertInstanceOf(QRDataInterface::class, $this->dataInterface);
|
2021-02-26 16:16:17 +00:00
|
|
|
}
|
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
/**
|
|
|
|
* Tests ecc masking and verifies against a sample
|
|
|
|
*/
|
|
|
|
public function testMaskEcc():void{
|
2021-02-26 16:16:17 +00:00
|
|
|
$this->dataInterface->setData($this->testdata);
|
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
$maskECC = $this->reflection->getMethod('maskECC');
|
|
|
|
$maskECC->setAccessible(true);
|
|
|
|
|
|
|
|
$this::assertSame($this->expected, $maskECC->invoke($this->dataInterface));
|
2021-02-26 16:16:17 +00:00
|
|
|
}
|
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
/**
|
|
|
|
* @see testInitMatrix()
|
|
|
|
* @internal
|
|
|
|
* @return int[][]
|
|
|
|
*/
|
|
|
|
public function MaskPatternProvider():array{
|
|
|
|
return [[0], [1], [2], [3], [4], [5], [6], [7]];
|
|
|
|
}
|
2021-02-26 16:16:17 +00:00
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
/**
|
|
|
|
* Tests initializing the data matrix
|
|
|
|
*
|
|
|
|
* @dataProvider MaskPatternProvider
|
|
|
|
*/
|
|
|
|
public function testInitMatrix(int $maskPattern):void{
|
|
|
|
$this->dataInterface->setData($this->testdata);
|
|
|
|
|
|
|
|
$matrix = $this->dataInterface->initMatrix($maskPattern);
|
|
|
|
|
|
|
|
$this::assertInstanceOf(QRMatrix::class, $matrix);
|
|
|
|
$this::assertSame($maskPattern, $matrix->maskPattern());
|
2021-02-26 16:16:17 +00:00
|
|
|
}
|
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
/**
|
|
|
|
* Tests getting the minimum QR version for the given data
|
|
|
|
*/
|
|
|
|
public function testGetMinimumVersion():void{
|
|
|
|
$this->dataInterface->setData($this->testdata);
|
|
|
|
|
|
|
|
$getMinimumVersion = $this->reflection->getMethod('getMinimumVersion');
|
|
|
|
$getMinimumVersion->setAccessible(true);
|
|
|
|
|
|
|
|
$this::assertSame(1, $getMinimumVersion->invoke($this->dataInterface));
|
2021-02-26 16:16:17 +00:00
|
|
|
}
|
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
/**
|
|
|
|
* Tests if an exception is thrown when the data exceeds the maximum version while auto detecting
|
|
|
|
*/
|
|
|
|
public function testGetMinimumVersionException():void{
|
2021-02-26 16:16:17 +00:00
|
|
|
$this->expectException(QRCodeDataException::class);
|
|
|
|
$this->expectExceptionMessage('data exceeds');
|
|
|
|
|
2022-07-02 14:01:51 +00:00
|
|
|
$this->dataInterface = $this->getDataInterfaceInstance(new QROptions(['version' => QRCode::VERSION_AUTO]));
|
|
|
|
$this->dataInterface->setData(str_repeat($this->testdata, 1337));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests if an exception is thrown on data overflow
|
|
|
|
*/
|
|
|
|
public function testCodeLengthOverflowException():void{
|
|
|
|
$this->expectException(QRCodeDataException::class);
|
|
|
|
$this->expectExceptionMessage('code length overflow');
|
|
|
|
|
|
|
|
$this->dataInterface->setData(str_repeat($this->testdata, 1337));
|
2021-02-26 16:16:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|