adding basic unit test for failing file_put_content operation

This commit is contained in:
Thomas Müller 2013-09-24 15:44:02 +02:00
parent 84a0e6930b
commit ee75a5b134
1 changed files with 27 additions and 0 deletions

View File

@ -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');
}
}