1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-21 18:40:33 +00:00
Arsse/tests/cases/Exception/TestException.php

85 lines
2.5 KiB
PHP
Raw Normal View History

2017-02-09 23:05:13 -05:00
<?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
2017-02-09 23:05:13 -05:00
declare(strict_types=1);
2017-12-21 22:47:19 -05:00
namespace JKingWeb\Arsse\TestCase\Exception;
2017-02-09 23:05:13 -05:00
2017-12-21 22:47:19 -05:00
use JKingWeb\Arsse\Arsse;
use JKingWeb\Arsse\Lang;
use JKingWeb\Arsse\Exception;
use JKingWeb\Arsse\Lang\Exception as LangException;
2017-02-09 23:05:13 -05:00
2017-07-20 18:36:03 -04:00
/** @covers \JKingWeb\Arsse\AbstractException */
2017-12-21 22:47:19 -05:00
class TestException extends \JKingWeb\Arsse\Test\AbstractTest {
2019-10-16 14:42:43 -04:00
public function setUp(): void {
2018-11-23 10:01:17 -05:00
self::clearData(false);
// create a mock Lang object so as not to create a dependency loop
2021-02-27 15:24:02 -05:00
$this->langMock = $this->mock(Lang::class);
$this->langMock->msg->returns("");
Arsse::$lang = $this->langMock->get();
2017-02-16 14:29:42 -06:00
}
2020-01-20 13:52:48 -05:00
public function testBaseClass(): void {
2017-02-16 14:29:42 -06:00
$this->assertException("unknown");
throw new Exception("unknown");
}
2017-02-09 23:05:13 -05:00
2017-02-16 14:29:42 -06:00
/**
* @depends testBaseClass
2017-02-09 23:05:13 -05:00
*/
2020-01-20 13:52:48 -05:00
public function testBaseClassWithoutMessage(): void {
2017-02-16 14:29:42 -06:00
$this->assertException("unknown");
throw new Exception();
}
2017-02-16 14:29:42 -06:00
/**
* @depends testBaseClass
2017-02-09 23:05:13 -05:00
*/
2020-01-20 13:52:48 -05:00
public function testDerivedClass(): void {
2017-02-16 14:29:42 -06:00
$this->assertException("fileMissing", "Lang");
2017-12-21 22:47:19 -05:00
throw new LangException("fileMissing");
2017-02-16 14:29:42 -06:00
}
2017-02-09 23:05:13 -05:00
2017-02-16 14:29:42 -06:00
/**
* @depends testDerivedClass
2017-02-09 23:05:13 -05:00
*/
2020-01-20 13:52:48 -05:00
public function testDerivedClassWithMessageParameters(): void {
2017-02-16 14:29:42 -06:00
$this->assertException("fileMissing", "Lang");
2017-12-21 22:47:19 -05:00
throw new LangException("fileMissing", "en");
2017-02-16 14:29:42 -06:00
}
2017-02-16 14:29:42 -06:00
/**
* @depends testBaseClass
*/
2020-01-20 13:52:48 -05:00
public function testBaseClassWithUnknownCode(): void {
2017-02-16 14:29:42 -06:00
$this->assertException("uncoded");
throw new Exception("testThisExceptionMessageDoesNotExist");
}
2017-02-16 14:29:42 -06:00
/**
* @depends testBaseClassWithUnknownCode
*/
2020-01-20 13:52:48 -05:00
public function testDerivedClassWithMissingMessage(): void {
2017-02-16 14:29:42 -06:00
$this->assertException("uncoded");
2017-12-21 22:47:19 -05:00
throw new LangException("testThisExceptionMessageDoesNotExist");
2017-02-16 14:29:42 -06:00
}
2018-08-17 10:34:54 -04:00
/** @covers \JKingWeb\Arsse\ExceptionFatal */
2020-01-20 13:52:48 -05:00
public function testFatalException(): void {
2018-08-17 10:34:54 -04:00
$this->expectException('JKingWeb\Arsse\ExceptionFatal');
throw new \JKingWeb\Arsse\ExceptionFatal("");
}
2021-02-07 09:07:53 -05:00
public function testGetExceptionSymbol(): void {
$e = new LangException("stringMissing", ['msgID' => "OOK"]);
$this->assertSame("stringMissing", $e->getSymbol());
}
public function testGetExceptionParams(): void {
$e = new LangException("stringMissing", ['msgID' => "OOK"]);
$this->assertSame(['msgID' => "OOK"], $e->getParams());
}
2017-02-09 23:05:13 -05:00
}