59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
namespace Aviat\AnimeClient\Tests\API;
|
||
|
|
||
|
use Aviat\AnimeClient\API\Kitsu;
|
||
|
use Aviat\AnimeClient\API\Kitsu\Enum\{
|
||
|
AnimeAiringStatus,
|
||
|
AnimeWatchingStatus,
|
||
|
MangaReadingStatus
|
||
|
};
|
||
|
use DateTimeImmutable;
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class KitsuTest extends TestCase {
|
||
|
public function testGetStatusToSelectMap()
|
||
|
{
|
||
|
$this->assertEquals([
|
||
|
AnimeWatchingStatus::WATCHING => 'Currently Watching',
|
||
|
AnimeWatchingStatus::PLAN_TO_WATCH => 'Plan to Watch',
|
||
|
AnimeWatchingStatus::COMPLETED => 'Completed',
|
||
|
AnimeWatchingStatus::ON_HOLD => 'On Hold',
|
||
|
AnimeWatchingStatus::DROPPED => 'Dropped'
|
||
|
], Kitsu::getStatusToSelectMap());
|
||
|
}
|
||
|
|
||
|
public function testGetStatusToMangaSelectMap()
|
||
|
{
|
||
|
$this->assertEquals([
|
||
|
MangaReadingStatus::READING => 'Currently Reading',
|
||
|
MangaReadingStatus::PLAN_TO_READ => 'Plan to Read',
|
||
|
MangaReadingStatus::COMPLETED => 'Completed',
|
||
|
MangaReadingStatus::ON_HOLD => 'On Hold',
|
||
|
MangaReadingStatus::DROPPED => 'Dropped'
|
||
|
], Kitsu::getStatusToMangaSelectMap());
|
||
|
}
|
||
|
|
||
|
public function testGetAiringStatus()
|
||
|
{
|
||
|
$actual = Kitsu::getAiringStatus('next week', 'next year');
|
||
|
$this->assertEquals(AnimeAiringStatus::NOT_YET_AIRED, $actual);
|
||
|
}
|
||
|
|
||
|
public function testParseStreamingLinksEmpty()
|
||
|
{
|
||
|
$this->assertEquals([], Kitsu::parseStreamingLinks([]));
|
||
|
}
|
||
|
|
||
|
public function testTitleIsUniqueEmpty()
|
||
|
{
|
||
|
$actual = Kitsu::filterTitles([
|
||
|
'canonicalTitle' => 'Foo',
|
||
|
'titles' => [
|
||
|
null,
|
||
|
''
|
||
|
]
|
||
|
]);
|
||
|
$this->assertEquals(['Foo'], $actual);
|
||
|
}
|
||
|
}
|