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; } }