Definition at line 9 of file ServerPreconditionTest.php.
◆ testIfMatchCorrectEtag()
Sabre\DAV\ServerPreconditionsTest::testIfMatchCorrectEtag |
( |
| ) |
|
Definition at line 51 of file ServerPreconditionTest.php.
51 {
52
53 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
55 $httpRequest = new HTTP\Request('GET', '/foo', ['If-Match' => '"abc123"']);
56 $httpResponse = new HTTP\Response();
57 $this->assertTrue(
$server->checkPreconditions($httpRequest, $httpResponse));
58
59 }
References $root, and $server.
◆ testIfMatchEvolutionEtag()
Sabre\DAV\ServerPreconditionsTest::testIfMatchEvolutionEtag |
( |
| ) |
|
Evolution sometimes uses " instead of " for If-Match headers.
@depends testIfMatchCorrectEtag
Definition at line 66 of file ServerPreconditionTest.php.
66 {
67
68 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
70 $httpRequest = new HTTP\Request('GET', '/foo', ['If-Match' => '\\"abc123\\"']);
71 $httpResponse = new HTTP\Response();
72 $this->assertTrue(
$server->checkPreconditions($httpRequest, $httpResponse));
73
74 }
References $root, and $server.
◆ testIfMatchHasNode()
Sabre\DAV\ServerPreconditionsTest::testIfMatchHasNode |
( |
| ) |
|
Definition at line 26 of file ServerPreconditionTest.php.
26 {
27
28 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
30 $httpRequest = new HTTP\Request('GET', '/foo', ['If-Match' => '*']);
31 $httpResponse = new HTTP\Response();
32 $this->assertTrue(
$server->checkPreconditions($httpRequest, $httpResponse));
33
34 }
References $root, and $server.
◆ testIfMatchMultiple()
Sabre\DAV\ServerPreconditionsTest::testIfMatchMultiple |
( |
| ) |
|
Definition at line 78 of file ServerPreconditionTest.php.
78 {
79
80 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
82 $httpRequest = new HTTP\Request('GET', '/foo', ['If-Match' => '"hellothere", "abc123"']);
83 $httpResponse = new HTTP\Response();
84 $this->assertTrue(
$server->checkPreconditions($httpRequest, $httpResponse));
85
86 }
References $root, and $server.
◆ testIfMatchNoNode()
Sabre\DAV\ServerPreconditionsTest::testIfMatchNoNode |
( |
| ) |
|
@expectedException Sabre\DAV\Exception\PreconditionFailed
Definition at line 14 of file ServerPreconditionTest.php.
14 {
15
16 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
18 $httpRequest = new HTTP\Request('GET', '/bar', ['If-Match' => '*']);
19 $httpResponse = new HTTP\Response();
20 $server->checkPreconditions($httpRequest, $httpResponse);
21
22 }
References $root, and $server.
◆ testIfMatchWrongEtag()
Sabre\DAV\ServerPreconditionsTest::testIfMatchWrongEtag |
( |
| ) |
|
@expectedException Sabre\DAV\Exception\PreconditionFailed
Definition at line 39 of file ServerPreconditionTest.php.
39 {
40
41 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
43 $httpRequest = new HTTP\Request('GET', '/foo', ['If-Match' => '1234']);
44 $httpResponse = new HTTP\Response();
45 $server->checkPreconditions($httpRequest, $httpResponse);
46
47 }
References $root, and $server.
◆ testIfModifiedSinceInvalidDate()
Sabre\DAV\ServerPreconditionsTest::testIfModifiedSinceInvalidDate |
( |
| ) |
|
Definition at line 242 of file ServerPreconditionTest.php.
242 {
243
244 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
247 'HTTP_IF_MODIFIED_SINCE' => 'Your mother',
248 'REQUEST_URI' => '/foo'
249 ]);
250 $httpResponse = new HTTP\ResponseMock();
251
252
253 $this->assertTrue(
$server->checkPreconditions($httpRequest, $httpResponse));
254
255 }
static createFromServerArray(array $serverArray)
This static method will create a new Request object, based on a PHP $_SERVER array.
References $root, $server, and Sabre\HTTP\Sapi\createFromServerArray().
◆ testIfModifiedSinceInvalidDate2()
Sabre\DAV\ServerPreconditionsTest::testIfModifiedSinceInvalidDate2 |
( |
| ) |
|
◆ testIfModifiedSinceModified()
Sabre\DAV\ServerPreconditionsTest::testIfModifiedSinceModified |
( |
| ) |
|
◆ testIfModifiedSinceUnModified()
Sabre\DAV\ServerPreconditionsTest::testIfModifiedSinceUnModified |
( |
| ) |
|
Definition at line 205 of file ServerPreconditionTest.php.
205 {
206
207 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
210 'HTTP_IF_MODIFIED_SINCE' => 'Sun, 06 Nov 1994 08:49:37 GMT',
211 'REQUEST_URI' => '/foo'
212 ]);
213 $server->httpResponse =
new HTTP\ResponseMock();
214 $this->assertFalse(
$server->checkPreconditions($httpRequest,
$server->httpResponse));
215
216 $this->assertEquals(304,
$server->httpResponse->status);
217 $this->assertEquals([
218 'Last-Modified' => ['Sat, 06 Apr 1985 23:30:00 GMT'],
219 ],
$server->httpResponse->getHeaders());
220
221 }
References $root, $server, and Sabre\HTTP\Sapi\createFromServerArray().
◆ testIfNoneMatchCorrectEtag()
Sabre\DAV\ServerPreconditionsTest::testIfNoneMatchCorrectEtag |
( |
| ) |
|
@expectedException Sabre\DAV\Exception\PreconditionFailed
Definition at line 140 of file ServerPreconditionTest.php.
140 {
141
142 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
144 $httpRequest = new HTTP\Request('POST', '/foo', ['If-None-Match' => '"abc123"']);
145 $httpResponse = new HTTP\Response();
146 $server->checkPreconditions($httpRequest, $httpResponse);
147
148 }
References $root, and $server.
◆ testIfNoneMatchCorrectEtagAsGet()
Sabre\DAV\ServerPreconditionsTest::testIfNoneMatchCorrectEtagAsGet |
( |
| ) |
|
Definition at line 165 of file ServerPreconditionTest.php.
165 {
166
167 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
169 $httpRequest = new HTTP\Request('GET', '/foo', ['If-None-Match' => '"abc123"']);
170 $server->httpResponse =
new HTTP\ResponseMock();
171
172 $this->assertFalse(
$server->checkPreconditions($httpRequest,
$server->httpResponse));
173 $this->assertEquals(304,
$server->httpResponse->getStatus());
174 $this->assertEquals([
'ETag' => [
'"abc123"']],
$server->httpResponse->getHeaders());
175
176 }
References $root, and $server.
◆ testIfNoneMatchCorrectEtagMultiple()
Sabre\DAV\ServerPreconditionsTest::testIfNoneMatchCorrectEtagMultiple |
( |
| ) |
|
@expectedException Sabre\DAV\Exception\PreconditionFailed
Definition at line 153 of file ServerPreconditionTest.php.
153 {
154
155 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
157 $httpRequest = new HTTP\Request('POST', '/foo', ['If-None-Match' => '"1234, "abc123"']);
158 $httpResponse = new HTTP\Response();
159 $server->checkPreconditions($httpRequest, $httpResponse);
160
161 }
References $root, and $server.
◆ testIfNoneMatchHasNode()
Sabre\DAV\ServerPreconditionsTest::testIfNoneMatchHasNode |
( |
| ) |
|
@expectedException Sabre\DAV\Exception\PreconditionFailed
Definition at line 103 of file ServerPreconditionTest.php.
103 {
104
105 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
107 $httpRequest = new HTTP\Request('POST', '/foo', ['If-None-Match' => '*']);
108 $httpResponse = new HTTP\Response();
109 $server->checkPreconditions($httpRequest, $httpResponse);
110
111 }
References $root, and $server.
◆ testIfNoneMatchNoNode()
Sabre\DAV\ServerPreconditionsTest::testIfNoneMatchNoNode |
( |
| ) |
|
Definition at line 90 of file ServerPreconditionTest.php.
90 {
91
92 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
94 $httpRequest = new HTTP\Request('GET', '/bar', ['If-None-Match' => '*']);
95 $httpResponse = new HTTP\Response();
96 $this->assertTrue(
$server->checkPreconditions($httpRequest, $httpResponse));
97
98 }
References $root, and $server.
◆ testIfNoneMatchWrongEtag()
Sabre\DAV\ServerPreconditionsTest::testIfNoneMatchWrongEtag |
( |
| ) |
|
Definition at line 115 of file ServerPreconditionTest.php.
115 {
116
117 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
119 $httpRequest = new HTTP\Request('POST', '/foo', ['If-None-Match' => '"1234"']);
120 $httpResponse = new HTTP\Response();
121 $this->assertTrue(
$server->checkPreconditions($httpRequest, $httpResponse));
122
123 }
References $root, and $server.
◆ testIfNoneMatchWrongEtagMultiple()
Sabre\DAV\ServerPreconditionsTest::testIfNoneMatchWrongEtagMultiple |
( |
| ) |
|
Definition at line 127 of file ServerPreconditionTest.php.
127 {
128
129 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
131 $httpRequest = new HTTP\Request('POST', '/foo', ['If-None-Match' => '"1234", "5678"']);
132 $httpResponse = new HTTP\Response();
133 $this->assertTrue(
$server->checkPreconditions($httpRequest, $httpResponse));
134
135 }
References $root, and $server.
◆ testIfUnmodifiedSinceInvalidDate()
Sabre\DAV\ServerPreconditionsTest::testIfUnmodifiedSinceInvalidDate |
( |
| ) |
|
◆ testIfUnmodifiedSinceModified()
Sabre\DAV\ServerPreconditionsTest::testIfUnmodifiedSinceModified |
( |
| ) |
|
@expectedException Sabre\DAV\Exception\PreconditionFailed
Definition at line 292 of file ServerPreconditionTest.php.
292 {
293
294 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
297 'HTTP_IF_UNMODIFIED_SINCE' => 'Tue, 06 Nov 1984 08:49:37 GMT',
298 'REQUEST_URI' => '/foo'
299 ]);
300 $httpResponse = new HTTP\ResponseMock();
301 $server->checkPreconditions($httpRequest, $httpResponse);
302
303 }
References $root, $server, and Sabre\HTTP\Sapi\createFromServerArray().
◆ testIfUnmodifiedSinceUnModified()
Sabre\DAV\ServerPreconditionsTest::testIfUnmodifiedSinceUnModified |
( |
| ) |
|
◆ testNoneMatchCorrectEtagEnsureSapiSent()
Sabre\DAV\ServerPreconditionsTest::testNoneMatchCorrectEtagEnsureSapiSent |
( |
| ) |
|
This was a test written for issue #515.
Definition at line 181 of file ServerPreconditionTest.php.
181 {
182
183 $root =
new SimpleCollection(
'root', [
new ServerPreconditionsNode()]);
185 $server->sapi =
new HTTP\SapiMock();
187 $httpRequest = new HTTP\Request('GET', '/foo', ['If-None-Match' => '"abc123"']);
188 $server->httpRequest = $httpRequest;
189 $server->httpResponse =
new HTTP\ResponseMock();
190
192
193 $this->assertFalse(
$server->checkPreconditions($httpRequest,
$server->httpResponse));
194 $this->assertEquals(304,
$server->httpResponse->getStatus());
195 $this->assertEquals([
196 'ETag' => ['"abc123"'],
198 ],
$server->httpResponse->getHeaders());
200
201 }
const VERSION
Full version number.
References $root, Sabre\HTTP\SapiMock\$sent, $server, and Sabre\DAV\Version\VERSION.
The documentation for this class was generated from the following file: