Merge pull request #11799 from owncloud/no-stable-etags-on-windows

On Windows platform we have no stable etag generation - yet
This commit is contained in:
Lukas Reschke 2014-10-27 22:33:14 +01:00
commit 7466ff09bb
1 changed files with 8 additions and 0 deletions

View File

@ -38,6 +38,10 @@ class Local extends Storage {
}
public function testStableEtag() {
if (\OC_Util::runningOnWindows()) {
$this->markTestSkipped('On Windows platform we have no stable etag generation - yet');
}
$this->instance->file_put_contents('test.txt', 'foobar');
$etag1 = $this->instance->getETag('test.txt');
$etag2 = $this->instance->getETag('test.txt');
@ -45,6 +49,10 @@ class Local extends Storage {
}
public function testEtagChange() {
if (\OC_Util::runningOnWindows()) {
$this->markTestSkipped('On Windows platform we have no stable etag generation - yet');
}
$this->instance->file_put_contents('test.txt', 'foo');
$this->instance->touch('test.txt', time() - 2);
$etag1 = $this->instance->getETag('test.txt');