]> source.dussan.org Git - nextcloud-server.git/commitdiff
Scanner test: ensure mtime in the cache is the same as on the storage to prevent...
authorRobin Appelman <icewind@owncloud.com>
Fri, 5 Jul 2013 12:51:22 +0000 (14:51 +0200)
committerRobin Appelman <icewind@owncloud.com>
Fri, 5 Jul 2013 12:51:22 +0000 (14:51 +0200)
tests/lib/files/cache/scanner.php

index 042bf8991f6f7f4d01b13068acbdaf0265de0dd2..263ceadccc7deeb0497e6fbb92860253b1d2fef7 100644 (file)
@@ -132,6 +132,7 @@ class Scanner extends \PHPUnit_Framework_TestCase {
                $this->scanner->scan('');
                $oldData = $this->cache->get('');
                $this->storage->unlink('folder/bar.txt');
+               $this->cache->put('folder', array('mtime' => $this->storage->filemtime('folder')));
                $this->scanner->scan('', \OC\Files\Cache\Scanner::SCAN_SHALLOW, \OC\Files\Cache\Scanner::REUSE_SIZE);
                $newData = $this->cache->get('');
                $this->assertNotEquals($oldData['etag'], $newData['etag']);