]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix updaters test cases
authorRobin Appelman <icewind@owncloud.com>
Tue, 18 Jun 2013 22:26:47 +0000 (00:26 +0200)
committerRobin Appelman <icewind@owncloud.com>
Tue, 18 Jun 2013 22:26:47 +0000 (00:26 +0200)
tests/lib/files/cache/updater.php

index dad3cd7e6503cf671375fd1049bc8b7cc3e3f9fa..198d601b1bb843207330a4102dd62aa44eef6a4d 100644 (file)
@@ -69,6 +69,7 @@ class Updater extends \PHPUnit_Framework_TestCase {
        public function testWrite() {
                $textSize = strlen("dummy file data\n");
                $imageSize = filesize(\OC::$SERVERROOT . '/core/img/logo.png');
+               $this->cache->put('foo.txt', array('mtime' => 100));
                $rootCachedData = $this->cache->get('');
                $this->assertEquals(3 * $textSize + $imageSize, $rootCachedData['size']);
 
@@ -77,11 +78,9 @@ class Updater extends \PHPUnit_Framework_TestCase {
                $cachedData = $this->cache->get('foo.txt');
                $this->assertEquals(3, $cachedData['size']);
                $this->assertNotEquals($fooCachedData['etag'], $cachedData['etag']);
-               $mtime = $cachedData['mtime'];
                $cachedData = $this->cache->get('');
                $this->assertEquals(2 * $textSize + $imageSize + 3, $cachedData['size']);
                $this->assertNotEquals($rootCachedData['etag'], $cachedData['etag']);
-               $this->assertGreaterThanOrEqual($rootCachedData['mtime'], $mtime);
                $rootCachedData = $cachedData;
 
                $this->assertFalse($this->cache->inCache('bar.txt'));