summaryrefslogtreecommitdiffstats
path: root/tests/lib
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-04-27 18:03:04 +0200
committerVincent Petry <pvince81@owncloud.com>2015-06-02 11:42:03 +0200
commitc4cb93e6448f217afad33c684e02fd9e8614f976 (patch)
tree4f0cc17e14bd4dadeebc8ef141f771e6a936ec0a /tests/lib
parent30d7f92763505e52a41788012f87142f298a3461 (diff)
downloadnextcloud-server-c4cb93e6448f217afad33c684e02fd9e8614f976.tar.gz
nextcloud-server-c4cb93e6448f217afad33c684e02fd9e8614f976.zip
Added storage backend test for checkUpdate
This helps testing whether checkUpdate properly returns false when no change exists
Diffstat (limited to 'tests/lib')
-rw-r--r--tests/lib/files/storage/storage.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/lib/files/storage/storage.php b/tests/lib/files/storage/storage.php
index 62fba4c1716..4ec474f2f01 100644
--- a/tests/lib/files/storage/storage.php
+++ b/tests/lib/files/storage/storage.php
@@ -22,6 +22,8 @@
namespace Test\Files\Storage;
+use OC\Files\Cache\Watcher;
+
abstract class Storage extends \Test\TestCase {
/**
* @var \OC\Files\Storage\Storage instance
@@ -309,6 +311,19 @@ abstract class Storage extends \Test\TestCase {
$this->assertTrue($this->instance->hasUpdated('/', $mtimeStart - 5));
}
+ /**
+ * Test whether checkUpdate properly returns false when there was
+ * no change.
+ */
+ public function testCheckUpdate() {
+ $textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt';
+ $watcher = $this->instance->getWatcher();
+ $watcher->setPolicy(Watcher::CHECK_ALWAYS);
+ $this->instance->file_put_contents('/lorem.txt', file_get_contents($textFile));
+ $this->assertTrue($watcher->checkUpdate('/lorem.txt'), 'Update detected');
+ $this->assertFalse($watcher->checkUpdate('/lorem.txt'), 'No update');
+ }
+
public function testUnlink() {
$textFile = \OC::$SERVERROOT . '/tests/data/lorem.txt';
$this->instance->file_put_contents('/lorem.txt', file_get_contents($textFile));