respect-validation/tests/unit/Rules/LanguageCodeTest.php
Henrique Moody 9a13c9fb03
Update coding standards
This change will bring many breaking changes. The good thing is that we
can finally use more modern resources available in PHP.

I can imagine that's not a popular change since it will bring many
breaking changes to users, but we shouldn't be stuck in time because of
that. Using some of those features will make it easier to contribute to
the project. At least, I hope so.

There are still some useless doc-blocks, and we're not using "readonly"
properties when we could. I aim to send those changes soon.

Signed-off-by: Henrique Moody <henriquemoody@gmail.com>
2024-01-28 00:22:41 +01:00

73 lines
2.2 KiB
PHP

<?php
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
namespace Respect\Validation\Rules;
use Respect\Validation\Exceptions\ComponentException;
use Respect\Validation\Test\RuleTestCase;
/**
* @group rule
* @covers \Respect\Validation\Rules\AbstractEnvelope
* @covers \Respect\Validation\Rules\LanguageCode
*/
final class LanguageCodeTest extends RuleTestCase
{
/**
* @test
*/
public function itShouldThrowAnExceptionWhenSetIsInvalid(): void
{
$this->expectExceptionObject(new ComponentException('"foo" is not a valid language set for ISO 639'));
new LanguageCode('foo');
}
/**
* @return array<array{LanguageCode, mixed}>
*/
public static function providerForValidInput(): array
{
$sutAlpha2 = new LanguageCode(LanguageCode::ALPHA2);
$sutAlpha3 = new LanguageCode(LanguageCode::ALPHA3);
return [
'alpha-2: en' => [$sutAlpha2, 'en'],
'alpha-2: it' => [$sutAlpha2, 'it'],
'alpha-2: la' => [$sutAlpha2, 'la'],
'alpha-2: pt' => [$sutAlpha2, 'pt'],
'alpha-3: eng' => [$sutAlpha3, 'eng'],
'alpha-3: ita' => [$sutAlpha3, 'ita'],
'alpha-3: lat' => [$sutAlpha3, 'lat'],
'alpha-3: por' => [$sutAlpha3, 'por'],
];
}
/**
* @return array<array{LanguageCode, mixed}>
*/
public static function providerForInvalidInput(): array
{
$sutAlpha2 = new LanguageCode(LanguageCode::ALPHA2);
$sutAlpha3 = new LanguageCode(LanguageCode::ALPHA3);
return [
'alpha-2: alpha-3 code' => [$sutAlpha2, 'por'],
'alpha-2: boolean' => [$sutAlpha2, false],
'alpha-2: empty array' => [$sutAlpha2, []],
'alpha-2: empty' => [$sutAlpha2, ''],
'alpha-2: null' => [$sutAlpha2, null],
'alpha-3: alpha-2 code' => [$sutAlpha3, 'pt'],
'alpha-3: boolean' => [$sutAlpha3, true],
'alpha-3: empty array' => [$sutAlpha3, []],
'alpha-3: empty' => [$sutAlpha3, ''],
'alpha-3: null' => [$sutAlpha3, ''],
];
}
}