forked from codeigniter4/CodeIgniter4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_bootstrap.php
More file actions
102 lines (80 loc) · 3.36 KB
/
Copy path_bootstrap.php
File metadata and controls
102 lines (80 loc) · 3.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
// Get our system paths
require 'application/Config/Paths.php';
$paths = new \Config\Paths();
// Path to the front controller (this file)
define('FCPATH', getcwd().'/public'.DIRECTORY_SEPARATOR);
// Make sure it recognizes that we're testing.
$_SERVER['CI_ENV'] = 'testing';
/*
* ---------------------------------------------------------------
* SETUP OUR PATH CONSTANTS
* ---------------------------------------------------------------
*
* The path constants provide convenient access to the folders
* throughout the application. We have to setup them up here
* so they are available in the config files that are loaded.
*/
// Path to code root folder (just up from public)
$pos = strrpos(FCPATH, 'public'.DIRECTORY_SEPARATOR);
define('ROOTPATH', substr_replace(FCPATH, '', $pos, strlen('public'.DIRECTORY_SEPARATOR)));
// The path to the "application" folder
define('APPPATH', realpath(FCPATH.$paths->applicationDirectory).DIRECTORY_SEPARATOR);
// Path to the system folder
define('BASEPATH', realpath(FCPATH.$paths->systemDirectory).DIRECTORY_SEPARATOR);
// Path to the writable directory.
define('WRITEPATH', realpath(FCPATH.$paths->writableDirectory).DIRECTORY_SEPARATOR);
// The path to the "tests" directory
define('TESTPATH', realpath(FCPATH.$paths->testsDirectory).DIRECTORY_SEPARATOR);
define('SUPPORTPATH', realpath(TESTPATH.'_support/').'/');
// Use special Services for testing. These allow
// insert mocks in place of normal services.
require SUPPORTPATH.'Services.php';
/*
* ---------------------------------------------------------------
* GRAB OUR CONSTANTS & COMMON
* ---------------------------------------------------------------
*/
require APPPATH.'Config/Constants.php';
// Use special global functions for testing.
require_once SUPPORTPATH.'MockCommon.php';
require BASEPATH.'Common.php';
/*
* ---------------------------------------------------------------
* LOAD OUR AUTOLOADER
* ---------------------------------------------------------------
*
* The autoloader allows all of the pieces to work together
* in the framework. We have to load it here, though, so
* that the config files can use the path constants.
*/
require BASEPATH.'Autoloader/Autoloader.php';
require APPPATH .'Config/Autoload.php';
require APPPATH .'Config/Services.php';
$loader = CodeIgniter\Services::autoloader();
$loader->initialize(new Config\Autoload());
$loader->register(); // Register the loader with the SPL autoloader stack.
// Add namespace paths to autoload mocks for testing.
$loader->addNamespace('CodeIgniter', SUPPORTPATH);
$loader->addNamespace('Config', SUPPORTPATH.'Config');
$loader->addNamespace('Tests\Support', SUPPORTPATH);
// Now load Composer's if it's available
if (file_exists(COMPOSER_PATH))
{
require COMPOSER_PATH;
}
/*
* ---------------------------------------------------------------
* GRAB OUR CODEIGNITER INSTANCE
* ---------------------------------------------------------------
*
* The CodeIgniter class contains the core functionality to make
* the application run, and does all of the dirty work to get
* the pieces all working together.
*/
$app = new \CodeIgniter\CodeIgniter(new \Config\App());
$app->initialize();
//--------------------------------------------------------------------
// Load our TestCase
//--------------------------------------------------------------------
require TESTPATH.'_support/CIUnitTestCase.php';