Blame view

app/tests/codeception/_bootstrap.php 879 Bytes
bf807468   Alex Savenko   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <?php
  defined('YII_DEBUG') or define('YII_DEBUG', true);
  defined('YII_ENV') or define('YII_ENV', 'test');
  
  defined('YII_TEST_ENTRY_URL') or define('YII_TEST_ENTRY_URL', parse_url(\Codeception\Configuration::config()['config']['test_entry_url'], PHP_URL_PATH));
  defined('YII_TEST_ENTRY_FILE') or define('YII_TEST_ENTRY_FILE', dirname(dirname(__DIR__)) . '/web/index-test.php');
  
  require_once(__DIR__ . '/../../vendor/autoload.php');
  require_once(__DIR__ . '/../../vendor/yiisoft/yii2/Yii.php');
  
  $_SERVER['SCRIPT_FILENAME'] = YII_TEST_ENTRY_FILE;
  $_SERVER['SCRIPT_NAME'] = YII_TEST_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(__DIR__));