HummingBirdAnimeClient/tests/AnimeClient_TestCase.php

142 lines
3.3 KiB
PHP
Raw Normal View History

2015-10-19 12:50:46 -04:00
<?php
use Aura\Web\WebFactory;
2015-10-21 15:43:51 -04:00
use GuzzleHttp\Client;
use GuzzleHttp\Handler\MockHandler;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Psr7\Response;
use Zend\Diactoros\ServerRequestFactory;
use Zend\Diactoros\Response as HttpResponse;
2015-10-19 12:50:46 -04:00
2016-01-06 17:06:30 -05:00
use Aviat\AnimeClient\AnimeClient;
2015-10-19 12:50:46 -04:00
2016-01-06 17:06:30 -05:00
define('ROOT_DIR', __DIR__ . '/../');
define('TEST_DATA_DIR', __DIR__ . '/test_data');
define('TEST_VIEW_DIR', __DIR__ . '/test_views');
2015-10-19 12:50:46 -04:00
/**
* Base class for TestCases
*/
class AnimeClient_TestCase extends PHPUnit_Framework_TestCase {
// Test directory constants
2016-01-06 17:06:30 -05:00
const ROOT_DIR = ROOT_DIR;
const SRC_DIR = AnimeClient::SRC_DIR;
const TEST_DATA_DIR = TEST_DATA_DIR;
const TEST_VIEW_DIR = TEST_VIEW_DIR;
2015-10-19 12:50:46 -04:00
protected $container;
protected static $staticContainer;
protected static $session_handler;
2015-10-20 15:59:51 -04:00
2015-10-19 12:50:46 -04:00
public static function setUpBeforeClass()
{
// Use mock session handler
$session_handler = new TestSessionHandler();
session_set_save_handler($session_handler, TRUE);
self::$session_handler = $session_handler;
2015-11-17 16:45:41 -05:00
// Remove test cache files
2016-01-06 17:06:30 -05:00
$files = glob(_dir(TEST_DATA_DIR, 'cache', '*.json'));
2015-11-17 16:45:41 -05:00
array_map('unlink', $files);
2015-10-19 12:50:46 -04:00
}
public function setUp()
{
parent::setUp();
2015-10-20 15:59:51 -04:00
$ROOT_DIR = realpath(_dir(__DIR__, '/../'));
$APP_DIR = _dir($ROOT_DIR, 'app');
2015-10-19 12:50:46 -04:00
$config_array = [
'asset_path' => '//localhost/assets/',
2016-01-06 17:06:30 -05:00
'img_cache_path' => _dir(ROOT_DIR, 'public/images'),
'data_cache_path' => _dir(TEST_DATA_DIR, 'cache'),
2015-12-08 16:39:49 -05:00
'database' => [
'collection' => [
'type' => 'sqlite',
'host' => '',
'user' => '',
'pass' => '',
'port' => '',
'name' => 'default',
'database' => '',
'file' => ':memory:',
],
'cache' => [
'type' => 'sqlite',
'host' => '',
'user' => '',
'pass' => '',
'port' => '',
'name' => 'default',
'database' => '',
'file' => ':memory:',
2015-12-08 16:39:49 -05:00
]
],
2015-10-19 12:50:46 -04:00
'routes' => [
2016-01-06 11:08:56 -05:00
'route_config' => [
'asset_path' => '/assets'
2015-10-19 12:50:46 -04:00
],
2016-01-06 11:08:56 -05:00
'routes' => [
]
2016-04-08 14:25:45 -04:00
],
'redis' => [
2016-07-27 13:35:30 -04:00
'host' => (array_key_exists('REDIS_HOST', $_ENV)) ? $_ENV['REDIS_HOST'] : 'localhost',
2016-04-08 14:25:45 -04:00
'database' => 13
2015-10-19 12:50:46 -04:00
]
];
2015-10-20 15:59:51 -04:00
2015-10-19 12:50:46 -04:00
// Set up DI container
$di = require _dir($APP_DIR, 'bootstrap.php');
2015-10-19 12:50:46 -04:00
$container = $di($config_array);
$container->set('session-handler', self::$session_handler);
$this->container = $container;
}
/**
* Set arbitrary superglobal values for testing purposes
*
* @param array $supers
* @return void
*/
public function setSuperGlobals($supers = [])
{
$default = [
'_SERVER' => $_SERVER,
2015-10-19 12:50:46 -04:00
'_GET' => $_GET,
'_POST' => $_POST,
'_COOKIE' => $_COOKIE,
'_FILES' => $_FILES
];
$request = call_user_func_array(
['Zend\Diactoros\ServerRequestFactory', 'fromGlobals'],
array_merge($default, $supers)
);
$this->container->set('request', $request);
$this->container->set('response', new HttpResponse());
2015-10-19 12:50:46 -04:00
}
2015-10-21 15:43:51 -04:00
/**
* Create a mock guzzle client for testing
* api call methods
*
* @param int $code The status code
* @param array $headers
* @param string $body
* @return Client
*/
public function getMockClient($code, $headers, $body)
{
$mock = new MockHandler([
new Response($code, $headers, $body)
]);
$handler = HandlerStack::create($mock);
$client = new Client(['handler' => $handler]);
return $client;
}
2015-10-19 12:50:46 -04:00
}
// End of AnimeClient_TestCase.php