mirror of
https://github.com/chillerlan/php-qrcode.git
synced 2026-08-18 01:42:55 +00:00
94 lines
2.3 KiB
PHP
94 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Class HanziTest
|
|
*
|
|
* @created 20.11.2021
|
|
* @author smiley <smiley@chillerlan.net>
|
|
* @copyright 2021 smiley
|
|
* @license MIT
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace chillerlan\QRCodeTest\Data;
|
|
|
|
use chillerlan\QRCode\Data\{Hanzi, QRDataModeInterface};
|
|
use PHPUnit\Framework\Attributes\{DataProvider, Group, Test};
|
|
use Generator, Throwable;
|
|
use function bin2hex, chr, defined, sprintf;
|
|
|
|
/**
|
|
* Tests the Hanzi/GB2312 class
|
|
*/
|
|
final class HanziTest extends DataInterfaceTestAbstract{
|
|
|
|
protected const testData = '无可奈何燃花作香';
|
|
|
|
protected static function getDataModeInterface(string $data):QRDataModeInterface{
|
|
return new Hanzi($data);
|
|
}
|
|
|
|
/**
|
|
* isGB2312() should pass on Hanzi/GB2312 characters and fail on everything else
|
|
*
|
|
* @phpstan-return array<int, array{0: string, 1: bool}>
|
|
*/
|
|
public static function stringValidateProvider():array{
|
|
return [
|
|
['原神', true],
|
|
['ABC', false],
|
|
['123', false],
|
|
['无可奈何燃花作香', true], // https://genshin-impact.fandom.com/wiki/Floral_Incense
|
|
['無可奈何燃花作香', false], // same as above in traditional Chinese
|
|
['꽃잎 향초의 기도', false], // same as above in Korean
|
|
];
|
|
}
|
|
|
|
/**
|
|
* lists all characters in the valid GB2312 range
|
|
*/
|
|
public static function hanziProvider():Generator{
|
|
|
|
for($byte1 = 0xa1; $byte1 < 0xf8; $byte1++){
|
|
|
|
if($byte1 > 0xa9 && $byte1 < 0xb0){
|
|
continue;
|
|
}
|
|
|
|
for($byte2 = 0xa1; $byte2 < 0xff; $byte2++){
|
|
$chr = mb_convert_encoding(chr($byte1).chr($byte2), 'UTF-8', Hanzi::ENCODING);
|
|
|
|
if($chr === '?'){ // skip unknown glyphs
|
|
continue;
|
|
}
|
|
|
|
yield sprintf('0x%X', (($byte1 << 8) | $byte2)) => [$chr];
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[Test]
|
|
#[Group('slow')]
|
|
#[DataProvider('hanziProvider')]
|
|
public function validateGB2312(string $chr):void{
|
|
// we may run into several issues due to encoding detection failures
|
|
try{
|
|
$this::assertTrue(Hanzi::validateString($chr));
|
|
}
|
|
catch(Throwable){
|
|
/** @noinspection PhpUndefinedConstantInspection - see phpunit.xml.dist */
|
|
if(defined('TEST_IS_CI') && TEST_IS_CI === true){
|
|
$this::markTestSkipped();
|
|
}
|
|
|
|
$this::markTestSkipped(sprintf(
|
|
'invalid glyph: %s => %s',
|
|
bin2hex(mb_convert_encoding($chr, Hanzi::ENCODING, 'UTF-8')),
|
|
$chr,
|
|
));
|
|
}
|
|
}
|
|
|
|
}
|