mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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
 | |
| 
 | |
| // the entry script file path for functional tests
 | |
| $_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__)));
 | |
| 
 | |
| // disable deep cloning of properties inside specify block
 | |
| \Codeception\Specify\Config::setDeepClone(false);
 |