mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
83 lines
2.5 KiB
PHP
83 lines
2.5 KiB
PHP
<?php
|
|
/** @license MIT
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\TestCase\Lang;
|
|
|
|
use JKingWeb\Arsse\Lang as TestClass;
|
|
|
|
/** @covers \JKingWeb\Arsse\Lang */
|
|
class TestErrors extends \JKingWeb\Arsse\Test\AbstractTest {
|
|
use \JKingWeb\Arsse\Test\Lang\Setup;
|
|
|
|
public $files;
|
|
public $path;
|
|
public $l;
|
|
|
|
public function setUpSeries(): void {
|
|
$this->l->set("", true);
|
|
}
|
|
|
|
public function testLoadEmptyFile(): void {
|
|
$this->assertException("fileCorrupt", "Lang");
|
|
$this->l->set("fr_ca", true);
|
|
}
|
|
|
|
public function testLoadFileWhichDoesNotReturnAnArray(): void {
|
|
$this->assertException("fileCorrupt", "Lang");
|
|
$this->l->set("it", true);
|
|
}
|
|
|
|
public function testLoadFileWhichIsNotPhp(): void {
|
|
$this->assertException("fileCorrupt", "Lang");
|
|
$this->l->set("ko", true);
|
|
}
|
|
|
|
public function testLoadFileWhichIsCorrupt(): void {
|
|
$this->assertException("fileCorrupt", "Lang");
|
|
$this->l->set("zh", true);
|
|
}
|
|
|
|
public function testLoadFileWithooutReadPermission(): void {
|
|
$this->assertException("fileUnreadable", "Lang");
|
|
$this->l->set("ru", true);
|
|
}
|
|
|
|
public function testLoadSubtagOfMissingLanguage(): void {
|
|
$this->assertException("fileMissing", "Lang");
|
|
$this->l->set("pt_br", true);
|
|
}
|
|
|
|
public function testFetchInvalidMessage(): void {
|
|
$this->assertException("stringInvalid", "Lang");
|
|
$this->l->set("vi", true);
|
|
$txt = $this->l->msg('Test.presentText');
|
|
}
|
|
|
|
public function testFetchMissingMessage(): void {
|
|
$this->assertException("stringMissing", "Lang");
|
|
$txt = $this->l->msg('Test.absentText');
|
|
}
|
|
|
|
public function testLoadMissingDefaultLanguage(): void {
|
|
unlink($this->path.TestClass::DEFAULT.".php");
|
|
$this->assertException("defaultFileMissing", "Lang");
|
|
$this->l->set("fr", true);
|
|
}
|
|
|
|
public function testLoadMissingLanguageWhenFetching(): void {
|
|
$this->l->set("en_ca");
|
|
unlink($this->path.TestClass::DEFAULT.".php");
|
|
$this->assertException("fileMissing", "Lang");
|
|
$this->l->msg('Test.presentText');
|
|
}
|
|
|
|
public function testLoadMissingDefaultLanguageWhenFetching(): void {
|
|
unlink($this->path.TestClass::DEFAULT.".php");
|
|
$this->l = new TestClass($this->path);
|
|
$this->assertException("stringMissing", "Lang");
|
|
$this->l->msg('Test.presentText');
|
|
}
|
|
}
|