| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?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;
- use chillerlan\QRCode\Data\QRDataInterface;
- use chillerlan\QRCode\Data\QRMatrix;
- use chillerlan\QRCode\QROptions;
- use chillerlan\QRCodeTest\QRTestAbstract;
- abstract class DatainterfaceTestAbstract extends QRTestAbstract{
- /**
- * @var \chillerlan\QRCode\Data\QRDataAbstract
- */
- protected $dataInterface;
- protected $testdata;
- protected $expected;
- protected function setUp(){
- parent::setUp();
- $this->dataInterface = $this->reflection->newInstanceArgs([new QROptions(['version' => 4])]);
- }
- public function testInstance(){
- $this->dataInterface = $this->reflection->newInstanceArgs([new QROptions, $this->testdata]);
- $this->assertInstanceOf(QRDataInterface::class, $this->dataInterface);
- }
- public function testSetData(){
- $this->dataInterface->setData($this->testdata);
- $this->assertSame($this->expected, $this->getProperty('matrixdata')->getValue($this->dataInterface));
- }
- public function testInitMatrix(){
- $m = $this->dataInterface->setData($this->testdata)->initMatrix(0);
- $this->assertInstanceOf(QRMatrix::class, $m);
- }
- public function testGetMinimumVersion(){
- $this->assertSame(1, $this->getMethod('getMinimumVersion')->invoke($this->dataInterface));
- }
- /**
- * @expectedException \chillerlan\QRCode\Data\QRCodeDataException
- * @expectedExceptionMessage data exceeds
- */
- public function testGetMinimumVersionException(){
- $this->getProperty('strlen')->setValue($this->dataInterface, 13370);
- $this->getMethod('getMinimumVersion')->invoke($this->dataInterface);
- }
- }
|