summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-24 15:44:02 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-24 15:44:02 +0200
commitee75a5b134eaa49b54857ea254b5217ea47e0e2f (patch)
tree3f45d974781e2c979428d7ecff97bcd0f8c4cd23 /tests
parent84a0e6930b8668a57075159d0c6e31e35e6c5e84 (diff)
downloadnextcloud-server-ee75a5b134eaa49b54857ea254b5217ea47e0e2f.tar.gz
nextcloud-server-ee75a5b134eaa49b54857ea254b5217ea47e0e2f.zip
adding basic unit test for failing file_put_content operation
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/connector/sabre/file.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/lib/connector/sabre/file.php b/tests/lib/connector/sabre/file.php
new file mode 100644
index 00000000000..ae95ea9ac41
--- /dev/null
+++ b/tests/lib/connector/sabre/file.php
@@ -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');
+ }
+
+}