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
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2021-01-13 01:52:03 -05:00
|
|
|
* @copyright 2015 - 2021 Timothy J. Warren
|
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
|
2018-08-20 13:01:16 -04:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Tests;
|
|
|
|
|
|
|
|
use function Aviat\AnimeClient\arrayToToml;
|
2021-02-23 15:38:29 -05:00
|
|
|
use function Aviat\AnimeClient\checkFolderPermissions;
|
|
|
|
use function Aviat\AnimeClient\clearCache;
|
|
|
|
use function Aviat\AnimeClient\colNotEmpty;
|
|
|
|
use function Aviat\AnimeClient\getLocalImg;
|
2020-12-11 15:37:55 -05:00
|
|
|
use function Aviat\AnimeClient\getResponse;
|
2018-11-02 12:58:19 -04:00
|
|
|
use function Aviat\AnimeClient\isSequentialArray;
|
2018-08-20 13:01:16 -04:00
|
|
|
use function Aviat\AnimeClient\tomlToArray;
|
|
|
|
|
|
|
|
class AnimeClientTest extends AnimeClientTestCase
|
|
|
|
{
|
2020-12-11 15:37:55 -05:00
|
|
|
public function testArrayToToml (): void
|
2018-08-20 13:01:16 -04:00
|
|
|
{
|
|
|
|
$arr = [
|
|
|
|
'cat' => false,
|
|
|
|
'foo' => 'bar',
|
|
|
|
'dateTime' => (array) new \DateTime(),
|
|
|
|
'bar' => [
|
|
|
|
'a' => 1,
|
|
|
|
'b' => 2,
|
|
|
|
'c' => 3,
|
|
|
|
],
|
|
|
|
'baz' => [
|
|
|
|
'x' => [1, 2, 3],
|
|
|
|
'y' => [2, 4, 6],
|
|
|
|
'z' => [3, 6, 9],
|
|
|
|
],
|
|
|
|
'foobar' => [
|
|
|
|
'z' => 22/7,
|
|
|
|
'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 = [
|
|
|
|
'cat' => false,
|
|
|
|
'bat' => null,
|
|
|
|
'foo' => 'bar',
|
|
|
|
];
|
|
|
|
|
|
|
|
$toml = arrayToToml($arr);
|
|
|
|
$parsedArray = tomlToArray($toml);
|
|
|
|
|
|
|
|
$this->assertEquals([
|
|
|
|
'cat' => false,
|
|
|
|
'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([]));
|
|
|
|
$this->assertTrue(isSequentialArray([1,2,3,4,5]));
|
|
|
|
}
|
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);
|
|
|
|
$this->assertTrue(is_array($actual));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetLocalImageEmptyUrl(): void
|
|
|
|
{
|
|
|
|
$actual = getLocalImg('');
|
|
|
|
$this->assertEquals('images/placeholder.webp', $actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetLocalImageBadUrl(): void
|
|
|
|
{
|
|
|
|
$actual = getLocalImg('//foo.bar');
|
|
|
|
$this->assertEquals('images/placeholder.webp', $actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testColNotEmpty(): void
|
|
|
|
{
|
|
|
|
$hasEmptyCols = [[
|
|
|
|
'foo' => '',
|
|
|
|
], [
|
|
|
|
'foo' => '',
|
|
|
|
]];
|
|
|
|
|
|
|
|
$hasNonEmptyCols = [[
|
|
|
|
'foo' => 'bar',
|
|
|
|
], [
|
|
|
|
'foo' => 'baz',
|
|
|
|
]];
|
|
|
|
|
|
|
|
$this->assertEquals(false, colNotEmpty($hasEmptyCols, 'foo'));
|
|
|
|
$this->assertEquals(true, colNotEmpty($hasNonEmptyCols, 'foo'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testClearCache(): void
|
|
|
|
{
|
|
|
|
$this->assertTrue(clearCache($this->container->get('cache')));
|
|
|
|
}
|
2018-08-20 13:01:16 -04:00
|
|
|
}
|