2017-02-11 17:11:14 +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-11 17:11:14 +00:00
|
|
|
declare(strict_types=1);
|
2017-12-22 03:47:19 +00:00
|
|
|
namespace JKingWeb\Arsse\TestCase\Lang;
|
2017-08-29 14:50:31 +00:00
|
|
|
|
2017-12-22 03:47:19 +00:00
|
|
|
use JKingWeb\Arsse\Lang as TestClass;
|
2017-02-11 17:11:14 +00:00
|
|
|
|
2017-07-20 22:36:03 +00:00
|
|
|
/** @covers \JKingWeb\Arsse\Lang */
|
2017-12-22 03:47:19 +00:00
|
|
|
class TestErrors extends \JKingWeb\Arsse\Test\AbstractTest {
|
|
|
|
use \JKingWeb\Arsse\Test\Lang\Setup;
|
2017-02-16 20:29:42 +00:00
|
|
|
|
2017-03-28 22:50:00 +00:00
|
|
|
public $files;
|
|
|
|
public $path;
|
|
|
|
public $l;
|
2017-02-16 20:29:42 +00:00
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function setUpSeries() {
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->l->set("", true);
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testLoadEmptyFile() {
|
2017-02-16 20:29:42 +00:00
|
|
|
$this->assertException("fileCorrupt", "Lang");
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->l->set("fr_ca", true);
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testLoadFileWhichDoesNotReturnAnArray() {
|
2017-02-16 20:29:42 +00:00
|
|
|
$this->assertException("fileCorrupt", "Lang");
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->l->set("it", true);
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testLoadFileWhichIsNotPhp() {
|
2017-02-16 20:29:42 +00:00
|
|
|
$this->assertException("fileCorrupt", "Lang");
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->l->set("ko", true);
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testLoadFileWhichIsCorrupt() {
|
2017-02-16 20:29:42 +00:00
|
|
|
$this->assertException("fileCorrupt", "Lang");
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->l->set("zh", true);
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testLoadFileWithooutReadPermission() {
|
2017-02-16 20:29:42 +00:00
|
|
|
$this->assertException("fileUnreadable", "Lang");
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->l->set("ru", true);
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testLoadSubtagOfMissingLanguage() {
|
2017-02-16 20:29:42 +00:00
|
|
|
$this->assertException("fileMissing", "Lang");
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->l->set("pt_br", true);
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testFetchInvalidMessage() {
|
2017-02-16 22:50:34 +00:00
|
|
|
$this->assertException("stringInvalid", "Lang");
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->l->set("vi", true);
|
|
|
|
$txt = $this->l->msg('Test.presentText');
|
2017-02-16 22:50:34 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testFetchMissingMessage() {
|
2017-02-16 22:50:34 +00:00
|
|
|
$this->assertException("stringMissing", "Lang");
|
2017-03-28 22:50:00 +00:00
|
|
|
$txt = $this->l->msg('Test.absentText');
|
2017-02-16 22:50:34 +00:00
|
|
|
}
|
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function testLoadMissingDefaultLanguage() {
|
2017-12-22 03:47:19 +00:00
|
|
|
unlink($this->path.TestClass::DEFAULT.".php");
|
2017-02-16 20:29:42 +00:00
|
|
|
$this->assertException("defaultFileMissing", "Lang");
|
2017-03-28 22:50:00 +00:00
|
|
|
$this->l->set("fr", true);
|
2017-02-16 20:29:42 +00:00
|
|
|
}
|
2018-08-17 12:35:13 +00:00
|
|
|
|
|
|
|
public function testLoadMissingLanguageWhenFetching() {
|
|
|
|
$this->l->set("en_ca");
|
|
|
|
unlink($this->path.TestClass::DEFAULT.".php");
|
|
|
|
$this->assertException("fileMissing", "Lang");
|
|
|
|
$this->l->msg('Test.presentText');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testLoadMissingDefaultLanguageWhenFetching() {
|
|
|
|
unlink($this->path.TestClass::DEFAULT.".php");
|
|
|
|
$this->l = new TestClass($this->path);
|
|
|
|
$this->assertException("stringMissing", "Lang");
|
|
|
|
$this->l->msg('Test.presentText');
|
|
|
|
}
|
2017-08-29 14:50:31 +00:00
|
|
|
}
|