mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 18:08:49 +00:00
Initial Release of the calendar plugin
This commit is contained in:
parent
45cc9885fc
commit
7115197a33
561 changed files with 189494 additions and 0 deletions
102
dav/SabreDAV/tests/Sabre/DAV/Issue33Test.php
Normal file
102
dav/SabreDAV/tests/Sabre/DAV/Issue33Test.php
Normal file
|
@ -0,0 +1,102 @@
|
|||
<?php
|
||||
|
||||
require_once 'Sabre/TestUtil.php';
|
||||
|
||||
class Sabre_DAV_Issue33Test extends PHPUnit_Framework_TestCase {
|
||||
|
||||
function setUp() {
|
||||
|
||||
Sabre_TestUtil::clearTempDir();
|
||||
|
||||
}
|
||||
|
||||
function testCopyMoveInfo() {
|
||||
|
||||
$foo = new Sabre_DAV_SimpleCollection('foo');
|
||||
$root = new Sabre_DAV_SimpleCollection('webdav',array($foo));
|
||||
|
||||
$tree = new Sabre_DAV_ObjectTree($root);
|
||||
$server = new Sabre_DAV_Server($tree);
|
||||
$server->setBaseUri('/webdav/');
|
||||
|
||||
$serverVars = array(
|
||||
'REQUEST_URI' => '/webdav/foo',
|
||||
'HTTP_DESTINATION' => 'http://dev2.tribalos.com/webdav/%C3%A0fo%C3%B3',
|
||||
'HTTP_OVERWRITE' => 'F',
|
||||
);
|
||||
|
||||
$request = new Sabre_HTTP_Request($serverVars);
|
||||
|
||||
$server->httpRequest = $request;
|
||||
|
||||
$info = $server->getCopyAndMoveInfo();
|
||||
|
||||
$this->assertEquals('%C3%A0fo%C3%B3', urlencode($info['destination']));
|
||||
$this->assertFalse($info['destinationExists']);
|
||||
$this->assertFalse($info['destinationNode']);
|
||||
|
||||
}
|
||||
|
||||
function testTreeMove() {
|
||||
|
||||
mkdir(SABRE_TEMPDIR . '/issue33');
|
||||
$dir = new Sabre_DAV_FS_Directory(SABRE_TEMPDIR . '/issue33');
|
||||
|
||||
$dir->createDirectory('foo');
|
||||
|
||||
$tree = new Sabre_DAV_ObjectTree($dir);
|
||||
$tree->move('foo',urldecode('%C3%A0fo%C3%B3'));
|
||||
|
||||
$node = $tree->getNodeForPath(urldecode('%C3%A0fo%C3%B3'));
|
||||
$this->assertEquals(urldecode('%C3%A0fo%C3%B3'),$node->getName());
|
||||
|
||||
}
|
||||
|
||||
function testDirName() {
|
||||
|
||||
$dirname1 = 'foo';
|
||||
$dirname2 = urlencode('%C3%A0fo%C3%B3');;
|
||||
|
||||
$this->assertTrue(dirname($dirname1)==dirname($dirname2));
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @depends testTreeMove
|
||||
* @depends testCopyMoveInfo
|
||||
*/
|
||||
function testEverything() {
|
||||
|
||||
// Request object
|
||||
$serverVars = array(
|
||||
'REQUEST_METHOD' => 'MOVE',
|
||||
'REQUEST_URI' => '/webdav/foo',
|
||||
'HTTP_DESTINATION' => 'http://dev2.tribalos.com/webdav/%C3%A0fo%C3%B3',
|
||||
'HTTP_OVERWRITE' => 'F',
|
||||
);
|
||||
|
||||
$request = new Sabre_HTTP_Request($serverVars);
|
||||
$request->setBody('');
|
||||
|
||||
$response = new Sabre_HTTP_ResponseMock();
|
||||
|
||||
// Server setup
|
||||
mkdir(SABRE_TEMPDIR . '/issue33');
|
||||
$dir = new Sabre_DAV_FS_Directory(SABRE_TEMPDIR . '/issue33');
|
||||
|
||||
$dir->createDirectory('foo');
|
||||
|
||||
$tree = new Sabre_DAV_ObjectTree($dir);
|
||||
|
||||
$server = new Sabre_DAV_Server($tree);
|
||||
$server->setBaseUri('/webdav/');
|
||||
|
||||
$server->httpRequest = $request;
|
||||
$server->httpResponse = $response;
|
||||
$server->exec();
|
||||
|
||||
$this->assertTrue(file_exists(SABRE_TEMPDIR . '/issue33/' . urldecode('%C3%A0fo%C3%B3')));
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue