Fix unit test
This commit is contained in:
parent
65d24c3cd5
commit
3d92f963f4
3 changed files with 6 additions and 9 deletions
|
@ -13,7 +13,7 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase {
|
|||
*/
|
||||
public function testSimplePutFails() {
|
||||
// setup
|
||||
$view = $this->getMock('\OC\Files\View', array('file_put_contents', 'getRelativePath'), array(), '', false);
|
||||
$view = $this->getMock('\OC\Files\View', array('file_put_contents', 'getRelativePath'), array());
|
||||
$view->expects($this->any())
|
||||
->method('file_put_contents')
|
||||
->will($this->returnValue(false));
|
||||
|
@ -38,8 +38,7 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase {
|
|||
public function testSimplePutFailsOnRename() {
|
||||
// setup
|
||||
$view = $this->getMock('\OC\Files\View',
|
||||
array('file_put_contents', 'rename', 'getRelativePath', 'filesize'),
|
||||
array(), '', false);
|
||||
array('file_put_contents', 'rename', 'getRelativePath', 'filesize'));
|
||||
$view->expects($this->any())
|
||||
->method('file_put_contents')
|
||||
->withAnyParameters()
|
||||
|
@ -72,7 +71,7 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase {
|
|||
*/
|
||||
public function testSimplePutInvalidChars() {
|
||||
// setup
|
||||
$view = $this->getMock('\OC\Files\View', array('file_put_contents', 'getRelativePath'), array(), '', false);
|
||||
$view = $this->getMock('\OC\Files\View', array('file_put_contents', 'getRelativePath'));
|
||||
$view->expects($this->any())
|
||||
->method('file_put_contents')
|
||||
->will($this->returnValue(false));
|
||||
|
@ -96,7 +95,7 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase {
|
|||
*/
|
||||
public function testSetNameInvalidChars() {
|
||||
// setup
|
||||
$view = $this->getMock('\OC\Files\View', array('getRelativePath'), array(), '', false);
|
||||
$view = $this->getMock('\OC\Files\View', array('getRelativePath'));
|
||||
|
||||
$view->expects($this->any())
|
||||
->method('getRelativePath')
|
||||
|
@ -115,8 +114,7 @@ class Test_OC_Connector_Sabre_File extends PHPUnit_Framework_TestCase {
|
|||
public function testUploadAbort() {
|
||||
// setup
|
||||
$view = $this->getMock('\OC\Files\View',
|
||||
array('file_put_contents', 'rename', 'getRelativePath', 'filesize'),
|
||||
array(), '', false);
|
||||
array('file_put_contents', 'rename', 'getRelativePath', 'filesize'));
|
||||
$view->expects($this->any())
|
||||
->method('file_put_contents')
|
||||
->withAnyParameters()
|
||||
|
|
1
tests/lib/files/cache/updaterlegacy.php
vendored
1
tests/lib/files/cache/updaterlegacy.php
vendored
|
@ -132,7 +132,6 @@ class UpdaterLegacy extends \PHPUnit_Framework_TestCase {
|
|||
$this->assertInternalType('string', $substorageCachedData['etag']);
|
||||
$this->assertInternalType('string', $cachedData['etag']);
|
||||
$this->assertNotSame($substorageCachedData['etag'], $cachedData['etag']);
|
||||
$this->assertEquals($mtime, $cachedData['mtime']);
|
||||
|
||||
$cachedData = $this->cache->get('folder');
|
||||
$this->assertInternalType('string', $folderCachedData['etag']);
|
||||
|
|
|
@ -382,7 +382,7 @@ class View extends \PHPUnit_Framework_TestCase {
|
|||
$rootView->putFileInfo('foo.txt', array('storage_mtime' => 1000)); //make sure the watcher detects the change
|
||||
$rootView->file_put_contents('foo.txt', 'asd');
|
||||
$cachedData = $rootView->getFileInfo('foo.txt');
|
||||
$this->assertGreaterThanOrEqual($cachedData['mtime'], $oldCachedData['mtime']);
|
||||
$this->assertGreaterThanOrEqual($oldCachedData['mtime'], $cachedData['mtime']);
|
||||
$this->assertEquals($cachedData['storage_mtime'], $cachedData['mtime']);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue