mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 07:54:51 +00:00
f902346b6c
- RuntimeData has now been replaced by a single static Data class - The Data class has a load() method which fills the same role as the constructor of RuntimeData - The static Lang class is now an instantiable class and is a member of Data - All tests have been adjusted and pass - The Exception tests no longer require convoluted workarounds: a simple mock for Data::$l suffices; Lang tests also use a mock to prevent loops now instead of using a workaround
61 lines
No EOL
1.9 KiB
PHP
61 lines
No EOL
1.9 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse;
|
|
use org\bovigo\vfs\vfsStream;
|
|
|
|
|
|
class TestLang extends \PHPUnit\Framework\TestCase {
|
|
use Test\Tools, Test\Lang\Setup;
|
|
|
|
public $files;
|
|
public $path;
|
|
public $l;
|
|
|
|
function testListLanguages() {
|
|
$this->assertCount(sizeof($this->files), $this->l->list("en"));
|
|
}
|
|
|
|
/**
|
|
* @depends testListLanguages
|
|
*/
|
|
function testSetLanguage() {
|
|
$this->assertEquals("en", $this->l->set("en"));
|
|
$this->assertEquals("en_ca", $this->l->set("en_ca"));
|
|
$this->assertEquals("de", $this->l->set("de_ch"));
|
|
$this->assertEquals("en", $this->l->set("en_gb_hixie"));
|
|
$this->assertEquals("en_ca", $this->l->set("en_ca_jking"));
|
|
$this->assertEquals("en", $this->l->set("es"));
|
|
$this->assertEquals("", $this->l->set(""));
|
|
}
|
|
|
|
/**
|
|
* @depends testSetLanguage
|
|
*/
|
|
function testLoadInternalStrings() {
|
|
$this->assertEquals("", $this->l->set("", true));
|
|
$this->assertCount(sizeof(Lang::REQUIRED), $this->l->dump());
|
|
}
|
|
|
|
/**
|
|
* @depends testLoadInternalStrings
|
|
*/
|
|
function testLoadDefaultLanguage() {
|
|
$this->assertEquals(Lang::DEFAULT, $this->l->set(Lang::DEFAULT, true));
|
|
$str = $this->l->dump();
|
|
$this->assertArrayHasKey('Exception.JKingWeb/Arsse/Exception.uncoded', $str);
|
|
$this->assertArrayHasKey('Test.presentText', $str);
|
|
}
|
|
|
|
/**
|
|
* @depends testLoadDefaultLanguage
|
|
*/
|
|
function testLoadSupplementaryLanguage() {
|
|
$this->l->set(Lang::DEFAULT, true);
|
|
$this->assertEquals("ja", $this->l->set("ja", true));
|
|
$str = $this->l->dump();
|
|
$this->assertArrayHasKey('Exception.JKingWeb/Arsse/Exception.uncoded', $str);
|
|
$this->assertArrayHasKey('Test.presentText', $str);
|
|
$this->assertArrayHasKey('Test.absentText', $str);
|
|
}
|
|
|
|
} |