forked from yiisoft/yii2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModuleTest.php
221 lines (182 loc) · 7.83 KB
/
ModuleTest.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\framework\base;
use Yii;
use yii\base\BaseObject;
use yii\base\Controller;
use yii\base\Module;
use yiiunit\TestCase;
/**
* @group base
*/
class ModuleTest extends TestCase
{
protected function setUp()
{
parent::setUp();
$this->mockApplication();
}
public function testControllerPath()
{
$module = new TestModule('test');
$this->assertEquals('yiiunit\framework\base\controllers', $module->controllerNamespace);
$this->assertEquals(__DIR__ . DIRECTORY_SEPARATOR . 'controllers', str_replace(['/', '\\'], DIRECTORY_SEPARATOR, $module->controllerPath));
}
public function testSetupVersion()
{
$module = new TestModule('test');
$version = '1.0.1';
$module->setVersion($version);
$this->assertEquals($version, $module->getVersion());
$module->setVersion(function ($module) {
/* @var $module TestModule */
return 'version.' . $module->getUniqueId();
});
$this->assertEquals('version.test', $module->getVersion());
}
/**
* @depends testSetupVersion
*/
public function testDefaultVersion()
{
$module = new TestModule('test');
$version = $module->getVersion();
$this->assertEquals('1.0', $version);
}
public static $actionRuns = [];
public function testRunControllerAction()
{
$module = new TestModule('test');
$this->assertNull(Yii::$app->controller);
static::$actionRuns = [];
$module->runAction('test-controller1/test1');
$this->assertEquals([
'test/test-controller1/test1',
], static::$actionRuns);
$this->assertNotNull(Yii::$app->controller);
$this->assertEquals('test-controller1', Yii::$app->controller->id);
$this->assertEquals('test/test-controller1', Yii::$app->controller->uniqueId);
$this->assertNotNull(Yii::$app->controller->action);
$this->assertEquals('test/test-controller1/test1', Yii::$app->controller->action->uniqueId);
$module->runAction('test-controller2/test2');
$this->assertEquals([
'test/test-controller1/test1',
'test/test-controller2/test2',
], static::$actionRuns);
$this->assertNotNull(Yii::$app->controller);
$this->assertEquals('test-controller1', Yii::$app->controller->id);
$this->assertEquals('test/test-controller1', Yii::$app->controller->uniqueId);
$this->assertNotNull(Yii::$app->controller->action);
$this->assertEquals('test/test-controller1/test1', Yii::$app->controller->action->uniqueId);
}
public function testServiceLocatorTraversal()
{
$parent = new Module('parent');
$child = new Module('child', $parent);
$grandchild = new Module('grandchild', $child);
$parentObject = new BaseObject();
$childObject = new BaseObject();
$parent->set('test', $parentObject);
$this->assertTrue($grandchild->has('test'));
$this->assertTrue($child->has('test'));
$this->assertTrue($parent->has('test'));
$this->assertSame($parentObject, $grandchild->get('test'));
$this->assertSame($parentObject, $child->get('test'));
$this->assertSame($parentObject, $parent->get('test'));
$child->set('test', $childObject);
$this->assertSame($childObject, $grandchild->get('test'));
$this->assertSame($childObject, $child->get('test'));
$this->assertSame($parentObject, $parent->get('test'));
$this->assertTrue($grandchild->has('test'));
$this->assertTrue($child->has('test'));
$this->assertTrue($parent->has('test'));
$parent->clear('test');
$this->assertSame($childObject, $grandchild->get('test'));
$this->assertSame($childObject, $child->get('test'));
$this->assertTrue($grandchild->has('test'));
$this->assertTrue($child->has('test'));
$this->assertFalse($parent->has('test'));
}
public function testCreateControllerByID()
{
$module = new TestModule('test');
$module->controllerNamespace = 'yiiunit\framework\base';
$route = 'module-test';
$this->assertInstanceOf(ModuleTestController::className(), $module->createControllerByID($route));
$route = 'module-test-';
$this->assertNotInstanceOf(ModuleTestController::className(), $module->createControllerByID($route));
$route = '-module-test';
$this->assertNotInstanceOf(ModuleTestController::className(), $module->createControllerByID($route));
$route = 'very-complex-name-test';
$this->assertInstanceOf(VeryComplexNameTestController::className(), $module->createControllerByID($route));
$route = 'very-complex-name-test--';
$this->assertNotInstanceOf(VeryComplexNameTestController::className(), $module->createControllerByID($route));
$route = '--very-complex-name-test';
$this->assertNotInstanceOf(VeryComplexNameTestController::className(), $module->createControllerByID($route));
$route = 'very---complex---name---test';
$this->assertNotInstanceOf(VeryComplexNameTestController::className(), $module->createControllerByID($route));
}
public function testCreateController()
{
// app module has a submodule "base" which has two controllers: "default" and "other"
$module = new Module('app');
$module->setModule('base', new Module('base'));
$defaultController = ['class' => 'yii\web\Controller'];
$otherController = ['class' => 'yii\web\Controller'];
$module->getModule('base')->controllerMap = [
'default' => $defaultController,
'other' => $otherController,
];
list($controller, $action) = $module->createController('base');
$this->assertSame('', $action);
$this->assertSame('base/default', $controller->uniqueId);
list($controller, $action) = $module->createController('base/default');
$this->assertSame('', $action);
$this->assertSame('base/default', $controller->uniqueId);
list($controller, $action) = $module->createController('base/other');
$this->assertSame('', $action);
$this->assertSame('base/other', $controller->uniqueId);
list($controller, $action) = $module->createController('base/default/index');
$this->assertSame('index', $action);
$this->assertSame('base/default', $controller->uniqueId);
list($controller, $action) = $module->createController('base/other/index');
$this->assertSame('index', $action);
$this->assertSame('base/other', $controller->uniqueId);
list($controller, $action) = $module->createController('base/other/someaction');
$this->assertSame('someaction', $action);
$this->assertSame('base/other', $controller->uniqueId);
$controller = $module->createController('bases/default/index');
$this->assertFalse($controller);
$controller = $module->createController('nocontroller');
$this->assertFalse($controller);
}
}
class TestModule extends \yii\base\Module
{
public $controllerMap = [
'test-controller1' => 'yiiunit\framework\base\ModuleTestController',
'test-controller2' => 'yiiunit\framework\base\ModuleTestController',
];
}
class ModuleTestController extends Controller
{
public function actionTest1()
{
ModuleTest::$actionRuns[] = $this->action->uniqueId;
}
public function actionTest2()
{
ModuleTest::$actionRuns[] = $this->action->uniqueId;
}
}
class VeryComplexNameTestController extends Controller
{
public function actionIndex()
{
ModuleTest::$actionRuns[] = $this->action->uniqueId;
}
}