mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-24 15:57:56 +00:00
🛀 QRDataModeInterface: validate data on init, test cleanup
This commit is contained in:
@@ -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 $%*+-./:';
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user