<?php declare(strict_types=1);
/**
 * Hummingbird Anime List Client
 *
 * An API client for Kitsu to manage anime and manga watch lists
 *
 * PHP version 7.1
 *
 * @package     HummingbirdAnimeClient
 * @author      Timothy J. Warren <tim@timshomepage.net>
 * @copyright   2015 - 2018  Timothy J. Warren
 * @license     http://www.opensource.org/licenses/mit-license.html  MIT License
 * @version     4.1
 * @link        https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
 */

namespace Aviat\AnimeClient\Tests\API\Kitsu\Transformer;

use Aviat\AnimeClient\API\JsonAPI;
use Aviat\AnimeClient\API\Kitsu\Transformer\MangaListTransformer;
use Aviat\AnimeClient\Tests\AnimeClientTestCase;
use Aviat\AnimeClient\Types\{
	FormItem,
	FormItemData
};
use Aviat\Ion\Json;

class MangaListTransformerTest extends AnimeClientTestCase {

	protected $dir;
	protected $rawBefore;
	protected $beforeTransform;
	protected $afterTransform;
	protected $transformer;

	public function setUp()
	{
		parent::setUp();

		$kitsuModel = $this->container->get('kitsu-model');

		$this->dir = AnimeClientTestCase::TEST_DATA_DIR . '/Kitsu';

		// Prep for transform
		$rawBefore = Json::decodeFile("{$this->dir}/mangaListBeforeTransform.json");
		$included = JsonAPI::organizeIncludes($rawBefore['included']);
		$included = JsonAPI::inlineIncludedRelationships($included, 'manga');
		foreach($rawBefore['data'] as $i => &$item)
		{
			$item['included'] = $included;
		}

		$this->beforeTransform = $rawBefore['data'];
		// $this->afterTransform = Json::decodeFile("{$this->dir}/mangaListAfterTransform.json");

		$this->transformer = new MangaListTransformer();
	}

	public function testTransform()
	{
		$actual = $this->transformer->transformCollection($this->beforeTransform);
		$this->assertMatchesSnapshot($actual);
	}

	public function testUntransform()
	{
		$input = [
			'id' => '15084773',
			'mal_id' => '26769',
			'chapters_read' => 67,
			'manga' => [
				'id' => '12345',
				'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,
		];

		$actual = $this->transformer->untransform($input);
		$expected = new FormItem([
			'id' => '15084773',
			'mal_id' => '26769',
			'data' => new FormItemData([
				'status' => 'current',
				'progress' => 67,
				'reconsuming' => false,
				'reconsumeCount' => 0,
				'notes' => '',
				'ratingTwenty' => 18,
			])
		]);

		$this->assertEquals($expected, $actual);
	}

}