From fdc87eaeb360ad14ed243368ea8f74aafed32304 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20M=C3=BCller?= Date: Mon, 30 Sep 2013 11:30:34 +0200 Subject: [PATCH] adding test testSimplePutFailsOnRename() --- tests/lib/connector/sabre/file.php | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tests/lib/connector/sabre/file.php b/tests/lib/connector/sabre/file.php index ab34937b0c5..a1dade3d63d 100644 --- a/tests/lib/connector/sabre/file.php +++ b/tests/lib/connector/sabre/file.php @@ -21,4 +21,18 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase { $etag = $file->put('test data'); } + /** + * @expectedException Sabre_DAV_Exception + */ + public function testSimplePutFailsOnRename() { + // setup + $file = new OC_Connector_Sabre_File('/test.txt'); + $file->fileView = $this->getMock('\OC\Files\View', array('file_put_contents', 'rename'), array(), '', FALSE); + $file->fileView->expects($this->any())->method('file_put_contents')->withAnyParameters()->will($this->returnValue(true)); + $file->fileView->expects($this->any())->method('rename')->withAnyParameters()->will($this->returnValue(false)); + + // action + $etag = $file->put('test data'); + } + } -- 2.39.5