2015-06-25 17:00:29 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Global setup for unit tests
|
|
|
|
*/
|
2016-01-06 15:44:40 -05:00
|
|
|
|
2016-07-18 13:06:37 -04:00
|
|
|
// Work around the silly timezone error
|
|
|
|
$timezone = ini_get('date.timezone');
|
|
|
|
if ($timezone === '' || $timezone === FALSE)
|
|
|
|
{
|
|
|
|
ini_set('date.timezone', 'GMT');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-25 17:00:29 -04:00
|
|
|
// -----------------------------------------------------------------------------
|
2016-01-06 15:44:40 -05:00
|
|
|
// Global functions
|
2015-06-25 17:00:29 -04:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
2015-09-14 10:54:50 -04:00
|
|
|
/**
|
|
|
|
* Joins paths together. Variadic to take an
|
|
|
|
* arbitrary number of arguments
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function _dir()
|
|
|
|
{
|
|
|
|
return implode(DIRECTORY_SEPARATOR, func_get_args());
|
|
|
|
}
|
|
|
|
|
2016-01-06 15:44:40 -05:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
// Autoloading
|
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
require _dir(__DIR__, 'AnimeClient_TestCase.php');
|
|
|
|
require _dir(__DIR__, '../vendor/autoload.php');
|
2015-09-14 10:54:50 -04:00
|
|
|
|
2015-10-09 14:34:55 -04:00
|
|
|
// -----------------------------------------------------------------------------
|
2015-10-19 12:50:46 -04:00
|
|
|
// Ini Settings
|
2015-10-09 14:34:55 -04:00
|
|
|
// -----------------------------------------------------------------------------
|
2015-10-19 12:50:46 -04:00
|
|
|
ini_set('session.use_cookies', 0);
|
|
|
|
ini_set("session.use_only_cookies",0);
|
|
|
|
ini_set("session.use_trans_sid",1);
|
|
|
|
// Start session here to supress error about headers not sent
|
2016-01-06 15:44:40 -05:00
|
|
|
session_start();
|
2015-10-09 14:34:55 -04:00
|
|
|
|
|
|
|
// -----------------------------------------------------------------------------
|
2015-10-19 12:50:46 -04:00
|
|
|
// Load base test case and mocks
|
2015-10-09 14:34:55 -04:00
|
|
|
// -----------------------------------------------------------------------------
|
|
|
|
|
2015-10-19 12:50:46 -04:00
|
|
|
// Pre-define some superglobals
|
|
|
|
$_SESSION = [];
|
|
|
|
$_COOKIE = [];
|
2015-10-09 14:34:55 -04:00
|
|
|
|
2015-10-19 12:50:46 -04:00
|
|
|
// Request base test case and mocks
|
|
|
|
require _dir(__DIR__, 'TestSessionHandler.php');
|
|
|
|
require _dir(__DIR__, 'mocks.php');
|
2015-10-09 14:34:55 -04:00
|
|
|
|
|
|
|
// End of bootstrap.php
|