mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
70 lines
2.1 KiB
PHP
Executable File
70 lines
2.1 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.1
|
|
*
|
|
* @package tests
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace phpOMS\tests\Localization;
|
|
|
|
require_once __DIR__ . '/../Autoloader.php';
|
|
|
|
use phpOMS\Localization\ISO3166TwoEnum;
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
#[\PHPUnit\Framework\Attributes\TestDox('phpOMS\tests\Localization\ISO3166NumEnumTest: ISO 3166 country codes')]
|
|
final class ISO3166TwoEnumTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
#[\PHPUnit\Framework\Attributes\TestDox('The ISO 3166 country code enum has the correct format of country codes')]
|
|
#[\PHPUnit\Framework\Attributes\CoversNothing]
|
|
public function testEnums() : void
|
|
{
|
|
$ok = true;
|
|
|
|
$countryCodes = ISO3166TwoEnum::getConstants();
|
|
|
|
foreach ($countryCodes as $code) {
|
|
if (\strlen($code) !== 2) {
|
|
$ok = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
self::assertTrue($ok);
|
|
}
|
|
|
|
#[\PHPUnit\Framework\Attributes\Group('framework')]
|
|
#[\PHPUnit\Framework\Attributes\TestDox('The ISO 3166 enum has only unique values')]
|
|
#[\PHPUnit\Framework\Attributes\CoversNothing]
|
|
public function testUnique() : void
|
|
{
|
|
self::assertEquals(ISO3166TwoEnum::getConstants(), \array_unique(ISO3166TwoEnum::getConstants()));
|
|
}
|
|
|
|
public function testRegion() : void
|
|
{
|
|
$regions = [
|
|
'europe', 'asia', 'america', 'oceania', 'africa', 'eu', 'euro',
|
|
'north-europe', 'south-europe', 'east-europe', 'west-europe',
|
|
'middle-east', 'south-america', 'north-america', 'central-asia',
|
|
'south-asia', 'southeast-asia', 'east-asia', 'west-asia',
|
|
'central-africa', 'east-africa', 'north-africa', 'south-africa',
|
|
'west-africa', 'australia', 'polynesia', 'melanesia', 'antarctica',
|
|
];
|
|
|
|
foreach ($regions as $region) {
|
|
self::assertGreaterThan(0, \count(ISO3166TwoEnum::getRegion($region)), 'Failed for ' . $region);
|
|
}
|
|
}
|
|
}
|