2021-02-23 13:00:30 -05:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
|
|
* Hummingbird Anime List Client
|
|
|
|
*
|
|
|
|
* An API client for Kitsu to manage anime and manga watch lists
|
|
|
|
*
|
|
|
|
* PHP version 8
|
|
|
|
*
|
|
|
|
* @package HummingbirdAnimeClient
|
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
|
|
|
* @copyright 2015 - 2021 Timothy J. Warren
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
* @version 5.2
|
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Aviat\AnimeClient\Tests\API\Kitsu\Transformer;
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
use Aviat\AnimeClient\API\Kitsu\Transformer\{AnimeHistoryTransformer, MangaHistoryTransformer};
|
2021-02-23 13:00:30 -05:00
|
|
|
use Aviat\AnimeClient\Tests\AnimeClientTestCase;
|
|
|
|
use Aviat\Ion\Json;
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
final class HistoryTransformerTest extends AnimeClientTestCase
|
|
|
|
{
|
2021-02-23 13:00:30 -05:00
|
|
|
protected array $beforeTransform;
|
|
|
|
protected string $dir;
|
|
|
|
|
2022-03-04 12:19:47 -05:00
|
|
|
protected function setUp(): void
|
|
|
|
{
|
2021-02-23 13:00:30 -05:00
|
|
|
parent::setUp();
|
|
|
|
$this->dir = AnimeClientTestCase::TEST_DATA_DIR . '/Kitsu';
|
|
|
|
|
|
|
|
$raw = Json::decodeFile("{$this->dir}/historyBeforeTransform.json");
|
|
|
|
$this->beforeTransform = $raw;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testAnimeTransform(): void
|
|
|
|
{
|
2022-03-04 12:19:47 -05:00
|
|
|
$this->markTestSkipped('Old test data');
|
2021-12-02 17:13:31 -05:00
|
|
|
|
2021-02-23 13:00:30 -05:00
|
|
|
$actual = (new AnimeHistoryTransformer())->transform($this->beforeTransform);
|
|
|
|
$this->assertMatchesSnapshot($actual);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testMangaTransform(): void
|
|
|
|
{
|
|
|
|
$actual = (new MangaHistoryTransformer())->transform($this->beforeTransform);
|
|
|
|
$this->assertMatchesSnapshot($actual);
|
|
|
|
}
|
2022-03-04 12:19:47 -05:00
|
|
|
}
|