1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 17:12:41 +00:00
Arsse/tests/cases/Lang/TestLangErrors.php

70 lines
1.9 KiB
PHP
Raw Normal View History

2017-02-11 17:11:14 +00:00
<?php
/** @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-03-28 04:12:12 +00:00
namespace JKingWeb\Arsse;
2017-08-29 14:50:31 +00:00
use org\bovigo\vfs\vfsStream;
2017-02-11 17:11:14 +00:00
2017-07-20 22:36:03 +00:00
/** @covers \JKingWeb\Arsse\Lang */
class TestLangErrors extends Test\AbstractTest {
use Test\Lang\Setup;
2017-02-16 20:29:42 +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() {
$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");
$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");
$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");
$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");
$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");
$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");
$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() {
$this->assertException("stringInvalid", "Lang");
$this->l->set("vi", true);
$txt = $this->l->msg('Test.presentText');
}
2017-08-29 14:50:31 +00:00
public function testFetchMissingMessage() {
$this->assertException("stringMissing", "Lang");
$txt = $this->l->msg('Test.absentText');
}
2017-08-29 14:50:31 +00:00
public function testLoadMissingDefaultLanguage() {
unlink($this->path.Lang::DEFAULT.".php");
2017-02-16 20:29:42 +00:00
$this->assertException("defaultFileMissing", "Lang");
$this->l->set("fr", true);
2017-02-16 20:29:42 +00:00
}
2017-08-29 14:50:31 +00:00
}