HummingBirdAnimeClient/tests/UrlGeneratorTest.php

52 lines
1.2 KiB
PHP
Raw Normal View History

<?php declare(strict_types=1);
/**
* Hummingbird Anime List Client
*
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
*
* PHP version 7
*
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2018-01-15 14:43:15 -05:00
* @copyright 2015 - 2018 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @version 4.0
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
2015-09-14 15:49:20 -04:00
2017-02-15 11:49:38 -05:00
namespace Aviat\AnimeClient\Tests;
2015-09-15 13:19:29 -04:00
use Aviat\AnimeClient\UrlGenerator;
2016-10-20 22:32:17 -04:00
use Aviat\Ion\Config;
2015-09-14 15:49:20 -04:00
2017-02-15 16:40:18 -05:00
class UrlGeneratorTest extends AnimeClientTestCase {
2015-09-14 15:49:20 -04:00
public function assetUrlProvider()
{
return [
'single argument' => [
'args' => [
'images'
],
'expected' => '//localhost/assets/images',
],
'multiple arguments' => [
'args' => [
'images', 'anime', 'foo.png'
],
'expected' => '//localhost/assets/images/anime/foo.png'
]
];
}
/**
* @dataProvider assetUrlProvider
*/
public function testAssetUrl($args, $expected)
{
$urlGenerator = new UrlGenerator($this->container);
2017-02-15 15:56:10 -05:00
$result = $urlGenerator->assetUrl(...$args);
2015-09-14 15:49:20 -04:00
$this->assertEquals($expected, $result);
}
}