HummingBirdAnimeClient/tests/API/Kitsu/Transformer/MangaListTransformerTest.php

105 lines
2.7 KiB
PHP
Raw Normal View History

2017-01-31 12:51:14 -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
*
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
*
* PHP version 7
*
2017-02-15 16:13:32 -05:00
* @package HummingbirdAnimeClient
2017-02-07 13:27:41 -05:00
* @author Timothy J. Warren <tim@timshomepage.net>
2018-01-15 14:43:15 -05:00
* @copyright 2015 - 2018 Timothy J. Warren
2017-02-07 13:27:41 -05:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 4.0
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
2017-02-07 13:27:41 -05:00
*/
2017-01-31 12:51:14 -05:00
namespace Aviat\AnimeClient\Tests\API\Kitsu\Transformer;
use Aviat\AnimeClient\API\JsonAPI;
use Aviat\AnimeClient\API\Kitsu\Transformer\MangaListTransformer;
2017-02-15 16:40:18 -05:00
use Aviat\AnimeClient\Tests\AnimeClientTestCase;
2018-08-08 13:05:38 -04:00
use Aviat\AnimeClient\Types\{
MangaFormItem,
MangaFormItemData,
};
2017-01-31 12:51:14 -05:00
use Aviat\Ion\Json;
2017-02-15 16:40:18 -05:00
class MangaListTransformerTest extends AnimeClientTestCase {
2017-03-29 13:42:40 -04:00
2017-02-22 15:08:29 -05:00
protected $dir;
protected $rawBefore;
protected $beforeTransform;
protected $afterTransform;
protected $transformer;
2017-01-31 12:51:14 -05:00
2017-03-29 13:42:40 -04:00
public function setUp()
2017-01-31 12:51:14 -05:00
{
parent::setUp();
2017-03-29 13:42:40 -04:00
$kitsuModel = $this->container->get('kitsu-model');
2017-02-15 16:40:18 -05:00
$this->dir = AnimeClientTestCase::TEST_DATA_DIR . '/Kitsu';
2017-03-29 13:42:40 -04:00
// Prep for transform
2017-01-31 12:51:14 -05:00
$rawBefore = Json::decodeFile("{$this->dir}/mangaListBeforeTransform.json");
2017-03-29 13:42:40 -04:00
$included = JsonAPI::organizeIncludes($rawBefore['included']);
$included = JsonAPI::inlineIncludedRelationships($included, 'manga');
foreach($rawBefore['data'] as $i => &$item)
{
$item['included'] = $included;
}
$this->beforeTransform = $rawBefore['data'];
2017-04-13 11:54:58 -04:00
// $this->afterTransform = Json::decodeFile("{$this->dir}/mangaListAfterTransform.json");
2017-03-29 13:42:40 -04:00
2017-01-31 12:51:14 -05:00
$this->transformer = new MangaListTransformer();
}
2017-03-29 13:42:40 -04:00
2017-01-31 12:51:14 -05:00
public function testTransform()
{
$actual = $this->transformer->transformCollection($this->beforeTransform);
2017-04-13 11:54:58 -04:00
$this->assertMatchesSnapshot($actual);
2017-01-31 12:51:14 -05:00
}
2017-03-29 13:42:40 -04:00
2017-01-31 12:51:14 -05:00
public function testUntransform()
{
$input = [
2017-03-29 13:42:40 -04:00
'id' => '15084773',
'mal_id' => '26769',
2017-01-31 12:51:14 -05:00
'chapters_read' => 67,
'manga' => [
2017-04-13 11:54:58 -04:00
'id' => '12345',
2017-01-31 12:51:14 -05:00
'titles' => ["Bokura wa Minna Kawaisou"],
'alternate_title' => NULL,
'slug' => "bokura-wa-minna-kawaisou",
'url' => "https://kitsu.io/manga/bokura-wa-minna-kawaisou",
'type' => 'manga',
'image' => 'https://media.kitsu.io/manga/poster_images/20286/small.jpg?1434293999',
'genres' => [],
],
'status' => 'current',
'notes' => '',
'rereading' => false,
'reread_count' => 0,
'new_rating' => 9,
];
2017-03-29 13:42:40 -04:00
2017-01-31 12:51:14 -05:00
$actual = $this->transformer->untransform($input);
2018-08-08 13:05:38 -04:00
$expected = new MangaFormItem([
2017-01-31 12:51:14 -05:00
'id' => '15084773',
2017-03-29 13:42:40 -04:00
'mal_id' => '26769',
2018-08-08 13:05:38 -04:00
'data' => new MangaFormItemData([
2017-01-31 12:51:14 -05:00
'status' => 'current',
'progress' => 67,
'reconsuming' => false,
'reconsumeCount' => 0,
'notes' => '',
'rating' => 4.5
2018-08-08 13:05:38 -04:00
])
]);
2017-03-29 13:42:40 -04:00
2017-01-31 12:51:14 -05:00
$this->assertEquals($expected, $actual);
}
}