1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-24 09:32:40 +00:00
Arsse/tests/Lang/TestLang.php

62 lines
1.8 KiB
PHP
Raw Normal View History

2017-02-08 21:53:02 +00:00
<?php
declare(strict_types=1);
namespace JKingWeb\NewsSync;
use \org\bovigo\vfs\vfsStream;
class TestLang extends \PHPUnit\Framework\TestCase {
2017-02-16 20:29:42 +00:00
use Test\Tools, Test\Lang\Setup;
2017-02-08 21:53:02 +00:00
2017-02-16 20:29:42 +00:00
static $vfs;
static $path;
static $files;
static $defaultPath;
2017-02-08 21:53:02 +00:00
2017-02-16 20:29:42 +00:00
function testListLanguages() {
$this->assertCount(sizeof(self::$files), Lang::list("en"));
}
2017-02-09 21:39:13 +00:00
2017-02-16 20:29:42 +00:00
/**
* @depends testListLanguages
2017-02-09 21:39:13 +00:00
*/
2017-02-16 20:29:42 +00:00
function testSetLanguage() {
$this->assertEquals("en", Lang::set("en"));
$this->assertEquals("en_ca", Lang::set("en_ca"));
$this->assertEquals("de", Lang::set("de_ch"));
$this->assertEquals("en", Lang::set("en_gb_hixie"));
$this->assertEquals("en_ca", Lang::set("en_ca_jking"));
$this->assertEquals("en", Lang::set("es"));
$this->assertEquals("", Lang::set(""));
}
/**
* @depends testSetLanguage
2017-02-09 21:39:13 +00:00
*/
2017-02-16 20:29:42 +00:00
function testLoadInternalStrings() {
$this->assertEquals("", Lang::set("", true));
$this->assertCount(sizeof(Lang::REQUIRED), Lang::dump());
}
2017-02-09 21:39:13 +00:00
2017-02-16 20:29:42 +00:00
/**
2017-02-09 21:39:13 +00:00
* @depends testLoadInternalStrings
*/
2017-02-16 20:29:42 +00:00
function testLoadDefaultLanguage() {
$this->assertEquals(Lang::DEFAULT, Lang::set(Lang::DEFAULT, true));
$str = Lang::dump();
$this->assertArrayHasKey('Exception.JKingWeb/NewsSync/Exception.uncoded', $str);
$this->assertArrayHasKey('Test.presentText', $str);
}
/**
* @depends testLoadDefaultLanguage
2017-02-09 21:39:13 +00:00
*/
2017-02-16 20:29:42 +00:00
function testLoadSupplementaryLanguage() {
Lang::set(Lang::DEFAULT, true);
$this->assertEquals("ja", Lang::set("ja", true));
$str = Lang::dump();
$this->assertArrayHasKey('Exception.JKingWeb/NewsSync/Exception.uncoded', $str);
$this->assertArrayHasKey('Test.presentText', $str);
$this->assertArrayHasKey('Test.absentText', $str);
}
2017-02-09 21:39:13 +00:00
2017-02-08 21:53:02 +00:00
}