Scanner test: ensure mtime in the cache is the same as on the storage to prevent random failures

remotes/origin/stable6
Robin Appelman 12 years ago
parent 63c83ff50b
commit 3f5eb762b6
  1. 1
      tests/lib/files/cache/scanner.php

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

Loading…
Cancel
Save