1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
<?php
/**
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace Test\Files\Cache;
use OC\Files\Filesystem;
use OC\Files\Storage\Temporary;
use OC\Files\View;
class Updater extends \PHPUnit_Framework_TestCase {
/**
* @var \OC\Files\Storage\Storage
*/
protected $storage;
/**
* @var \OC\Files\Cache\Cache
*/
protected $cache;
/**
* @var \OC\Files\View
*/
protected $view;
/**
* @var \OC\Files\Cache\Updater
*/
protected $updater;
public function setUp() {
$this->storage = new Temporary(array());
Filesystem::clearMounts();
Filesystem::mount($this->storage, array(), '/');
$this->view = new View('');
$this->updater = new \OC\Files\Cache\Updater($this->view);
$this->cache = $this->storage->getCache();
}
public function testNewFile() {
$this->storage->file_put_contents('foo.txt', 'bar');
$this->assertFalse($this->cache->inCache('foo.txt'));
$this->updater->update('/foo.txt');
$this->assertTrue($this->cache->inCache('foo.txt'));
$cached = $this->cache->get('foo.txt');
$this->assertEquals(3, $cached['size']);
$this->assertEquals('text/plain', $cached['mimetype']);
}
public function testUpdatedFile() {
$this->view->file_put_contents('/foo.txt', 'bar');
$cached = $this->cache->get('foo.txt');
$this->assertEquals(3, $cached['size']);
$this->assertEquals('text/plain', $cached['mimetype']);
$this->storage->file_put_contents('foo.txt', 'qwerty');
$cached = $this->cache->get('foo.txt');
$this->assertEquals(3, $cached['size']);
$this->updater->update('/foo.txt');
$cached = $this->cache->get('foo.txt');
$this->assertEquals(6, $cached['size']);
}
public function testParentSize() {
$this->storage->getScanner()->scan('');
$parentCached = $this->cache->get('');
$this->assertEquals(0, $parentCached['size']);
$this->storage->file_put_contents('foo.txt', 'bar');
$parentCached = $this->cache->get('');
$this->assertEquals(0, $parentCached['size']);
$this->updater->update('foo.txt');
$parentCached = $this->cache->get('');
$this->assertEquals(3, $parentCached['size']);
$this->storage->file_put_contents('foo.txt', 'qwerty');
$parentCached = $this->cache->get('');
$this->assertEquals(3, $parentCached['size']);
$this->updater->update('foo.txt');
$parentCached = $this->cache->get('');
$this->assertEquals(6, $parentCached['size']);
$this->storage->unlink('foo.txt');
$parentCached = $this->cache->get('');
$this->assertEquals(6, $parentCached['size']);
$this->updater->remove('foo.txt');
$parentCached = $this->cache->get('');
$this->assertEquals(0, $parentCached['size']);
}
public function testMove() {
$this->storage->file_put_contents('foo.txt', 'qwerty');
$this->updater->update('foo.txt');
$this->assertTrue($this->cache->inCache('foo.txt'));
$this->assertFalse($this->cache->inCache('bar.txt'));
$cached = $this->cache->get('foo.txt');
$this->storage->rename('foo.txt', 'bar.txt');
$this->assertTrue($this->cache->inCache('foo.txt'));
$this->assertFalse($this->cache->inCache('bar.txt'));
$this->updater->rename('foo.txt', 'bar.txt');
$this->assertFalse($this->cache->inCache('foo.txt'));
$this->assertTrue($this->cache->inCache('bar.txt'));
$cachedTarget = $this->cache->get('bar.txt');
$this->assertEquals($cached['etag'], $cachedTarget['etag']);
$this->assertEquals($cached['mtime'], $cachedTarget['mtime']);
$this->assertEquals($cached['size'], $cachedTarget['size']);
$this->assertEquals($cached['fileid'], $cachedTarget['fileid']);
}
}
|