2017-07-08 01:06:38 +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-07-08 01:06:38 +00:00
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse\Test;
|
2017-08-29 14:50:31 +00:00
|
|
|
|
2017-07-08 01:06:38 +00:00
|
|
|
use JKingWeb\Arsse\Exception;
|
2017-07-17 11:47:57 +00:00
|
|
|
use JKingWeb\Arsse\Arsse;
|
2018-01-09 17:31:40 +00:00
|
|
|
use JKingWeb\Arsse\Conf;
|
2018-11-06 17:32:28 +00:00
|
|
|
use JKingWeb\Arsse\CLI;
|
2017-07-17 11:47:57 +00:00
|
|
|
use JKingWeb\Arsse\Misc\Date;
|
2018-01-11 16:09:25 +00:00
|
|
|
use Psr\Http\Message\MessageInterface;
|
|
|
|
use Psr\Http\Message\RequestInterface;
|
|
|
|
use Psr\Http\Message\ServerRequestInterface;
|
2018-01-04 04:13:08 +00:00
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
use Zend\Diactoros\Response\JsonResponse;
|
|
|
|
use Zend\Diactoros\Response\EmptyResponse;
|
2017-07-08 01:06:38 +00:00
|
|
|
|
2017-07-20 22:36:03 +00:00
|
|
|
/** @coversNothing */
|
2017-07-08 01:06:38 +00:00
|
|
|
abstract class AbstractTest extends \PHPUnit\Framework\TestCase {
|
2018-01-06 17:02:45 +00:00
|
|
|
public function setUp() {
|
2018-11-23 15:01:17 +00:00
|
|
|
self::clearData();
|
2018-01-06 17:02:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown() {
|
2018-11-23 15:01:17 +00:00
|
|
|
self::clearData();
|
2018-01-06 17:02:45 +00:00
|
|
|
}
|
|
|
|
|
2018-11-23 15:01:17 +00:00
|
|
|
public static function clearData(bool $loadLang = true) {
|
2018-11-06 17:32:28 +00:00
|
|
|
date_default_timezone_set("America/Toronto");
|
|
|
|
$r = new \ReflectionClass(\JKingWeb\Arsse\Arsse::class);
|
|
|
|
$props = array_keys($r->getStaticProperties());
|
|
|
|
foreach ($props as $prop) {
|
|
|
|
Arsse::$$prop = null;
|
|
|
|
}
|
|
|
|
if ($loadLang) {
|
|
|
|
Arsse::$lang = new \JKingWeb\Arsse\Lang();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-23 04:18:20 +00:00
|
|
|
public static function setConf(array $conf = [], bool $force = true) {
|
2018-11-17 02:32:27 +00:00
|
|
|
$defaults = [
|
|
|
|
'dbSQLite3File' => ":memory:",
|
2018-11-22 18:55:57 +00:00
|
|
|
'dbSQLite3Timeout' => 0,
|
2018-11-17 02:32:27 +00:00
|
|
|
'dbPostgreSQLUser' => "arsse_test",
|
|
|
|
'dbPostgreSQLPass' => "arsse_test",
|
|
|
|
'dbPostgreSQLDb' => "arsse_test",
|
2018-11-27 22:39:39 +00:00
|
|
|
'dbPostgreSQLSchema' => "arsse_test",
|
2018-12-20 23:06:28 +00:00
|
|
|
'dbMySQLUser' => "arsse_test",
|
|
|
|
'dbMySQLPass' => "arsse_test",
|
|
|
|
'dbMySQLDb' => "arsse_test",
|
2018-11-17 02:32:27 +00:00
|
|
|
];
|
2019-01-21 03:40:49 +00:00
|
|
|
Arsse::$conf = (($force ? null : Arsse::$conf) ?? (new Conf))->import($defaults)->import($conf);
|
2018-01-09 17:31:40 +00:00
|
|
|
}
|
|
|
|
|
2019-03-21 02:24:35 +00:00
|
|
|
public function assertException($msg = "", string $prefix = "", string $type = "Exception") {
|
2017-08-29 14:50:31 +00:00
|
|
|
if (func_num_args()) {
|
2019-03-21 02:24:35 +00:00
|
|
|
if ($msg instanceof \JKingWeb\Arsse\AbstractException) {
|
|
|
|
$this->expectException(get_class($msg));
|
|
|
|
$this->expectExceptionCode($msg->getCode());
|
2017-07-08 01:06:38 +00:00
|
|
|
} else {
|
2019-03-21 02:24:35 +00:00
|
|
|
$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);
|
2017-07-08 01:06:38 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// expecting a standard PHP exception
|
2019-01-21 03:40:49 +00:00
|
|
|
$this->expectException(\Throwable::class);
|
2017-07-08 01:06:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-08 00:21:44 +00:00
|
|
|
protected function assertMessage(MessageInterface $exp, MessageInterface $act, string $text = '') {
|
2018-01-11 16:09:25 +00:00
|
|
|
if ($exp instanceof ResponseInterface) {
|
|
|
|
$this->assertInstanceOf(ResponseInterface::class, $act, $text);
|
|
|
|
$this->assertEquals($exp->getStatusCode(), $act->getStatusCode(), $text);
|
|
|
|
} elseif ($exp instanceof RequestInterface) {
|
|
|
|
if ($exp instanceof ServerRequestInterface) {
|
|
|
|
$this->assertInstanceOf(ServerRequestInterface::class, $act, $text);
|
|
|
|
$this->assertEquals($exp->getAttributes(), $act->getAttributes(), $text);
|
|
|
|
}
|
|
|
|
$this->assertInstanceOf(RequestInterface::class, $act, $text);
|
2018-01-11 20:48:29 +00:00
|
|
|
$this->assertSame($exp->getMethod(), $act->getMethod(), $text);
|
2018-01-11 16:09:25 +00:00
|
|
|
$this->assertSame($exp->getRequestTarget(), $act->getRequestTarget(), $text);
|
|
|
|
}
|
2018-01-04 04:13:08 +00:00
|
|
|
if ($exp instanceof JsonResponse) {
|
|
|
|
$this->assertEquals($exp->getPayload(), $act->getPayload(), $text);
|
|
|
|
$this->assertSame($exp->getPayload(), $act->getPayload(), $text);
|
2018-01-06 17:02:45 +00:00
|
|
|
} else {
|
|
|
|
$this->assertEquals((string) $exp->getBody(), (string) $act->getBody(), $text);
|
2018-01-04 04:13:08 +00:00
|
|
|
}
|
2018-01-05 04:08:53 +00:00
|
|
|
$this->assertEquals($exp->getHeaders(), $act->getHeaders(), $text);
|
2018-01-04 04:13:08 +00:00
|
|
|
}
|
|
|
|
|
2018-12-08 00:21:44 +00:00
|
|
|
public function assertTime($exp, $test, string $msg = '') {
|
2018-11-06 17:32:28 +00:00
|
|
|
$test = $this->approximateTime($exp, $test);
|
|
|
|
$exp = Date::transform($exp, "iso8601");
|
|
|
|
$test = Date::transform($test, "iso8601");
|
|
|
|
$this->assertSame($exp, $test, $msg);
|
|
|
|
}
|
|
|
|
|
2017-12-08 21:00:23 +00:00
|
|
|
public function approximateTime($exp, $act) {
|
|
|
|
if (is_null($act)) {
|
|
|
|
return null;
|
2017-12-20 00:08:08 +00:00
|
|
|
} elseif (is_null($exp)) {
|
|
|
|
return $act;
|
2017-12-08 21:00:23 +00:00
|
|
|
}
|
|
|
|
$target = Date::normalize($exp)->getTimeStamp();
|
|
|
|
$value = Date::normalize($act)->getTimeStamp();
|
|
|
|
if ($value >= ($target - 1) && $value <= ($target + 1)) {
|
|
|
|
// if the actual time is off by no more than one second, it's acceptable
|
|
|
|
return $exp;
|
|
|
|
} else {
|
|
|
|
return $act;
|
|
|
|
}
|
|
|
|
}
|
2018-11-08 19:50:58 +00:00
|
|
|
|
|
|
|
public function stringify($value) {
|
|
|
|
if (!is_array($value)) {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
foreach ($value as $k => $v) {
|
|
|
|
if (is_array($v)) {
|
|
|
|
$value[$k] = $this->v($v);
|
|
|
|
} elseif (is_int($v) || is_float($v)) {
|
|
|
|
$value[$k] = (string) $v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $value;
|
|
|
|
}
|
2017-08-29 14:50:31 +00:00
|
|
|
}
|