mirror of
https://github.com/danog/endtoend-test-psl.git
synced 2024-12-02 09:38:32 +01:00
48 lines
1.2 KiB
PHP
48 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Psl\Tests\Str;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Psl\Exception\InvariantViolationException;
|
|
use Psl\Str;
|
|
|
|
final class ConvertEncodingTest extends TestCase
|
|
{
|
|
/**
|
|
* @dataProvider provideData
|
|
*/
|
|
public function testConvertEncoding(
|
|
?string $expected,
|
|
string $string,
|
|
string $from_encoding,
|
|
string $to_encoding
|
|
): void {
|
|
static::assertSame($expected, Str\convert_encoding($string, $from_encoding, $to_encoding));
|
|
}
|
|
|
|
public function provideData(): array
|
|
{
|
|
return [
|
|
['åäö', 'åäö', 'ISO-8859-1', 'UTF-8'],
|
|
];
|
|
}
|
|
|
|
public function testConvertEncodingThrowsForInvalidFromEncoding(): void
|
|
{
|
|
$this->expectException(InvariantViolationException::class);
|
|
$this->expectExceptionMessage('$from_encoding is invalid.');
|
|
|
|
Str\convert_encoding('Hello, World!', 'foobar', 'UTF-8');
|
|
}
|
|
|
|
public function testConvertEncodingThrowsForInvalidToEncoding(): void
|
|
{
|
|
$this->expectException(InvariantViolationException::class);
|
|
$this->expectExceptionMessage('$to_encoding is invalid.');
|
|
|
|
Str\convert_encoding('Hello, World!', 'ASCII', 'UTF-1337');
|
|
}
|
|
}
|