2017-02-08 21:53:02 +00:00
|
|
|
<?php
|
2017-11-17 01:23:18 +00:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2017-02-08 21:53:02 +00:00
|
|
|
declare(strict_types=1);
|
2017-03-28 04:12:12 +00:00
|
|
|
namespace JKingWeb\Arsse;
|
2017-08-29 14:50:31 +00:00
|
|
|
|
2017-03-28 22:50:00 +00:00
|
|
|
use org\bovigo\vfs\vfsStream;
|
2017-02-08 21:53:02 +00:00
|
|
|
|
2017-07-20 22:36:03 +00:00
|
|
|
/** @covers \JKingWeb\Arsse\Lang */
|
2017-07-08 01:06:38 +00:00
|
|
|
class TestLang extends Test\AbstractTest {
|
|
|
|
use Test\Lang\Setup;
|
2017-02-08 21:53:02 +00:00
|
|
|
|
2017-03-28 22:50:00 +00:00
|
|
|
public $files;
|
|
|
|
public $path;
|
|
|
|
public $l;
|
2017-02-08 21:53:02 +00:00
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testListLanguages() {
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->assertCount(sizeof($this->files), $this->l->list("en"));
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
2017-02-09 21:39:13 +00:00
|
|
|
|
2017-02-16 20:29:42 +00:00
|
|
|
/**
|
2017-02-11 18:50:34 +00:00
|
|
|
* @depends testListLanguages
|
2017-02-09 21:39:13 +00:00
|
|
|
*/
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testSetLanguage() {
|
2017-03-28 22:50:00 +00:00
|
|
|
$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 20:29:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-11 18:50:34 +00:00
|
|
|
* @depends testSetLanguage
|
2017-02-09 21:39:13 +00:00
|
|
|
*/
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testLoadInternalStrings() {
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->assertEquals("", $this->l->set("", true));
|
|
|
|
$this->assertCount(sizeof(Lang::REQUIRED), $this->l->dump());
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
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-08-29 14:50:31 +00:00
|
|
|
public function testLoadDefaultLanguage() {
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->assertEquals(Lang::DEFAULT, $this->l->set(Lang::DEFAULT, true));
|
|
|
|
$str = $this->l->dump();
|
2017-03-28 04:12:12 +00:00
|
|
|
$this->assertArrayHasKey('Exception.JKingWeb/Arsse/Exception.uncoded', $str);
|
2017-02-16 20:29:42 +00:00
|
|
|
$this->assertArrayHasKey('Test.presentText', $str);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-02-11 18:50:34 +00:00
|
|
|
* @depends testLoadDefaultLanguage
|
2017-02-09 21:39:13 +00:00
|
|
|
*/
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testLoadSupplementaryLanguage() {
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->l->set(Lang::DEFAULT, true);
|
|
|
|
$this->assertEquals("ja", $this->l->set("ja", true));
|
|
|
|
$str = $this->l->dump();
|
2017-03-28 04:12:12 +00:00
|
|
|
$this->assertArrayHasKey('Exception.JKingWeb/Arsse/Exception.uncoded', $str);
|
2017-02-16 20:29:42 +00:00
|
|
|
$this->assertArrayHasKey('Test.presentText', $str);
|
|
|
|
$this->assertArrayHasKey('Test.absentText', $str);
|
|
|
|
}
|
2017-08-29 14:50:31 +00:00
|
|
|
}
|