mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 07:44:53 +00:00
f902346b6c
- RuntimeData has now been replaced by a single static Data class - The Data class has a load() method which fills the same role as the constructor of RuntimeData - The static Lang class is now an instantiable class and is a member of Data - All tests have been adjusted and pass - The Exception tests no longer require convoluted workarounds: a simple mock for Data::$l suffices; Lang tests also use a mock to prevent loops now instead of using a workaround
31 lines
No EOL
1,021 B
PHP
31 lines
No EOL
1,021 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\Test;
|
|
use JKingWeb\Arsse\Exception;
|
|
use JKingWeb\Arsse\Data;
|
|
|
|
trait Tools {
|
|
function assertException(string $msg, string $prefix = "", string $type = "Exception") {
|
|
$class = \JKingWeb\Arsse\NS_BASE . ($prefix !== "" ? str_replace("/", "\\", $prefix) . "\\" : "") . $type;
|
|
$msgID = ($prefix !== "" ? $prefix . "/" : "") . $type. ".$msg";
|
|
if(array_key_exists($msgID, Exception::CODES)) {
|
|
$code = Exception::CODES[$msgID];
|
|
} else {
|
|
$code = 0;
|
|
}
|
|
$this->expectException($class);
|
|
$this->expectExceptionCode($code);
|
|
}
|
|
|
|
function clearData(bool $loadLang = true): bool {
|
|
$r = new \ReflectionClass(\JKingWeb\Arsse\Data::class);
|
|
$props = array_keys($r->getStaticProperties());
|
|
foreach($props as $prop) {
|
|
Data::$$prop = null;
|
|
}
|
|
if($loadLang) {
|
|
Data::$l = new \JKingWeb\Arsse\Lang();
|
|
}
|
|
return true;
|
|
}
|
|
} |