🛀 QRDataModeInterface: validate data on init, test cleanup

This commit is contained in:
codemasher
2021-11-28 18:25:06 +01:00
parent 3d563bfcc0
commit 48b6c21090
12 changed files with 71 additions and 203 deletions
+3 -32
View File
@@ -10,43 +10,14 @@
namespace chillerlan\QRCodeTest\Data;
use chillerlan\QRCode\Data\{AlphaNum, QRCodeDataException};
use chillerlan\QRCode\Data\AlphaNum;
/**
* Tests the AlphaNum class
*/
final class AlphaNumTest extends DatainterfaceTestAbstract{
/** @internal */
protected array $testdata = [AlphaNum::class, '0 $%*+-./:'];
/** @internal */
protected array $expected = [
32, 80, 36, 212, 252, 15, 175, 251,
176, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
17, 236, 17, 236, 17, 236, 17, 236,
112, 43, 9, 248, 200, 194, 75, 25,
205, 173, 154, 68, 191, 16, 128,
92, 112, 20, 198, 27
];
/**
* Tests if an exception is thrown when an invalid character is encountered
*/
public function testGetCharCodeException():void{
$this->expectException(QRCodeDataException::class);
$this->expectExceptionMessage('illegal char: "#" [35]');
$this->testdata = [AlphaNum::class, '#'];
$this->setTestData();
}
protected string $FQN = AlphaNum::class;
protected string $testdata = '0 $%*+-./:';
}