mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-10 01:56:26 +00:00
130c6e99d2
All of Calculation and Shared/OLE are left to tackle.
81 lines
2.2 KiB
PHP
81 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Shared;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Exception;
|
|
use PhpOffice\PhpSpreadsheet\Shared\CodePage;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class CodePageTest extends TestCase
|
|
{
|
|
/**
|
|
* @param string|string[] $expectedResult
|
|
*/
|
|
#[DataProvider('providerCodePage')]
|
|
public function testCodePageNumberToName(array|string $expectedResult, int $codePageIndex): void
|
|
{
|
|
if ($expectedResult === 'exception') {
|
|
$this->expectException(Exception::class);
|
|
}
|
|
$result = CodePage::numberToName($codePageIndex);
|
|
if (is_array($expectedResult)) {
|
|
self::assertContains($result, $expectedResult);
|
|
} else {
|
|
self::assertEquals($expectedResult, $result);
|
|
}
|
|
}
|
|
|
|
public static function providerCodePage(): array
|
|
{
|
|
return require 'tests/data/Shared/CodePage.php';
|
|
}
|
|
|
|
public function testCoverage(): void
|
|
{
|
|
$covered = [];
|
|
$expected = CodePage::getEncodings();
|
|
foreach ($expected as $key => $val) {
|
|
$covered[$key] = 0;
|
|
}
|
|
$tests = $this->providerCodePage();
|
|
foreach ($tests as $test) {
|
|
/** @var string[] $test */
|
|
$covered[$test[1]] = 1;
|
|
}
|
|
foreach ($covered as $key => $val) {
|
|
self::assertEquals(1, $val, "Codepage $key not tested");
|
|
}
|
|
}
|
|
|
|
public function testNumberToNameWithInvalidCodePage(): void
|
|
{
|
|
$invalidCodePage = 12345;
|
|
|
|
try {
|
|
CodePage::numberToName($invalidCodePage);
|
|
} catch (Exception $e) {
|
|
self::assertEquals($e->getMessage(), 'Unknown codepage: 12345');
|
|
|
|
return;
|
|
}
|
|
self::fail('An expected exception has not been raised.');
|
|
}
|
|
|
|
public function testNumberToNameWithUnsupportedCodePage(): void
|
|
{
|
|
$unsupportedCodePage = 720;
|
|
|
|
try {
|
|
CodePage::numberToName($unsupportedCodePage);
|
|
} catch (Exception $e) {
|
|
self::assertEquals($e->getMessage(), 'Code page 720 not supported.');
|
|
|
|
return;
|
|
}
|
|
self::fail('An expected exception has not been raised.');
|
|
}
|
|
}
|