HummingBirdAnimeClient/tests/AnimeClient/API/Kitsu/Transformer/AnimeTransformerTest.php

47 lines
1.2 KiB
PHP
Raw Normal View History

2017-01-12 15:41:20 -05:00
<?php declare(strict_types=1);
2017-02-07 13:27:41 -05:00
/**
2017-02-15 16:13:32 -05:00
* Hummingbird Anime List Client
2017-02-07 13:27:41 -05:00
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
2017-02-07 13:27:41 -05:00
*
2021-02-04 11:57:01 -05:00
* PHP version 8
2017-02-07 13:27:41 -05:00
*
2022-03-04 15:50:35 -05:00
* @copyright 2015 - 2022 Timothy J. Warren <tim@timshome.page>
2017-02-07 13:27:41 -05: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
2017-02-07 13:27:41 -05:00
*/
2017-01-12 15:41:20 -05:00
namespace Aviat\AnimeClient\Tests\API\Kitsu\Transformer;
use Aviat\AnimeClient\API\Kitsu\Transformer\AnimeTransformer;
2017-02-15 16:40:18 -05:00
use Aviat\AnimeClient\Tests\AnimeClientTestCase;
2017-01-12 15:41:20 -05:00
use Aviat\Ion\Json;
2022-03-04 12:19:47 -05:00
/**
* @internal
*/
final class AnimeTransformerTest extends AnimeClientTestCase
{
2017-02-22 15:08:29 -05:00
protected $dir;
protected $beforeTransform;
protected $transformer;
2022-03-04 12:19:47 -05:00
protected function setUp(): void
{
2017-01-12 15:41:20 -05:00
parent::setUp();
2017-02-15 16:40:18 -05:00
$this->dir = AnimeClientTestCase::TEST_DATA_DIR . '/Kitsu';
2017-01-13 16:48:08 -05:00
$this->beforeTransform = Json::decodeFile("{$this->dir}/animeBeforeTransform.json");
2017-01-12 15:41:20 -05:00
$this->transformer = new AnimeTransformer();
}
2017-01-12 15:41:20 -05:00
public function testTransform()
{
2022-06-29 11:25:14 -04:00
$this->markTestSkipped('May fail on CI');
2017-01-12 15:41:20 -05:00
$actual = $this->transformer->transform($this->beforeTransform);
$this->assertMatchesSnapshot($actual);
2017-01-12 15:41:20 -05:00
}
2022-03-04 12:19:47 -05:00
}