This repository was archived by the owner on Jul 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathTestCase.php
121 lines (110 loc) · 3.05 KB
/
TestCase.php
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php
namespace tests;
use yii\helpers\ArrayHelper;
use yii\web\View;
/**
* This is the base class for all tests.
*/
abstract class TestCase extends \PHPUnit_Framework_TestCase
{
public static $params;
/**
* Mock application prior running tests.
*/
protected function setUp()
{
$this->mockWebApplication(
[
'components' => [
'request' => [
'class' => 'yii\web\Request',
'url' => '/test',
'enableCsrfValidation' => false,
],
'response' => [
'class' => 'yii\web\Response',
],
],
]
);
}
/**
* Clean up after test.
* By default the application created with [[mockApplication]] will be destroyed.
*/
protected function tearDown()
{
parent::tearDown();
$this->destroyApplication();
}
protected function mockApplication($config = [], $appClass = '\yii\console\Application')
{
new $appClass(
ArrayHelper::merge(
[
'id' => 'testapp',
'basePath' => __DIR__,
'vendorPath' => $this->getVendorPath(),
],
$config
)
);
}
protected function mockWebApplication($config = [], $appClass = '\yii\web\Application')
{
new $appClass(ArrayHelper::merge([
'id' => 'testapp',
'basePath' => __DIR__,
'vendorPath' => $this->getVendorPath(),
'components' => [
'request' => [
'cookieValidationKey' => 'wefJDF8sfdsfSDefwqdxj9oq',
'scriptFile' => __DIR__ .'/index.php',
'scriptUrl' => '/index.php',
],
'assetManager' => [
'class' => 'tests\AssetManager',
'basePath' => '@tests/assets',
'baseUrl' => '/',
]
]
], $config));
}
protected function getVendorPath()
{
return dirname(dirname(__DIR__)) . '/vendor';
}
/**
* Destroys application in Yii::$app by setting it to null.
*/
protected function destroyApplication()
{
\Yii::$app = null;
}
/**
* Creates a view for testing purposes
*
* @return View
*/
protected function getView()
{
$view = new View();
$view->setAssetManager(new AssetManager([
'basePath' => '@tests/assets',
'baseUrl' => '/',
]));
return $view;
}
/**
* Asserting two strings equality ignoring line endings
*
* @param string $expected
* @param string $actual
*/
public function assertEqualsWithoutLE($expected, $actual)
{
$expected = str_replace("\r\n", "\n", $expected);
$actual = str_replace("\r\n", "\n", $actual);
$this->assertEquals($expected, $actual);
}
}