2016-01-02 19:13:18 +05:30
|
|
|
<?php
|
|
|
|
defined('YII_DEBUG') or define('YII_DEBUG', true);
|
|
|
|
defined('YII_ENV') or define('YII_ENV', 'test');
|
|
|
|
|
|
|
|
defined('YII_APP_BASE_PATH') or define('YII_APP_BASE_PATH', dirname(dirname(dirname(__DIR__))));
|
|
|
|
|
|
|
|
defined('API_ENTRY_URL') or define('API_ENTRY_URL', parse_url(\Codeception\Configuration::config()['config']['test_entry_url'], PHP_URL_PATH));
|
|
|
|
defined('API_ENTRY_FILE') or define('API_ENTRY_FILE', YII_APP_BASE_PATH . '/api/web/index-test.php');
|
|
|
|
|
|
|
|
require_once(YII_APP_BASE_PATH . '/vendor/autoload.php');
|
|
|
|
require_once(YII_APP_BASE_PATH . '/vendor/yiisoft/yii2/Yii.php');
|
|
|
|
require_once(YII_APP_BASE_PATH . '/common/config/bootstrap.php');
|
|
|
|
require_once(YII_APP_BASE_PATH . '/api/config/bootstrap.php');
|
|
|
|
|
|
|
|
// set correct script paths
|
|
|
|
|
2016-01-15 14:51:27 +05:30
|
|
|
// the entry script file path for functional tests
|
2016-01-02 19:13:18 +05:30
|
|
|
$_SERVER['SCRIPT_FILENAME'] = API_ENTRY_FILE;
|
|
|
|
$_SERVER['SCRIPT_NAME'] = API_ENTRY_URL;
|
|
|
|
$_SERVER['SERVER_NAME'] = parse_url(\Codeception\Configuration::config()['config']['test_entry_url'], PHP_URL_HOST);
|
|
|
|
$_SERVER['SERVER_PORT'] = parse_url(\Codeception\Configuration::config()['config']['test_entry_url'], PHP_URL_PORT) ?: '80';
|
|
|
|
|
|
|
|
Yii::setAlias('@tests', dirname(dirname(__DIR__)));
|