From 3fd785654372d493c031d9b541ab33a881023a32 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 26 Feb 2021 19:16:17 +0300 Subject: * switch to composer for qrcode and otp dependencies * move most OTP-related stuff into userhelper * remove old phpqrcode and otphp libraries --- .../php-qrcode/tests/Data/AlphaNumTest.php | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 vendor/chillerlan/php-qrcode/tests/Data/AlphaNumTest.php (limited to 'vendor/chillerlan/php-qrcode/tests/Data/AlphaNumTest.php') diff --git a/vendor/chillerlan/php-qrcode/tests/Data/AlphaNumTest.php b/vendor/chillerlan/php-qrcode/tests/Data/AlphaNumTest.php new file mode 100644 index 000000000..c29b1f639 --- /dev/null +++ b/vendor/chillerlan/php-qrcode/tests/Data/AlphaNumTest.php @@ -0,0 +1,44 @@ + + * @copyright 2017 Smiley + * @license MIT + */ + +namespace chillerlan\QRCodeTest\Data; + +use chillerlan\QRCode\Data\{AlphaNum, QRCodeDataException}; + +class AlphaNumTest extends DatainterfaceTestAbstract{ + + protected $FQCN = AlphaNum::class; + protected $testdata = '0 $%*+-./:'; + protected $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 + ]; + + public function testGetCharCodeException(){ + $this->expectException(QRCodeDataException::class); + $this->expectExceptionMessage('illegal char: "#" [35]'); + + $this->dataInterface->setData('#'); + } + +} -- cgit v1.2.3