This repository was archived by the owner on Jan 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathUrlTest.php
277 lines (244 loc) · 9.03 KB
/
UrlTest.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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace ZendTest\View\Helper;
use PHPUnit\Framework\TestCase;
use Zend\Mvc\MvcEvent;
use Zend\Mvc\ModuleRouteListener;
use Zend\Mvc\Router\Http\Literal as LiteralRoute;
use Zend\Mvc\Router\Http\Segment as SegmentRoute;
use Zend\Mvc\Router\Http\TreeRouteStack;
use Zend\Mvc\Router\Http\Wildcard as WildcardRoute;
use Zend\Mvc\Router\RouteMatch;
use Zend\Mvc\Router\SimpleRouteStack as Router;
use Zend\Router\Http\Literal as NextGenLiteralRoute;
use Zend\Router\Http\Segment as NextGenSegmentRoute;
use Zend\Router\Http\TreeRouteStack as NextGenTreeRouteStack;
use Zend\Router\Http\Wildcard as NextGenWildcardRoute;
use Zend\Router\RouteMatch as NextGenRouteMatch;
use Zend\Router\SimpleRouteStack as NextGenRouter;
use Zend\View\Exception;
use Zend\View\Helper\Url as UrlHelper;
/**
* Zend\View\Helper\Url Test
*
* Tests formText helper, including some common functionality of all form helpers
*
* @group Zend_View
* @group Zend_View_Helper
*/
class UrlTest extends TestCase
{
/**
* @var Router
*/
private $router;
/**
* @var UrlHelper
*/
private $url;
/**
* Sets up the fixture, for example, open a network connection.
* This method is called before a test is executed.
*/
protected function setUp()
{
$this->routeMatchType = class_exists(RouteMatch::class)
? RouteMatch::class
: NextGenRouteMatch::class;
$this->literalRouteType = class_exists(LiteralRoute::class)
? LiteralRoute::class
: NextGenLiteralRoute::class;
$this->segmentRouteType = class_exists(SegmentRoute::class)
? SegmentRoute::class
: NextGenSegmentRoute::class;
$this->treeRouteStackType = class_exists(TreeRouteStack::class)
? TreeRouteStack::class
: NextGenTreeRouteStack::class;
$this->wildcardRouteType = class_exists(WildcardRoute::class)
? WildcardRoute::class
: NextGenWildcardRoute::class;
$this->routerClass = class_exists(Router::class)
? Router::class
: NextGenRouter::class;
$router = new $this->routerClass();
$router->addRoute('home', [
'type' => $this->literalRouteType,
'options' => [
'route' => '/',
]
]);
$router->addRoute('default', [
'type' => $this->segmentRouteType,
'options' => [
'route' => '/:controller[/:action]',
]
]);
$this->router = $router;
$this->url = new UrlHelper;
$this->url->setRouter($router);
}
public function testHelperHasHardDependencyWithRouter()
{
$this->expectException(Exception\RuntimeException::class);
$this->expectExceptionMessage('No RouteStackInterface instance provided');
$url = new UrlHelper;
$url('home');
}
public function testHomeRoute()
{
$url = $this->url->__invoke('home');
$this->assertEquals('/', $url);
}
public function testModuleRoute()
{
$url = $this->url->__invoke('default', ['controller' => 'ctrl', 'action' => 'act']);
$this->assertEquals('/ctrl/act', $url);
}
public function testModel()
{
$it = new \ArrayIterator(['controller' => 'ctrl', 'action' => 'act']);
$url = $this->url->__invoke('default', $it);
$this->assertEquals('/ctrl/act', $url);
}
/**
* @expectedException \Zend\View\Exception\InvalidArgumentException
*/
public function testThrowsExceptionOnInvalidParams()
{
$this->url->__invoke('default', 'invalid params');
}
public function testPluginWithoutRouteMatchesInEventRaisesExceptionWhenNoRouteProvided()
{
$this->expectException(Exception\RuntimeException::class);
$this->expectExceptionMessage('RouteMatch');
$this->url->__invoke();
}
public function testPluginWithRouteMatchesReturningNoMatchedRouteNameRaisesExceptionWhenNoRouteProvided()
{
$this->url->setRouteMatch(new $this->routeMatchType([]));
$this->expectException(Exception\RuntimeException::class);
$this->expectExceptionMessage('matched');
$this->url->__invoke();
}
public function testPassingNoArgumentsWithValidRouteMatchGeneratesUrl()
{
$routeMatch = new $this->routeMatchType([]);
$routeMatch->setMatchedRouteName('home');
$this->url->setRouteMatch($routeMatch);
$url = $this->url->__invoke();
$this->assertEquals('/', $url);
}
public function testCanReuseMatchedParameters()
{
$this->router->addRoute('replace', [
'type' => $this->segmentRouteType,
'options' => [
'route' => '/:controller/:action',
'defaults' => [
'controller' => 'ZendTest\Mvc\Controller\TestAsset\SampleController',
],
],
]);
$routeMatch = new $this->routeMatchType([
'controller' => 'foo',
]);
$routeMatch->setMatchedRouteName('replace');
$this->url->setRouteMatch($routeMatch);
$url = $this->url->__invoke('replace', ['action' => 'bar'], [], true);
$this->assertEquals('/foo/bar', $url);
}
public function testCanPassBooleanValueForThirdArgumentToAllowReusingRouteMatches()
{
$this->router->addRoute('replace', [
'type' => $this->segmentRouteType,
'options' => [
'route' => '/:controller/:action',
'defaults' => [
'controller' => 'ZendTest\Mvc\Controller\TestAsset\SampleController',
],
],
]);
$routeMatch = new $this->routeMatchType([
'controller' => 'foo',
]);
$routeMatch->setMatchedRouteName('replace');
$this->url->setRouteMatch($routeMatch);
$url = $this->url->__invoke('replace', ['action' => 'bar'], true);
$this->assertEquals('/foo/bar', $url);
}
public function testRemovesModuleRouteListenerParamsWhenReusingMatchedParameters()
{
$router = new $this->treeRouteStackType;
$router->addRoute('default', [
'type' => $this->segmentRouteType,
'options' => [
'route' => '/:controller/:action',
'defaults' => [
ModuleRouteListener::MODULE_NAMESPACE => 'ZendTest\Mvc\Controller\TestAsset',
'controller' => 'SampleController',
'action' => 'Dash'
]
],
'child_routes' => [
'wildcard' => [
'type' => $this->wildcardRouteType,
'options' => [
'param_delimiter' => '=',
'key_value_delimiter' => '%'
]
]
]
]);
$routeMatch = new $this->routeMatchType([
ModuleRouteListener::MODULE_NAMESPACE => 'ZendTest\Mvc\Controller\TestAsset',
'controller' => 'Rainbow'
]);
$routeMatch->setMatchedRouteName('default/wildcard');
$event = new MvcEvent();
$event->setRouter($router)
->setRouteMatch($routeMatch);
$moduleRouteListener = new ModuleRouteListener();
$moduleRouteListener->onRoute($event);
$helper = new UrlHelper();
$helper->setRouter($router);
$helper->setRouteMatch($routeMatch);
$url = $helper->__invoke('default/wildcard', ['Twenty' => 'Cooler'], true);
$this->assertEquals('/Rainbow/Dash=Twenty%Cooler', $url);
}
public function testAcceptsNextGenRouterToSetRouter()
{
$router = new $this->routerClass();
$url = new UrlHelper();
$url->setRouter($router);
$this->assertAttributeSame($router, 'router', $url);
}
public function testAcceptsNextGenRouteMatche()
{
$routeMatch = new $this->routeMatchType([]);
$url = new UrlHelper();
$url->setRouteMatch($routeMatch);
$this->assertAttributeSame($routeMatch, 'routeMatch', $url);
}
public function testMissingParameter()
{
$this->expectException(Exception\InvalidArgumentException::class);
$this->expectExceptionMessage(
'Couldnt create URL for route "default", params "[]" and options "{"name":"default"}"'
);
$this->url->__invoke('default');
}
public function testUnknownSubroute()
{
$this->expectException(Exception\RuntimeException::class);
$this->expectExceptionMessage(
'Couldnt create URL for route "does-not-exist", params "[]" and options "{"name":"does-not-exist"}"'
);
$this->url->__invoke('does-not-exist');
}
}