2018-08-20 13:01:16 -04:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Hummingbird Anime List Client
|
|
|
|
*
|
2018-08-22 13:48:27 -04:00
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
2018-08-20 13:01:16 -04:00
|
|
|
*
|
2021-02-04 11:57:01 -05:00
|
|
|
* PHP version 8
|
2018-08-20 13:01:16 -04:00
|
|
|
*
|
2022-03-04 15:50:35 -05:00
|
|
|
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
|
2018-08-20 13:01:16 -04:00
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
2020-12-10 17:06:50 -05:00
|
|
|
* @version 5.2
|
2022-03-04 15:50:35 -05:00
|
|
|
* @link https://git.timshome.page/timw4mail/HummingBirdAnimeClient
|
2018-08-20 13:01:16 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Tests;
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
use DateTime;
|
2023-05-19 10:42:25 -04:00
|
|
|
use function Aviat\AnimeClient\{arrayToToml, checkFolderPermissions, clearCache, colNotEmpty, friendlyTime, getLocalImg, getResponse, isSequentialArray, tomlToArray};
|
|
|
|
use const Aviat\AnimeClient\{MINUTES_IN_DAY, MINUTES_IN_HOUR, MINUTES_IN_YEAR, SECONDS_IN_MINUTE};
|
2022-03-04 12:19:47 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
final class AnimeClientTest extends AnimeClientTestCase
|
2018-08-20 13:01:16 -04:00
|
|
|
{
|
2022-03-04 12:19:47 -05:00
|
|
|
public function testArrayToToml(): void
|
2018-08-20 13:01:16 -04:00
|
|
|
{
|
|
|
|
$arr = [
|
2022-03-04 12:19:47 -05:00
|
|
|
'cat' => FALSE,
|
2018-08-20 13:01:16 -04:00
|
|
|
'foo' => 'bar',
|
2022-03-04 12:19:47 -05:00
|
|
|
'dateTime' => (array) new DateTime(),
|
2018-08-20 13:01:16 -04:00
|
|
|
'bar' => [
|
|
|
|
'a' => 1,
|
|
|
|
'b' => 2,
|
|
|
|
'c' => 3,
|
|
|
|
],
|
|
|
|
'baz' => [
|
|
|
|
'x' => [1, 2, 3],
|
|
|
|
'y' => [2, 4, 6],
|
|
|
|
'z' => [3, 6, 9],
|
|
|
|
],
|
|
|
|
'foobar' => [
|
2022-09-22 11:13:53 -04:00
|
|
|
'z' => 3.1415926539,
|
2018-08-20 13:01:16 -04:00
|
|
|
'a' => [
|
|
|
|
'aa' => -8,
|
|
|
|
'b' => [
|
|
|
|
'aaa' => 4028,
|
|
|
|
'c' => [1, 2, 3],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
$toml = arrayToToml($arr);
|
|
|
|
|
|
|
|
$parsedArray = tomlToArray($toml);
|
|
|
|
|
|
|
|
$this->assertEquals($arr, $parsedArray);
|
|
|
|
}
|
2018-11-02 12:58:19 -04:00
|
|
|
|
2020-12-11 15:37:55 -05:00
|
|
|
public function testArrayToTomlNullValue(): void
|
|
|
|
{
|
|
|
|
$arr = [
|
2022-03-04 12:19:47 -05:00
|
|
|
'cat' => FALSE,
|
|
|
|
'bat' => NULL,
|
2020-12-11 15:37:55 -05:00
|
|
|
'foo' => 'bar',
|
|
|
|
];
|
|
|
|
|
|
|
|
$toml = arrayToToml($arr);
|
|
|
|
$parsedArray = tomlToArray($toml);
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertSame([
|
|
|
|
'cat' => FALSE,
|
2020-12-11 15:37:55 -05:00
|
|
|
'foo' => 'bar',
|
|
|
|
], $parsedArray);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsSequentialArray(): void
|
2018-11-02 12:58:19 -04:00
|
|
|
{
|
|
|
|
$this->assertFalse(isSequentialArray(0));
|
|
|
|
$this->assertFalse(isSequentialArray([50 => 'foo']));
|
|
|
|
$this->assertTrue(isSequentialArray([]));
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertTrue(isSequentialArray([1, 2, 3, 4, 5]));
|
2018-11-02 12:58:19 -04:00
|
|
|
}
|
2020-12-11 15:37:55 -05:00
|
|
|
|
|
|
|
public function testGetResponse(): void
|
|
|
|
{
|
|
|
|
$this->assertNotEmpty(getResponse('https://example.com'));
|
|
|
|
}
|
2021-02-23 15:38:29 -05:00
|
|
|
|
|
|
|
public function testCheckFolderPermissions(): void
|
|
|
|
{
|
|
|
|
$config = $this->container->get('config');
|
|
|
|
$actual = checkFolderPermissions($config);
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertIsArray($actual);
|
2021-02-23 15:38:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetLocalImageEmptyUrl(): void
|
|
|
|
{
|
|
|
|
$actual = getLocalImg('');
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertSame('images/placeholder.webp', $actual);
|
2021-02-23 15:38:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetLocalImageBadUrl(): void
|
|
|
|
{
|
|
|
|
$actual = getLocalImg('//foo.bar');
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertSame('images/placeholder.webp', $actual);
|
2021-02-23 15:38:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testColNotEmpty(): void
|
|
|
|
{
|
|
|
|
$hasEmptyCols = [[
|
|
|
|
'foo' => '',
|
|
|
|
], [
|
|
|
|
'foo' => '',
|
|
|
|
]];
|
|
|
|
|
|
|
|
$hasNonEmptyCols = [[
|
|
|
|
'foo' => 'bar',
|
|
|
|
], [
|
|
|
|
'foo' => 'baz',
|
|
|
|
]];
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->assertFalse(colNotEmpty($hasEmptyCols, 'foo'));
|
|
|
|
$this->assertTrue(colNotEmpty($hasNonEmptyCols, 'foo'));
|
2021-02-23 15:38:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testClearCache(): void
|
|
|
|
{
|
|
|
|
$this->assertTrue(clearCache($this->container->get('cache')));
|
|
|
|
}
|
2023-05-19 10:42:25 -04:00
|
|
|
|
|
|
|
public static function getFriendlyTime(): array
|
|
|
|
{
|
|
|
|
$SECONDS_IN_DAY = SECONDS_IN_MINUTE * MINUTES_IN_DAY;
|
|
|
|
$SECONDS_IN_HOUR = SECONDS_IN_MINUTE * MINUTES_IN_HOUR;
|
|
|
|
$SECONDS_IN_YEAR = SECONDS_IN_MINUTE * MINUTES_IN_YEAR;
|
|
|
|
|
|
|
|
return [[
|
|
|
|
'seconds' => $SECONDS_IN_YEAR,
|
|
|
|
'expected' => '1 year',
|
|
|
|
], [
|
|
|
|
'seconds' => $SECONDS_IN_HOUR,
|
|
|
|
'expected' => '1 hour',
|
|
|
|
], [
|
|
|
|
'seconds' => (2 * $SECONDS_IN_YEAR) + 30,
|
|
|
|
'expected' => '2 years, 30 seconds',
|
|
|
|
], [
|
|
|
|
'seconds' => (5 * $SECONDS_IN_YEAR) + (3 * $SECONDS_IN_DAY) + (17 * SECONDS_IN_MINUTE),
|
|
|
|
'expected' => '5 years, 3 days, and 17 minutes',
|
|
|
|
]];
|
|
|
|
}
|
|
|
|
|
|
|
|
#[\PHPUnit\Framework\Attributes\DataProvider('getFriendlyTime')]
|
|
|
|
public function testGetFriendlyTime(int $seconds, string $expected): void
|
|
|
|
{
|
|
|
|
$actual = friendlyTime($seconds);
|
|
|
|
|
|
|
|
$this->assertSame($expected, $actual);
|
|
|
|
}
|
2022-03-04 12:19:47 -05:00
|
|
|
}
|