Home
last modified time | relevance | path

Searched refs:status (Results 526 – 550 of 1484) sorted by path

1...<<21222324252627282930>>...60

/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/
H A DServerPropsInfiniteDepthTest.php54 …$this->assertEquals(207, $this->response->status, 'Incorrect status received. Full response body: …
H A DServerPropsTest.php47 $this->assertEquals(207, $this->response->status);
73 $this->assertEquals(207, $this->response->status);
H A DServerRangeTest.php40 $this->assertEquals(206, $this->response->status);
72 $this->assertEquals(206, $this->response->status);
104 $this->assertEquals(206, $this->response->status);
124 $this->assertEquals(416, $this->response->status);
143 $this->assertEquals(416, $this->response->status);
177 $this->assertEquals(206, $this->response->status);
211 $this->assertEquals(200, $this->response->status);
246 $this->assertEquals(206, $this->response->status);
280 $this->assertEquals(200, $this->response->status);
H A DServerSimpleTest.php58 $this->assertEquals(200, $this->response->status);
79 $this->assertEquals(200, $this->response->status);
100 $this->assertEquals(501, $this->response->status);
129 $this->assertEquals(200, $this->response->status);
379 $this->assertEquals(500, $this->response->status);
408 …$this->assertEquals(415, $this->response->status, 'We got an incorrect status back. Full response …
432 …$this->assertEquals(418, $this->response->status,'We got an incorrect status back. Full response b…
H A DTemporaryFileFilterTest.php25 $this->assertEquals(201, $this->response->status);
41 $this->assertEquals(201, $this->response->status);
59 $this->assertEquals(201, $this->response->status);
69 $this->assertEquals(412, $this->response->status);
85 $this->assertEquals(201, $this->response->status);
95 $this->assertEquals(200, $this->response->status);
127 $this->assertEquals(201, $this->response->status);
145 $this->assertEquals(201, $this->response->status);
154 …$this->assertEquals(204, $this->response->status, "Incorrect status code received. Full body:\n". …
171 $this->assertEquals(201, $this->response->status);
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Sync/
H A DPluginTest.php98 $this->assertEquals(207, $response->status, 'Full response body:' . $response->body);
221 $this->assertEquals(207, $response->status, 'Full response body:' . $response->body);
330 $this->assertEquals(415, $response->status, 'Full response body:' . $response->body);
359 $this->assertEquals(415, $response->status, 'Full response body:' . $response->body);
389 $this->assertEquals(403, $response->status, 'Full response body:' . $response->body);
418 $this->assertEquals(403, $response->status, 'Full response body:' . $response->body);
446 $this->assertEquals(400, $response->status, 'Full response body:' . $response->body);
473 $this->assertEquals(400, $response->status, 'Full response body:' . $response->body);
490 $this->assertEquals(403, $response->status);
507 $this->assertEquals(403, $response->status);
[all …]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAV/Xml/Property/
H A DSupportedMethodSetTest.php36 …$this->assertEquals(207, $this->response->status, 'We expected a multi-status response. Full respo…
H A DSupportedReportSetTest.php42 …$this->assertEquals(207, $this->response->status, 'We expected a multi-status response. Full respo…
83 …$this->assertEquals(207, $this->response->status, 'We expected a multi-status response. Full respo…
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/
H A DExpandPropertiesTest.php70 …$this->assertEquals(207, $server->httpResponse->status,'Incorrect status code received. Full body:…
H A DPluginAdminTest.php43 $this->assertEquals(403, $response->status);
82 $this->assertEquals(200, $response->status);
H A DPrincipalPropertySearchTest.php144 $this->assertEquals(207, $server->httpResponse->status, $server->httpResponse->body);
217 $this->assertEquals(207, $server->httpResponse->status, $server->httpResponse->body);
289 $this->assertEquals(207, $server->httpResponse->status, $server->httpResponse->body);
354 $this->assertEquals(207, $server->httpResponse->status, $server->httpResponse->body);
H A DPrincipalSearchPropertySetTest.php51 $this->assertEquals(400, $server->httpResponse->status);
78 $this->assertEquals(400, $server->httpResponse->status, $server->httpResponse->body);
105 $this->assertEquals(200, $server->httpResponse->status, $server->httpResponse->body);
/plugin/davcal/vendor/sabre/dav/tests/Sabre/
H A DDAVServerTest.php235 …$this->assertEquals((int)$expectedStatus, (int)$resp->status,'Incorrect HTTP status received: ' . …
/plugin/davcal/vendor/sabre/dav/tests/Sabre/HTTP/
H A DResponseMock.php20 public $status; variable in Sabre\\HTTP\\ResponseMock
/plugin/davcal/vendor/sabre/event/
H A DREADME.md23 Build status
26 | branch | status |
/plugin/davcal/vendor/sabre/http/
H A DCHANGELOG.md162 human-readable HTTP status message. This part has been removed from
163 Response::getStatus(), which now always returns just the status code as an
203 * Fixed: Not erroring on unknown HTTP status codes.
204 * Fixed: Throwing exceptions on invalid HTTP status codes (not 3 digits).
H A DREADME.md28 Build status
31 | branch | status |
593 * Returns the current HTTP status.
595 * This is the status-code as well as the human readable string.
602 * Sets the HTTP status code.
604 * This can be either the full HTTP status code with human readable string,
610 * @param string|int $status
614 function setStatus($status);
/plugin/davcal/vendor/sabre/http/examples/
H A Dasyncclient.php52 if ($error['status'] === Client::STATUS_CURLERROR) {
/plugin/davcal/vendor/sabre/http/lib/
H A DClient.php215 $status = curl_multi_info_read(
220 if ($status && $status['msg'] === CURLMSG_DONE) {
222 $resourceId = intval($status['handle']);
230 … $curlResult = $this->parseCurlResult(curl_multi_getcontent($status['handle']), $status['handle']);
H A DResponse.php88 protected $status; variable in Sabre\\HTTP\\Response
100 * @param string|int $status
107 if (!is_null($status)) $this->setStatus($status);
121 return $this->status;
147 * @param string|int $status
151 function setStatus($status) { argument
153 if (ctype_digit($status) || is_int($status)) {
155 $statusCode = $status;
156 … $statusText = isset(self::$statusCodes[$status]) ? self::$statusCodes[$status] : 'Unknown';
162 ) = explode(' ', $status, 2);
[all …]
H A DResponseDecorator.php63 * @param string|int $status
66 function setStatus($status) { argument
68 $this->inner->setStatus($status);
H A DResponseInterface.php39 * @param string|int $status
43 function setStatus($status); argument
/plugin/davcal/vendor/sabre/http/tests/HTTP/
H A DClientTest.php287 $this->assertEquals(Client::STATUS_SUCCESS, $result['status']);
311 $this->assertEquals(Client::STATUS_CURLERROR, $result['status']);
/plugin/davcal/vendor/sabre/uri/
H A DREADME.md28 Build status
31 | branch | status |
/plugin/davcal/vendor/sabre/vobject/
H A DChangeLog.md80 * #177: SCHEDULE-STATUS should not contain a reason phrase, only a status
129 * Changed: iTip broker now sets RSVP status to false when replies are received.

1...<<21222324252627282930>>...60