2012-02-12 21:06:32 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2014-10-24 18:07:45 +04:00
|
|
|
* ownCloud
|
|
|
|
*
|
|
|
|
* @author Robin Appelman
|
|
|
|
* @copyright 2012 Robin Appelman icewind@owncloud.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2012-02-12 21:06:32 +04:00
|
|
|
|
2012-09-22 16:51:15 +04:00
|
|
|
namespace Test\Files\Storage;
|
|
|
|
|
|
|
|
class Local extends Storage {
|
2012-02-12 21:06:32 +04:00
|
|
|
/**
|
|
|
|
* @var string tmpDir
|
|
|
|
*/
|
|
|
|
private $tmpDir;
|
2014-10-24 18:07:45 +04:00
|
|
|
|
2014-11-07 17:23:15 +03:00
|
|
|
protected function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
2014-10-24 18:07:45 +04:00
|
|
|
$this->tmpDir = \OC_Helper::tmpFolder();
|
|
|
|
$this->instance = new \OC\Files\Storage\Local(array('datadir' => $this->tmpDir));
|
2012-02-12 21:06:32 +04:00
|
|
|
}
|
|
|
|
|
2014-11-07 17:23:15 +03:00
|
|
|
protected function tearDown() {
|
2012-09-22 16:51:15 +04:00
|
|
|
\OC_Helper::rmdirr($this->tmpDir);
|
2014-11-07 17:23:15 +03:00
|
|
|
parent::tearDown();
|
2012-02-12 21:06:32 +04:00
|
|
|
}
|
2014-10-24 18:07:45 +04:00
|
|
|
|
|
|
|
public function testStableEtag() {
|
2014-10-27 22:48:47 +03:00
|
|
|
if (\OC_Util::runningOnWindows()) {
|
2014-11-10 13:01:43 +03:00
|
|
|
$this->markTestSkipped('[Windows] On Windows platform we have no stable etag generation - yet');
|
2014-10-27 22:48:47 +03:00
|
|
|
}
|
|
|
|
|
2014-10-24 18:07:45 +04:00
|
|
|
$this->instance->file_put_contents('test.txt', 'foobar');
|
|
|
|
$etag1 = $this->instance->getETag('test.txt');
|
|
|
|
$etag2 = $this->instance->getETag('test.txt');
|
|
|
|
$this->assertEquals($etag1, $etag2);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEtagChange() {
|
2014-10-27 22:48:47 +03:00
|
|
|
if (\OC_Util::runningOnWindows()) {
|
2014-11-10 13:01:43 +03:00
|
|
|
$this->markTestSkipped('[Windows] On Windows platform we have no stable etag generation - yet');
|
2014-10-27 22:48:47 +03:00
|
|
|
}
|
|
|
|
|
2014-10-24 18:07:45 +04:00
|
|
|
$this->instance->file_put_contents('test.txt', 'foo');
|
|
|
|
$this->instance->touch('test.txt', time() - 2);
|
|
|
|
$etag1 = $this->instance->getETag('test.txt');
|
|
|
|
$this->instance->file_put_contents('test.txt', 'bar');
|
|
|
|
$etag2 = $this->instance->getETag('test.txt');
|
|
|
|
$this->assertNotEquals($etag1, $etag2);
|
|
|
|
}
|
2012-02-12 21:06:32 +04:00
|
|
|
}
|
|
|
|
|