forked from zendframework/zend-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServerUrlTest.php
230 lines (194 loc) · 6.69 KB
/
ServerUrlTest.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
<?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 Zend\View\Helper;
/**
* Tests Zend_View_Helper_ServerUrl
*
* @group Zend_View
* @group Zend_View_Helper
*/
class ServerUrlTest extends \PHPUnit_Framework_TestCase
{
/**
* Back up of $_SERVER
*
* @var array
*/
protected $serverBackup;
/**
* Prepares the environment before running a test.
*/
public function setUp()
{
$this->serverBackup = $_SERVER;
unset($_SERVER['HTTPS']);
unset($_SERVER['SERVER_PORT']);
}
/**
* Cleans up the environment after running a test.
*/
protected function tearDown()
{
$_SERVER = $this->serverBackup;
}
public function testConstructorWithOnlyHost()
{
$_SERVER['HTTP_HOST'] = 'example.com';
$url = new Helper\ServerUrl();
$this->assertEquals('http://example.com', $url->__invoke());
}
public function testConstructorWithOnlyHostIncludingPort()
{
$_SERVER['HTTP_HOST'] = 'example.com:8000';
$url = new Helper\ServerUrl();
$this->assertEquals('http://example.com:8000', $url->__invoke());
}
public function testConstructorWithHostAndHttpsOn()
{
$_SERVER['HTTP_HOST'] = 'example.com';
$_SERVER['HTTPS'] = 'on';
$url = new Helper\ServerUrl();
$this->assertEquals('https://example.com', $url->__invoke());
}
public function testConstructorWithHostAndHttpsTrue()
{
$_SERVER['HTTP_HOST'] = 'example.com';
$_SERVER['HTTPS'] = true;
$url = new Helper\ServerUrl();
$this->assertEquals('https://example.com', $url->__invoke());
}
public function testConstructorWithHostIncludingPortAndHttpsTrue()
{
$_SERVER['HTTP_HOST'] = 'example.com:8181';
$_SERVER['HTTPS'] = true;
$url = new Helper\ServerUrl();
$this->assertEquals('https://example.com:8181', $url->__invoke());
}
public function testConstructorWithHostReversedProxyHttpsTrue()
{
$_SERVER['HTTP_HOST'] = 'example.com';
$_SERVER['HTTP_X_FORWARDED_PROTO'] = 'https';
$_SERVER['SERVER_PORT'] = 80;
$url = new Helper\ServerUrl();
$this->assertEquals('https://example.com', $url->__invoke());
}
public function testConstructorWithHttpHostIncludingPortAndPortSet()
{
$_SERVER['HTTP_HOST'] = 'example.com:8181';
$_SERVER['SERVER_PORT'] = 8181;
$url = new Helper\ServerUrl();
$this->assertEquals('http://example.com:8181', $url->__invoke());
}
public function testConstructorWithHttpHostAndServerNameAndPortSet()
{
$_SERVER['HTTP_HOST'] = 'example.com';
$_SERVER['SERVER_NAME'] = 'example.org';
$_SERVER['SERVER_PORT'] = 8080;
$url = new Helper\ServerUrl();
$this->assertEquals('http://example.com:8080', $url->__invoke());
}
public function testConstructorWithNoHttpHostButServerNameAndPortSet()
{
unset($_SERVER['HTTP_HOST']);
$_SERVER['SERVER_NAME'] = 'example.org';
$_SERVER['SERVER_PORT'] = 8080;
$url = new Helper\ServerUrl();
$this->assertEquals('http://example.org:8080', $url->__invoke());
}
public function testServerUrlWithTrueParam()
{
$_SERVER['HTTPS'] = 'off';
$_SERVER['HTTP_HOST'] = 'example.com';
$_SERVER['REQUEST_URI'] = '/foo.html';
$url = new Helper\ServerUrl();
$this->assertEquals('http://example.com/foo.html', $url->__invoke(true));
}
public function testServerUrlWithInteger()
{
$_SERVER['HTTPS'] = 'off';
$_SERVER['HTTP_HOST'] = 'example.com';
$_SERVER['REQUEST_URI'] = '/foo.html';
$url = new Helper\ServerUrl();
$this->assertEquals('http://example.com', $url->__invoke(1337));
}
public function testServerUrlWithObject()
{
$_SERVER['HTTPS'] = 'off';
$_SERVER['HTTP_HOST'] = 'example.com';
$_SERVER['REQUEST_URI'] = '/foo.html';
$url = new Helper\ServerUrl();
$this->assertEquals('http://example.com', $url->__invoke(new \stdClass()));
}
/**
* @group ZF-9919
*/
public function testServerUrlWithScheme()
{
$_SERVER['HTTP_SCHEME'] = 'https';
$_SERVER['HTTP_HOST'] = 'example.com';
$url = new Helper\ServerUrl();
$this->assertEquals('https://example.com', $url->__invoke());
}
/**
* @group ZF-9919
*/
public function testServerUrlWithPort()
{
$_SERVER['SERVER_PORT'] = 443;
$_SERVER['HTTP_HOST'] = 'example.com';
$url = new Helper\ServerUrl();
$this->assertEquals('https://example.com', $url->__invoke());
}
/**
* @group ZF2-508
*/
public function testServerUrlWithProxy()
{
$_SERVER['HTTP_HOST'] = 'proxyserver.com';
$_SERVER['HTTP_X_FORWARDED_HOST'] = 'www.firsthost.org';
$url = new Helper\ServerUrl();
$url->setUseProxy(true);
$this->assertEquals('http://www.firsthost.org', $url->__invoke());
}
/**
* @group ZF2-508
*/
public function testServerUrlWithMultipleProxies()
{
$_SERVER['HTTP_HOST'] = 'proxyserver.com';
$_SERVER['HTTP_X_FORWARDED_HOST'] = 'www.firsthost.org, www.secondhost.org';
$url = new Helper\ServerUrl();
$url->setUseProxy(true);
$this->assertEquals('http://www.secondhost.org', $url->__invoke());
}
public function testDoesNotUseProxyByDefault()
{
$_SERVER['HTTP_HOST'] = 'proxyserver.com';
$_SERVER['HTTP_X_FORWARDED_HOST'] = 'www.firsthost.org, www.secondhost.org';
$url = new Helper\ServerUrl();
$this->assertEquals('http://proxyserver.com', $url->__invoke());
}
public function testCanUseXForwardedPortIfProvided()
{
$_SERVER['HTTP_HOST'] = 'proxyserver.com';
$_SERVER['HTTP_X_FORWARDED_HOST'] = 'www.firsthost.org, www.secondhost.org';
$_SERVER['HTTP_X_FORWARDED_PORT'] = '8888';
$url = new Helper\ServerUrl();
$url->setUseProxy(true);
$this->assertEquals('http://www.secondhost.org:8888', $url->__invoke());
}
public function testUsesHostHeaderWhenPortForwardingDetected()
{
$_SERVER['HTTP_HOST'] = 'localhost:10088';
$_SERVER['SERVER_PORT'] = 10081;
$url = new Helper\ServerUrl();
$this->assertEquals('http://localhost:10088', $url->__invoke());
}
}