Merge pull request #4919 from nextcloud/touch-floor-11

[11] round the mtime in touch
This commit is contained in:
Roeland Jago Douma 2017-05-18 19:50:49 +02:00 committed by GitHub
commit b85fc1a03f
2 changed files with 19 additions and 1 deletions

View file

@ -564,7 +564,7 @@ class View {
$mtime = time();
}
//if native touch fails, we emulate it by changing the mtime in the cache
$this->putFileInfo($path, array('mtime' => $mtime));
$this->putFileInfo($path, array('mtime' => floor($mtime)));
}
return true;
}

View file

@ -9,6 +9,7 @@ namespace Test\Files;
use OC\Cache\CappedMemoryCache;
use OC\Files\Cache\Watcher;
use OC\Files\Filesystem;
use OC\Files\Storage\Common;
use OC\Files\Mount\MountPoint;
use OC\Files\Storage\Temporary;
@ -558,6 +559,23 @@ class ViewTest extends \Test\TestCase {
$this->assertEquals($cachedData['storage_mtime'], $cachedData['mtime']);
}
/**
* @medium
*/
public function testTouchFloat() {
$storage = $this->getTestStorage(true, TemporaryNoTouch::class);
Filesystem::mount($storage, array(), '/');
$rootView = new View('');
$oldCachedData = $rootView->getFileInfo('foo.txt');
$rootView->touch('foo.txt', 500.5);
$cachedData = $rootView->getFileInfo('foo.txt');
$this->assertEquals(500, $cachedData['mtime']);
}
/**
* @medium
*/