skipUnless(OC_User::isLoggedIn()); } protected function setUp(): void { parent::setUp(); //login $this->createUser('test', 'test'); $this->user = \OC_User::getUser(); \OC_User::setUserId('test'); //clear all proxies and hooks so we can do clean testing \OC_Hook::clear('OC_Filesystem'); /** @var IMountManager $manager */ $manager = \OC::$server->get(IMountManager::class); $manager->removeMount('/test'); $storage = new \OC\Files\Storage\Temporary([]); \OC\Files\Filesystem::mount($storage, [], '/test/cache'); //set up the users dir $this->rootView = new \OC\Files\View(''); $this->rootView->mkdir('/test'); $this->instance = new \OC\Cache\File(); // forces creation of cache folder for subsequent tests $this->instance->set('hack', 'hack'); } protected function tearDown(): void { if ($this->instance) { $this->instance->remove('hack', 'hack'); } \OC_User::setUserId($this->user); if ($this->instance) { $this->instance->clear(); $this->instance = null; } parent::tearDown(); } private function setupMockStorage() { $mockStorage = $this->getMockBuilder(Local::class) ->onlyMethods(['filemtime', 'unlink']) ->setConstructorArgs([['datadir' => \OC::$server->getTempManager()->getTemporaryFolder()]]) ->getMock(); \OC\Files\Filesystem::mount($mockStorage, [], '/test/cache'); return $mockStorage; } public function testGarbageCollectOldKeys(): void { $mockStorage = $this->setupMockStorage(); $mockStorage->expects($this->atLeastOnce()) ->method('filemtime') ->willReturn(100); $mockStorage->expects($this->once()) ->method('unlink') ->with('key1') ->willReturn(true); $this->instance->set('key1', 'value1'); $this->instance->gc(); } public function testGarbageCollectLeaveRecentKeys(): void { $mockStorage = $this->setupMockStorage(); $mockStorage->expects($this->atLeastOnce()) ->method('filemtime') ->willReturn(time() + 3600); $mockStorage->expects($this->never()) ->method('unlink') ->with('key1'); $this->instance->set('key1', 'value1'); $this->instance->gc(); } public static function lockExceptionProvider(): array { return [ [new \OCP\Lock\LockedException('key1')], [new \OCP\Files\LockNotAcquiredException('key1', 1)], ]; } /** * @dataProvider lockExceptionProvider */ public function testGarbageCollectIgnoreLockedKeys($testException): void { $mockStorage = $this->setupMockStorage(); $mockStorage->expects($this->atLeastOnce()) ->method('filemtime') ->willReturn(100); $mockStorage->expects($this->atLeastOnce()) ->method('unlink') ->will($this->onConsecutiveCalls( $this->throwException($testException), $this->returnValue(true) )); $this->instance->set('key1', 'value1'); $this->instance->set('key2', 'value2'); $this->instance->gc(); } } alue='fop-0_14_0_regions'>fop-0_14_0_regions Apache XML Graphics FOP: https://github.com/apache/xmlgraphics-fopwww-data
aboutsummaryrefslogtreecommitdiffstats
path: root/test/layoutengine/standard-testcases/inline_baseline-shift_4.xml
blob: c0ade7fbe611be9012286fec275fb8c0d0619322 (plain)
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184