34 lines
1008 B
PHP
34 lines
1008 B
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
namespace Aviat\AnimeClient\Tests\API\Kitsu\Transformer;
|
||
|
|
||
|
use AnimeClient_TestCase;
|
||
|
use Aviat\AnimeClient\API\JsonAPI;
|
||
|
use Aviat\AnimeClient\API\Kitsu\Transformer\MangaTransformer;
|
||
|
use Aviat\Ion\Json;
|
||
|
|
||
|
class MangaTransformerTest extends AnimeClient_TestCase {
|
||
|
|
||
|
public function setUp()
|
||
|
{
|
||
|
parent::setUp();
|
||
|
$this->dir = AnimeClient_TestCase::TEST_DATA_DIR . '/Kitsu';
|
||
|
|
||
|
$data = Json::decodeFile("{$this->dir}/mangaBeforeTransform.json");
|
||
|
$baseData = $data['data'][0]['attributes'];
|
||
|
$baseData['included'] = $data['included'];
|
||
|
$this->beforeTransform = $baseData;
|
||
|
$this->afterTransform = Json::decodeFile("{$this->dir}/mangaAfterTransform.json");
|
||
|
|
||
|
$this->transformer = new MangaTransformer();
|
||
|
}
|
||
|
|
||
|
public function testTransform()
|
||
|
{
|
||
|
$actual = $this->transformer->transform($this->beforeTransform);
|
||
|
$expected = $this->afterTransform;
|
||
|
//Json::encodeFile("{$this->dir}/mangaAfterTransform.json", $actual);
|
||
|
|
||
|
$this->assertEquals($expected, $actual);
|
||
|
}
|
||
|
}
|