Remove XML tests
This commit is contained in:
parent
f3f2879c54
commit
4c896349b9
@ -1,98 +0,0 @@
|
|||||||
<?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;
|
|
||||||
|
|
||||||
use Aviat\AnimeClient\API\XML;
|
|
||||||
use PHPUnit\Framework\TestCase;
|
|
||||||
|
|
||||||
class XMLTest extends TestCase {
|
|
||||||
|
|
||||||
protected $malExport;
|
|
||||||
protected $xml;
|
|
||||||
protected $expectedXml;
|
|
||||||
protected $object;
|
|
||||||
protected $array;
|
|
||||||
|
|
||||||
public function setUp()
|
|
||||||
{
|
|
||||||
$this->malExport = file_get_contents(__DIR__ . '/../test_data/XML/MALExport.xml');
|
|
||||||
$this->xml = file_get_contents(__DIR__ . '/../test_data/XML/xmlTestFile.xml');
|
|
||||||
$this->expectedXml = file_get_contents(__DIR__ . '/../test_data/XML/minifiedXmlTestFile.xml');
|
|
||||||
|
|
||||||
$this->array = [
|
|
||||||
'entry' => [
|
|
||||||
'foo' => [
|
|
||||||
'bar' => [
|
|
||||||
'baz' => 42
|
|
||||||
]
|
|
||||||
],
|
|
||||||
'episode' => '11',
|
|
||||||
'status' => 'watching',
|
|
||||||
'score' => '7',
|
|
||||||
'storage_type' => '1',
|
|
||||||
'storage_value' => '2.5',
|
|
||||||
'times_rewatched' => '1',
|
|
||||||
'rewatch_value' => '3',
|
|
||||||
'date_start' => '01152015',
|
|
||||||
'date_finish' => '10232016',
|
|
||||||
'priority' => '2',
|
|
||||||
'enable_discussion' => '0',
|
|
||||||
'enable_rewatching' => '1',
|
|
||||||
'comments' => 'Should you say something?',
|
|
||||||
'tags' => 'test tag, 2nd tag'
|
|
||||||
]
|
|
||||||
];
|
|
||||||
|
|
||||||
$this->object = new XML();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function testToArray()
|
|
||||||
{
|
|
||||||
$this->assertEquals($this->array, XML::toArray($this->xml));
|
|
||||||
}
|
|
||||||
|
|
||||||
public function testMALExport()
|
|
||||||
{
|
|
||||||
$array = XML::toArray($this->malExport);
|
|
||||||
$this->assertEquals($array['myanimelist']['myinfo']['user_total_anime'], count($array['myanimelist']['anime']));
|
|
||||||
// $this->assertEquals($array, XML::toArray($this->malExport));
|
|
||||||
}
|
|
||||||
|
|
||||||
public function testParse()
|
|
||||||
{
|
|
||||||
$this->object->setXML($this->xml);
|
|
||||||
$this->assertEquals($this->array, $this->object->parse());
|
|
||||||
}
|
|
||||||
|
|
||||||
public function testToXML()
|
|
||||||
{
|
|
||||||
$this->assertEquals($this->expectedXml, XML::toXML($this->array));
|
|
||||||
}
|
|
||||||
|
|
||||||
public function testCreateXML()
|
|
||||||
{
|
|
||||||
$this->object->setData($this->array);
|
|
||||||
$this->assertEquals($this->expectedXml, $this->object->createXML());
|
|
||||||
}
|
|
||||||
|
|
||||||
public function testToString()
|
|
||||||
{
|
|
||||||
$this->object->setData($this->array);
|
|
||||||
$this->assertEquals($this->expectedXml, $this->object->__toString());
|
|
||||||
$this->assertEquals($this->expectedXml, (string) $this->object);
|
|
||||||
}
|
|
||||||
}
|
|
File diff suppressed because it is too large
Load Diff
@ -1,2 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<entry><foo><bar><baz>42</baz></bar></foo><episode>11</episode><status>watching</status><score>7</score><storage_type>1</storage_type><storage_value>2.5</storage_value><times_rewatched>1</times_rewatched><rewatch_value>3</rewatch_value><date_start>01152015</date_start><date_finish>10232016</date_finish><priority>2</priority><enable_discussion>0</enable_discussion><enable_rewatching>1</enable_rewatching><comments>Should you say something?</comments><tags>test tag, 2nd tag</tags></entry>
|
|
@ -1,22 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<entry>
|
|
||||||
<foo>
|
|
||||||
<bar>
|
|
||||||
<baz>42</baz>
|
|
||||||
</bar>
|
|
||||||
</foo>
|
|
||||||
<episode>11</episode>
|
|
||||||
<status>watching</status>
|
|
||||||
<score>7</score>
|
|
||||||
<storage_type>1</storage_type>
|
|
||||||
<storage_value>2.5</storage_value>
|
|
||||||
<times_rewatched>1</times_rewatched>
|
|
||||||
<rewatch_value>3</rewatch_value>
|
|
||||||
<date_start>01152015</date_start>
|
|
||||||
<date_finish>10232016</date_finish>
|
|
||||||
<priority>2</priority>
|
|
||||||
<enable_discussion>0</enable_discussion>
|
|
||||||
<enable_rewatching>1</enable_rewatching>
|
|
||||||
<comments>Should you say something?</comments>
|
|
||||||
<tags>test tag, 2nd tag</tags>
|
|
||||||
</entry>
|
|
Loading…
Reference in New Issue
Block a user