2015-06-25 17:00:29 -04:00
|
|
|
<?php
|
|
|
|
|
2015-06-26 16:39:10 -04:00
|
|
|
use \AnimeClient\Config;
|
|
|
|
|
2015-06-25 17:00:29 -04:00
|
|
|
class FunctionsTest extends AnimeClient_TestCase {
|
|
|
|
|
2015-06-26 13:24:55 -04:00
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
global $config;
|
|
|
|
$config = new Config([
|
|
|
|
'config' => [
|
|
|
|
'asset_path' => '//localhost/assets/'
|
|
|
|
],
|
|
|
|
'base_config' => [
|
|
|
|
|
|
|
|
]
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2015-06-25 17:00:29 -04:00
|
|
|
/**
|
|
|
|
* Basic sanity test for _dir function
|
|
|
|
*/
|
|
|
|
public function testDir()
|
|
|
|
{
|
2015-06-29 10:26:50 -04:00
|
|
|
$this->assertEquals('foo' . DIRECTORY_SEPARATOR . 'bar', _dir('foo', 'bar'));
|
2015-06-25 17:00:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsSelected()
|
|
|
|
{
|
2015-06-26 12:03:42 -04:00
|
|
|
// Failure to match
|
|
|
|
$this->assertEquals('', is_selected('foo', 'bar'));
|
2015-06-25 17:00:29 -04:00
|
|
|
|
2015-06-26 12:03:42 -04:00
|
|
|
// Matches
|
|
|
|
$this->assertEquals('selected', is_selected('foo', 'foo'));
|
2015-06-25 17:00:29 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsNotSelected()
|
|
|
|
{
|
2015-06-26 12:03:42 -04:00
|
|
|
// Failure to match
|
|
|
|
$this->assertEquals('selected', is_not_selected('foo', 'bar'));
|
2015-06-25 17:00:29 -04:00
|
|
|
|
2015-06-26 12:03:42 -04:00
|
|
|
// Matches
|
|
|
|
$this->assertEquals('', is_not_selected('foo', 'foo'));
|
2015-06-25 17:00:29 -04:00
|
|
|
}
|
|
|
|
|
2015-06-26 12:03:42 -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
|
|
|
|
*/
|
2015-06-26 13:24:55 -04:00
|
|
|
public function testAssetUrl($args, $expected)
|
2015-06-26 12:03:42 -04:00
|
|
|
{
|
|
|
|
$result = call_user_func_array('asset_url', $args);
|
|
|
|
|
|
|
|
$this->assertEquals($expected, $result);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testIsLoggedIn()
|
|
|
|
{
|
|
|
|
$this->assertFalse(is_logged_in());
|
|
|
|
|
|
|
|
$_SESSION['hummingbird_anime_token'] = 'foobarbadsessionid';
|
|
|
|
|
|
|
|
$this->assertTrue(is_logged_in());
|
|
|
|
}
|
2015-06-25 17:00:29 -04:00
|
|
|
}
|