]> source.dussan.org Git - nextcloud-server.git/commitdiff
adding test testSimplePutFailsOnRename()
authorThomas Müller <thomas.mueller@tmit.eu>
Mon, 30 Sep 2013 09:30:34 +0000 (11:30 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Mon, 30 Sep 2013 09:30:34 +0000 (11:30 +0200)
tests/lib/connector/sabre/file.php

index ab34937b0c51b48685e6b74bcbb39b57a33a2af0..a1dade3d63de37a58c2f2b121acb6ecf261e097d 100644 (file)
@@ -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');
+       }
+
 }