HummingBirdAnimeClient/tests/AnimeClient/MenuGeneratorTest.php

93 lines
2.1 KiB
PHP
Raw Normal View History

<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
*
2023-07-13 11:08:05 -04:00
* PHP version 8.1
*
2023-07-13 11:08:05 -04:00
* @copyright 2015 - 2023 Timothy J. Warren <tim@timshome.page>
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
2023-07-13 11:08:05 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
2017-02-15 11:49:38 -05:00
namespace Aviat\AnimeClient\Tests;
2015-10-09 14:34:55 -04:00
use Aviat\AnimeClient\MenuGenerator;
2016-10-20 22:32:17 -04:00
use Aviat\Ion\Friend;
2015-10-09 14:34:55 -04:00
2022-03-04 12:19:47 -05:00
/**
* @internal
*/
final class MenuGeneratorTest extends AnimeClientTestCase
{
2015-10-09 14:34:55 -04:00
protected $generator;
protected $friend;
2022-03-04 12:19:47 -05:00
protected function setUp(): void
{
2015-10-09 14:34:55 -04:00
parent::setUp();
2020-08-21 13:07:00 -04:00
$this->generator = MenuGenerator::new($this->container);
2015-10-09 14:34:55 -04:00
}
public function testSanity()
{
2020-08-21 13:07:00 -04:00
$generator = MenuGenerator::new($this->container);
2018-01-16 14:58:07 -05:00
$this->assertInstanceOf(MenuGenerator::class, $generator);
2015-10-09 14:34:55 -04:00
}
public function testParseConfig()
{
$friend = new Friend($this->generator);
2015-10-15 09:25:30 -04:00
$menus = [
'anime_list' => [
'route_prefix' => '/anime',
'items' => [
'watching' => '/watching',
'plan_to_watch' => '/plan_to_watch',
'on_hold' => '/on_hold',
'dropped' => '/dropped',
'completed' => '/completed',
2022-03-04 12:19:47 -05:00
'all' => '/all',
],
2015-10-15 09:25:30 -04:00
],
];
2015-10-09 14:34:55 -04:00
$expected = [
'anime_list' => [
'Watching' => '/anime/watching',
'Plan To Watch' => '/anime/plan_to_watch',
'On Hold' => '/anime/on_hold',
'Dropped' => '/anime/dropped',
'Completed' => '/anime/completed',
2022-03-04 12:19:47 -05:00
'All' => '/anime/all',
],
2015-10-09 14:34:55 -04:00
];
2022-03-04 12:19:47 -05:00
$this->assertSame($expected, $friend->parseConfig($menus));
2015-10-09 14:34:55 -04:00
}
2015-11-17 16:45:41 -05:00
public function testBadConfig()
{
$menus = [
'anime_list' => [
'route_prefix' => '/anime',
'items' => [
'watching' => '/watching',
'plan_to_watch' => '/plan_to_watch',
'on_hold' => '/on_hold',
'dropped' => '/dropped',
'completed' => '/completed',
2022-03-04 12:19:47 -05:00
'all' => '/all',
],
2015-11-17 16:45:41 -05:00
],
];
$config = $this->container->get('config');
$config->set('menus', $menus);
2023-05-19 10:56:23 -04:00
$this->container->setInstance('config', $config);
2015-11-17 16:45:41 -05:00
$expected = '';
2022-03-04 12:19:47 -05:00
$this->assertSame($expected, $this->generator->generate('manga_list'));
2015-11-17 16:45:41 -05:00
}
2022-03-04 12:19:47 -05:00
}