]> git.mxchange.org Git - friendica-addons.git/blobdiff - dav/SabreDAV/tests/Sabre/DAV/ServerEventsTest.php
Initial Release of the calendar plugin
[friendica-addons.git] / dav / SabreDAV / tests / Sabre / DAV / ServerEventsTest.php
diff --git a/dav/SabreDAV/tests/Sabre/DAV/ServerEventsTest.php b/dav/SabreDAV/tests/Sabre/DAV/ServerEventsTest.php
new file mode 100644 (file)
index 0000000..a5e88f3
--- /dev/null
@@ -0,0 +1,51 @@
+<?php
+
+require_once 'Sabre/DAV/AbstractServer.php';
+
+class Sabre_DAV_ServerEventsTest extends Sabre_DAV_AbstractServer {
+
+    private $tempPath;
+
+    function testAfterBind() {
+
+        $this->server->subscribeEvent('afterBind',array($this,'afterBindHandler'));
+        $newPath = 'afterBind';
+
+        $this->tempPath = '';
+        $this->server->createFile($newPath,'body');
+        $this->assertEquals($newPath, $this->tempPath);
+
+    }
+
+    function afterBindHandler($path) {
+
+       $this->tempPath = $path;
+
+    }
+
+    function testBeforeBindCancel() {
+
+        $this->server->subscribeEvent('beforeBind', array($this,'beforeBindCancelHandler'));
+        $this->assertFalse($this->server->createFile('bla','body'));
+
+        // Also testing put()
+        $req = new Sabre_HTTP_Request(array(
+            'REQUEST_METHOD' => 'PUT',
+            'REQUEST_URI' => '/foobar',
+        ));
+
+        $this->server->httpRequest = $req;
+        $this->server->exec();
+
+        $this->assertEquals('',$this->server->httpResponse->status);
+
+    }
+
+    function beforeBindCancelHandler() {
+
+        return false;
+
+    }
+
+
+}