]> source.dussan.org Git - nextcloud-server.git/commitdiff
adding basic unit test for failing file_put_content operation
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 24 Sep 2013 13:44:02 +0000 (15:44 +0200)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 24 Sep 2013 13:44:02 +0000 (15:44 +0200)
tests/lib/connector/sabre/file.php [new file with mode: 0644]

diff --git a/tests/lib/connector/sabre/file.php b/tests/lib/connector/sabre/file.php
new file mode 100644 (file)
index 0000000..ae95ea9
--- /dev/null
@@ -0,0 +1,27 @@
+<?php
+/**
+ * Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu>
+ * This file is licensed under the Affero General Public License version 3 or
+ * later.
+ * See the COPYING-README file.
+ */
+
+class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase {
+
+       public function setUp() {
+       }
+
+       /**
+        * @expectedException Sabre_DAV_Exception
+        */
+       public function testSimplePutFails() {
+               // setup
+               $file = new OC_Connector_Sabre_File('/test.txt');
+               $file->fileView = $this->getMock('\OC\Files\View', array('file_put_contents'), array(), '', FALSE);
+               $file->fileView->expects($this->any())->method('file_put_contents')->withAnyParameters()->will($this->returnValue(false));
+
+               // action
+               $etag = $file->put('test data');
+       }
+
+}