moved deprecated communityhome, dav and yourls to the deprecated-addons repository
This commit is contained in:
parent
24444adef3
commit
31520f804d
675 changed files with 195144 additions and 0 deletions
53
dav/SabreDAV/tests/Sabre/DAV/Mount/PluginTest.php
Normal file
53
dav/SabreDAV/tests/Sabre/DAV/Mount/PluginTest.php
Normal file
|
@ -0,0 +1,53 @@
|
|||
<?php
|
||||
|
||||
require_once 'Sabre/DAV/AbstractServer.php';
|
||||
|
||||
class Sabre_DAV_Mount_PluginTest extends Sabre_DAV_AbstractServer {
|
||||
|
||||
function setUp() {
|
||||
|
||||
parent::setUp();
|
||||
$this->server->addPlugin(new Sabre_DAV_Mount_Plugin());
|
||||
|
||||
}
|
||||
|
||||
function testPassThrough() {
|
||||
|
||||
$serverVars = array(
|
||||
'REQUEST_URI' => '/',
|
||||
'REQUEST_METHOD' => 'GET',
|
||||
);
|
||||
|
||||
$request = new Sabre_HTTP_Request($serverVars);
|
||||
$this->server->httpRequest = ($request);
|
||||
$this->server->exec();
|
||||
|
||||
$this->assertEquals('HTTP/1.1 501 Not Implemented',$this->response->status,'We expected GET to not be implemented for Directories. Response body: ' . $this->response->body);
|
||||
|
||||
}
|
||||
|
||||
function testMountResponse() {
|
||||
|
||||
$serverVars = array(
|
||||
'REQUEST_URI' => '/?mount',
|
||||
'REQUEST_METHOD' => 'GET',
|
||||
'QUERY_STRING' => 'mount',
|
||||
'HTTP_HOST' => 'example.org',
|
||||
);
|
||||
|
||||
$request = new Sabre_HTTP_Request($serverVars);
|
||||
$this->server->httpRequest = ($request);
|
||||
$this->server->exec();
|
||||
|
||||
$this->assertEquals('HTTP/1.1 200 OK',$this->response->status);
|
||||
|
||||
$xml = simplexml_load_string($this->response->body);
|
||||
$this->assertTrue($xml==true,'Response was not a valid xml document');
|
||||
|
||||
$xml->registerXPathNamespace('dm','http://purl.org/NET/webdav/mount');
|
||||
$url = $xml->xpath('//dm:url');
|
||||
$this->assertEquals('http://example.org/',(string)$url[0]);
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue