summaryrefslogtreecommitdiffstats
path: root/tests/lib/connector/sabre
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-30 11:30:34 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-30 11:30:34 +0200
commitfdc87eaeb360ad14ed243368ea8f74aafed32304 (patch)
treeba37ad1cfa32e5a9e89743a436ab664a5ea96f43 /tests/lib/connector/sabre
parent92c02e67973cf3e4e2615eae5a280674df43e084 (diff)
downloadnextcloud-server-fdc87eaeb360ad14ed243368ea8f74aafed32304.tar.gz
nextcloud-server-fdc87eaeb360ad14ed243368ea8f74aafed32304.zip
adding test testSimplePutFailsOnRename()
Diffstat (limited to 'tests/lib/connector/sabre')
-rw-r--r--tests/lib/connector/sabre/file.php14
1 files changed, 14 insertions, 0 deletions
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');
+ }
+
}