2012-06-18 20:35:21 +00:00
|
|
|
<?php
|
|
|
|
|
2016-08-25 04:53:15 +00:00
|
|
|
namespace PhpSpreadsheetTests\Shared;
|
2012-06-18 20:35:21 +00:00
|
|
|
|
2016-08-16 14:24:47 +00:00
|
|
|
use PhpSpreadsheet\Exception;
|
2016-08-16 15:33:57 +00:00
|
|
|
use PhpSpreadsheet\Shared\CodePage;
|
2016-08-14 04:08:43 +00:00
|
|
|
|
2016-03-22 14:35:50 +00:00
|
|
|
class CodePageTest extends \PHPUnit_Framework_TestCase
|
2012-06-18 20:35:21 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @dataProvider providerCodePage
|
|
|
|
*/
|
2015-05-17 13:00:02 +00:00
|
|
|
public function testCodePageNumberToName()
|
|
|
|
{
|
|
|
|
$args = func_get_args();
|
|
|
|
$expectedResult = array_pop($args);
|
2016-08-16 15:33:57 +00:00
|
|
|
$result = call_user_func_array([CodePage::class, 'numberToName'], $args);
|
2015-05-17 13:00:02 +00:00
|
|
|
$this->assertEquals($expectedResult, $result);
|
|
|
|
}
|
2012-06-18 20:35:21 +00:00
|
|
|
|
|
|
|
public function providerCodePage()
|
|
|
|
{
|
2016-08-16 12:00:19 +00:00
|
|
|
return require 'data/Shared/CodePage.php';
|
2015-05-17 13:00:02 +00:00
|
|
|
}
|
2012-06-18 20:35:21 +00:00
|
|
|
|
|
|
|
public function testNumberToNameWithInvalidCodePage()
|
2015-05-17 13:00:02 +00:00
|
|
|
{
|
|
|
|
$invalidCodePage = 12345;
|
|
|
|
try {
|
2016-08-26 06:05:40 +00:00
|
|
|
call_user_func([CodePage::class, 'numberToName'], $invalidCodePage);
|
2016-08-14 04:08:43 +00:00
|
|
|
} catch (Exception $e) {
|
2015-05-17 13:00:02 +00:00
|
|
|
$this->assertEquals($e->getMessage(), 'Unknown codepage: 12345');
|
2016-08-16 15:33:57 +00:00
|
|
|
|
2015-05-17 13:00:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->fail('An expected exception has not been raised.');
|
|
|
|
}
|
2012-06-18 20:35:21 +00:00
|
|
|
|
|
|
|
public function testNumberToNameWithUnsupportedCodePage()
|
2015-05-17 13:00:02 +00:00
|
|
|
{
|
|
|
|
$unsupportedCodePage = 720;
|
|
|
|
try {
|
2016-08-26 06:05:40 +00:00
|
|
|
call_user_func([CodePage::class, 'numberToName'], $unsupportedCodePage);
|
2016-08-14 04:08:43 +00:00
|
|
|
} catch (Exception $e) {
|
2015-05-17 13:00:02 +00:00
|
|
|
$this->assertEquals($e->getMessage(), 'Code page 720 not supported.');
|
2016-08-16 15:33:57 +00:00
|
|
|
|
2015-05-17 13:00:02 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$this->fail('An expected exception has not been raised.');
|
|
|
|
}
|
2012-06-18 20:35:21 +00:00
|
|
|
}
|