1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-20 18:10:34 +00:00
Arsse/tests/Lang/TestLang.php

61 lines
1.8 KiB
PHP
Raw Normal View History

2017-02-08 16:53:02 -05:00
<?php
declare(strict_types=1);
2017-03-27 23:12:12 -05:00
namespace JKingWeb\Arsse;
use org\bovigo\vfs\vfsStream;
2017-02-08 16:53:02 -05:00
class TestLang extends Test\AbstractTest {
use Test\Lang\Setup;
2017-02-08 16:53:02 -05:00
public $files;
public $path;
public $l;
2017-02-08 16:53:02 -05:00
2017-02-16 14:29:42 -06:00
function testListLanguages() {
$this->assertCount(sizeof($this->files), $this->l->list("en"));
2017-02-16 14:29:42 -06:00
}
2017-02-09 16:39:13 -05:00
2017-02-16 14:29:42 -06:00
/**
* @depends testListLanguages
2017-02-09 16:39:13 -05:00
*/
2017-02-16 14:29:42 -06:00
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(""));
2017-02-16 14:29:42 -06:00
}
/**
* @depends testSetLanguage
2017-02-09 16:39:13 -05:00
*/
2017-02-16 14:29:42 -06:00
function testLoadInternalStrings() {
$this->assertEquals("", $this->l->set("", true));
$this->assertCount(sizeof(Lang::REQUIRED), $this->l->dump());
2017-02-16 14:29:42 -06:00
}
2017-02-09 16:39:13 -05:00
2017-02-16 14:29:42 -06:00
/**
2017-02-09 16:39:13 -05:00
* @depends testLoadInternalStrings
*/
2017-02-16 14:29:42 -06:00
function testLoadDefaultLanguage() {
$this->assertEquals(Lang::DEFAULT, $this->l->set(Lang::DEFAULT, true));
$str = $this->l->dump();
2017-03-27 23:12:12 -05:00
$this->assertArrayHasKey('Exception.JKingWeb/Arsse/Exception.uncoded', $str);
2017-02-16 14:29:42 -06:00
$this->assertArrayHasKey('Test.presentText', $str);
}
/**
* @depends testLoadDefaultLanguage
2017-02-09 16:39:13 -05:00
*/
2017-02-16 14:29:42 -06:00
function testLoadSupplementaryLanguage() {
$this->l->set(Lang::DEFAULT, true);
$this->assertEquals("ja", $this->l->set("ja", true));
$str = $this->l->dump();
2017-03-27 23:12:12 -05:00
$this->assertArrayHasKey('Exception.JKingWeb/Arsse/Exception.uncoded', $str);
2017-02-16 14:29:42 -06:00
$this->assertArrayHasKey('Test.presentText', $str);
$this->assertArrayHasKey('Test.absentText', $str);
}
2017-02-09 16:39:13 -05:00
2017-02-08 16:53:02 -05:00
}