respect-validation/tests/unit/Rules/CharsetTest.php

70 lines
1.7 KiB
PHP
Raw Normal View History

2012-12-07 02:31:24 +01:00
<?php
2015-06-08 16:47:14 +02:00
/*
* Copyright (c) Alexandre Gomes Gaigalas <alganet@gmail.com>
* SPDX-License-Identifier: MIT
*/
declare(strict_types=1);
2012-12-07 02:31:24 +01:00
namespace Respect\Validation\Rules;
use Respect\Validation\Exceptions\ComponentException;
use Respect\Validation\Test\RuleTestCase;
use function mb_convert_encoding;
2017-11-04 11:21:40 +01:00
/**
* @group rule
*
2017-02-04 14:01:14 +01:00
* @covers \Respect\Validation\Rules\Charset
*
* @author Alexandre Gomes Gaigalas <alganet@gmail.com>
* @author Gabriel Caruso <carusogabriel34@gmail.com>
* @author Henrique Moody <henriquemoody@gmail.com>
* @author William Espindola <oi@williamespindola.com.br>
*/
final class CharsetTest extends RuleTestCase
2012-12-07 02:31:24 +01:00
{
/**
* @test
2012-12-07 02:31:24 +01:00
*/
public function itShouldThrowsExceptionWhenCharsetIsNotValid(): void
2012-12-07 02:31:24 +01:00
{
$this->expectException(ComponentException::class);
$this->expectExceptionMessage('Invalid charset');
new Charset('UTF-8', 'UTF-9');
2012-12-07 02:31:24 +01:00
}
/**
* {@inheritDoc}
2012-12-07 02:31:24 +01:00
*/
public static function providerForValidInput(): array
2012-12-07 02:31:24 +01:00
{
2015-10-18 03:44:47 +02:00
return [
[new Charset('UTF-8'), ''],
[new Charset('ISO-8859-1'), mb_convert_encoding('açaí', 'ISO-8859-1')],
[new Charset('UTF-8', 'ASCII'), 'strawberry'],
[new Charset('ASCII'), mb_convert_encoding('strawberry', 'ASCII')],
[new Charset('UTF-8'), '日本国'],
[new Charset('ISO-8859-1', 'EUC-JP'), '日本国'],
[new Charset('UTF-8'), 'açaí'],
[new Charset('ISO-8859-1'), 'açaí'],
2015-10-18 03:44:47 +02:00
];
2012-12-07 02:31:24 +01:00
}
/**
* {@inheritDoc}
*/
public static function providerForInvalidInput(): array
2012-12-07 02:31:24 +01:00
{
$rule = new Charset('ASCII');
2012-12-07 02:31:24 +01:00
2015-10-18 03:44:47 +02:00
return [
[$rule, '日本国'],
[$rule, 'açaí'],
2015-10-18 03:44:47 +02:00
];
2012-12-07 02:31:24 +01:00
}
}