|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* apparat-object |
|
5
|
|
|
* |
|
6
|
|
|
* @category Apparat |
|
7
|
|
|
* @package Apparat\Object |
|
8
|
|
|
* @subpackage Apparat\Object\Infrastructure |
|
9
|
|
|
* @author Joschi Kuphal <[email protected]> / @jkphl |
|
10
|
|
|
* @copyright Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl |
|
11
|
|
|
* @license http://opensource.org/licenses/MIT The MIT License (MIT) |
|
12
|
|
|
*/ |
|
13
|
|
|
|
|
14
|
|
|
/*********************************************************************************** |
|
15
|
|
|
* The MIT License (MIT) |
|
16
|
|
|
* |
|
17
|
|
|
* Copyright © 2016 Joschi Kuphal <[email protected]> / @jkphl |
|
18
|
|
|
* |
|
19
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of |
|
20
|
|
|
* this software and associated documentation files (the "Software"), to deal in |
|
21
|
|
|
* the Software without restriction, including without limitation the rights to |
|
22
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of |
|
23
|
|
|
* the Software, and to permit persons to whom the Software is furnished to do so, |
|
24
|
|
|
* subject to the following conditions: |
|
25
|
|
|
* |
|
26
|
|
|
* The above copyright notice and this permission notice shall be included in all |
|
27
|
|
|
* copies or substantial portions of the Software. |
|
28
|
|
|
* |
|
29
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
30
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS |
|
31
|
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR |
|
32
|
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER |
|
33
|
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
|
34
|
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
|
35
|
|
|
***********************************************************************************/ |
|
36
|
|
|
|
|
37
|
|
|
namespace Apparat\Object\Tests { |
|
38
|
|
|
|
|
39
|
|
|
use Apparat\Kernel\Ports\Kernel; |
|
40
|
|
|
use Apparat\Object\Application\Factory\ObjectFactory; |
|
41
|
|
|
use Apparat\Object\Application\Model\Object\Article; |
|
42
|
|
|
use Apparat\Object\Domain\Model\Object\AbstractObject; |
|
43
|
|
|
use Apparat\Object\Domain\Model\Object\Id; |
|
44
|
|
|
use Apparat\Object\Domain\Model\Object\ResourceInterface; |
|
45
|
|
|
use Apparat\Object\Domain\Model\Object\Revision; |
|
46
|
|
|
use Apparat\Object\Domain\Model\Object\Type; |
|
47
|
|
|
use Apparat\Object\Domain\Model\Path\RepositoryPath; |
|
48
|
|
|
use Apparat\Object\Domain\Model\Properties\MetaProperties; |
|
49
|
|
|
use Apparat\Object\Domain\Model\Properties\SystemProperties; |
|
50
|
|
|
use Apparat\Object\Domain\Repository\Repository; |
|
51
|
|
|
use Apparat\Object\Infrastructure\Model\Object\Object; |
|
52
|
|
|
use Apparat\Object\Infrastructure\Repository\FileAdapterStrategy; |
|
53
|
|
|
use Apparat\Object\Ports\Types\Object as ObjectTypes; |
|
54
|
|
|
|
|
55
|
|
|
/** |
|
56
|
|
|
* Object tests |
|
57
|
|
|
* |
|
58
|
|
|
* @package Apparat\Object |
|
59
|
|
|
* @subpackage Apparat\Object\Test |
|
60
|
|
|
*/ |
|
61
|
|
|
class ObjectTest extends AbstractRepositoryEnabledTest |
|
62
|
|
|
{ |
|
63
|
|
|
/** |
|
64
|
|
|
* Example object path |
|
65
|
|
|
* |
|
66
|
|
|
* @var string |
|
67
|
|
|
*/ |
|
68
|
|
|
const OBJECT_PATH = '/2015/12/21/1-article/1'; |
|
69
|
|
|
/** |
|
70
|
|
|
* Example hidden object path |
|
71
|
|
|
* |
|
72
|
|
|
* @var string |
|
73
|
|
|
*/ |
|
74
|
|
|
const HIDDEN_OBJECT_PATH = '/2016/05/26/6-article/6'; |
|
75
|
|
|
|
|
76
|
|
|
/** |
|
77
|
|
|
* Tears down the fixture |
|
78
|
|
|
*/ |
|
79
|
|
|
public function tearDown() |
|
80
|
|
|
{ |
|
81
|
|
|
putenv('MOCK_FLOCK'); |
|
82
|
|
|
putenv('MOCK_RENAME'); |
|
83
|
|
|
TestTypeService::removeInvalidType(); |
|
84
|
|
|
parent::tearDown(); |
|
85
|
|
|
} |
|
86
|
|
|
|
|
87
|
|
|
/** |
|
88
|
|
|
* Test undefined object type |
|
89
|
|
|
* |
|
90
|
|
|
* @expectedException \Apparat\Object\Application\Factory\InvalidArgumentException |
|
91
|
|
|
* @expectedExceptionCode 1450905868 |
|
92
|
|
|
*/ |
|
93
|
|
|
public function testUndefinedObjectType() |
|
94
|
|
|
{ |
|
95
|
|
|
$resource = $this->createMock(ResourceInterface::class); |
|
96
|
|
|
$resource->method('getPropertyData')->willReturn([]); |
|
97
|
|
|
$repositoryPath = $this->getMockBuilder(RepositoryPath::class)->disableOriginalConstructor()->getMock(); |
|
98
|
|
|
|
|
99
|
|
|
/** @var ResourceInterface $resource */ |
|
100
|
|
|
/** @var RepositoryPath $repositoryPath */ |
|
101
|
|
|
ObjectFactory::createFromResource($repositoryPath, $resource); |
|
102
|
|
|
} |
|
103
|
|
|
|
|
104
|
|
|
/** |
|
105
|
|
|
* Test invalid object type |
|
106
|
|
|
* |
|
107
|
|
|
* @expectedException \Apparat\Object\Domain\Model\Object\InvalidArgumentException |
|
108
|
|
|
* @expectedExceptionCode 1449871242 |
|
109
|
|
|
*/ |
|
110
|
|
|
public function testInvalidObjectType() |
|
111
|
|
|
{ |
|
112
|
|
|
$resource = $this->createMock(ResourceInterface::class); |
|
113
|
|
|
$resource->method('getPropertyData')->willReturn([SystemProperties::COLLECTION => ['type' => 'invalid']]); |
|
114
|
|
|
$articleObjectPath = new RepositoryPath(self::$repository, self::OBJECT_PATH); |
|
115
|
|
|
|
|
116
|
|
|
/** @var ResourceInterface $resource */ |
|
117
|
|
|
ObjectFactory::createFromResource($articleObjectPath, $resource); |
|
118
|
|
|
} |
|
119
|
|
|
|
|
120
|
|
|
/** |
|
121
|
|
|
* Load an article object with an invalid visibility requirement |
|
122
|
|
|
* |
|
123
|
|
|
* @expectedException \Apparat\Object\Domain\Repository\InvalidArgumentException |
|
124
|
|
|
* @expectedExceptionCode 1449999646 |
|
125
|
|
|
*/ |
|
126
|
|
|
public function testLoadArticleObjectInvalidVisibility() |
|
127
|
|
|
{ |
|
128
|
|
|
$articleObjectPath = new RepositoryPath(self::$repository, self::OBJECT_PATH); |
|
129
|
|
|
self::$repository->loadObject($articleObjectPath, 0); |
|
130
|
|
|
} |
|
131
|
|
|
|
|
132
|
|
|
/** |
|
133
|
|
|
* Load an article object |
|
134
|
|
|
* |
|
135
|
|
|
* @expectedException \Apparat\Object\Domain\Model\Object\OutOfBoundsException |
|
136
|
|
|
* @expectedExceptionCode 1461619783 |
|
137
|
|
|
*/ |
|
138
|
|
|
public function testLoadArticleObject() |
|
139
|
|
|
{ |
|
140
|
|
|
$articleObjectPath = new RepositoryPath(self::$repository, self::OBJECT_PATH); |
|
141
|
|
|
$articleObject = self::$repository->loadObject($articleObjectPath); |
|
142
|
|
|
$this->assertEquals( |
|
143
|
|
|
getenv('APPARAT_BASE_URL').getenv('REPOSITORY_URL').self::OBJECT_PATH, |
|
144
|
|
|
$articleObject->getAbsoluteUrl() |
|
145
|
|
|
); |
|
146
|
|
|
$this->assertFalse($articleObject->isDeleted()); |
|
147
|
|
|
$this->assertFalse($articleObject->getRepositoryPath()->isHidden()); |
|
148
|
|
|
|
|
149
|
|
|
/** @var Revision $invalidRevision */ |
|
150
|
|
|
$invalidRevision = Kernel::create(Revision::class, [99]); |
|
151
|
|
|
$articleObject->useRevision($invalidRevision); |
|
152
|
|
|
} |
|
153
|
|
|
|
|
154
|
|
|
/** |
|
155
|
|
|
* Load a hidden article object |
|
156
|
|
|
*/ |
|
157
|
|
|
public function testLoadHiddenArticleObject() |
|
158
|
|
|
{ |
|
159
|
|
|
$articleObjectPath = new RepositoryPath(self::$repository, self::HIDDEN_OBJECT_PATH); |
|
160
|
|
|
$articleObject = self::$repository->loadObject($articleObjectPath); |
|
161
|
|
|
$this->assertTrue($articleObject->isDeleted()); |
|
162
|
|
|
$this->assertTrue($articleObject->getRepositoryPath()->isHidden()); |
|
163
|
|
|
} |
|
164
|
|
|
|
|
165
|
|
|
/** |
|
166
|
|
|
* Load an article object and test its system properties |
|
167
|
|
|
*/ |
|
168
|
|
|
public function testLoadArticleObjectSystemProperties() |
|
169
|
|
|
{ |
|
170
|
|
|
$articleObjectPath = new RepositoryPath(self::$repository, self::OBJECT_PATH); |
|
171
|
|
|
$articleObject = self::$repository->loadObject($articleObjectPath); |
|
172
|
|
|
$this->assertInstanceOf(Article::class, $articleObject); |
|
173
|
|
|
$this->assertEquals(new Id(1), $articleObject->getId()); |
|
174
|
|
|
$this->assertEquals(Kernel::create(Type::class, [ObjectTypes::ARTICLE]), $articleObject->getType()); |
|
175
|
|
|
$this->assertEquals(new Revision(1), $articleObject->getRevision()); |
|
176
|
|
|
$this->assertFalse($articleObject->isDraft()); |
|
177
|
|
|
$this->assertTrue($articleObject->isPublished()); |
|
178
|
|
|
$this->assertEquals(new \DateTimeImmutable('2015-12-21T22:30:00'), $articleObject->getCreated()); |
|
179
|
|
|
$this->assertEquals(new \DateTimeImmutable('2015-12-21T22:45:00'), $articleObject->getPublished()); |
|
180
|
|
|
$this->assertNull($articleObject->getDeleted()); |
|
181
|
|
|
$this->assertEquals('en', $articleObject->getLanguage()); |
|
182
|
|
|
$this->assertEquals( |
|
183
|
|
|
"# Example article object\n\nThis file is an example for an object of type `\"article\"`. ". |
|
184
|
|
|
"It has a link to [Joschi Kuphal's website](https://jkphl.is) and features his avatar:\n". |
|
185
|
|
|
"", |
|
186
|
|
|
$articleObject->getPayload() |
|
187
|
|
|
); |
|
188
|
|
|
} |
|
189
|
|
|
|
|
190
|
|
|
/** |
|
191
|
|
|
* Load an article object and test its meta properties |
|
192
|
|
|
*/ |
|
193
|
|
|
public function testLoadArticleObjectMetaProperties() |
|
194
|
|
|
{ |
|
195
|
|
|
$articleObjectPath = new RepositoryPath(self::$repository, self::OBJECT_PATH); |
|
196
|
|
|
$articleObject = self::$repository->loadObject($articleObjectPath); |
|
197
|
|
|
$this->assertInstanceOf(Article::class, $articleObject); |
|
198
|
|
|
$this->assertEquals('Example article object', $articleObject->getDescription()); |
|
199
|
|
|
$this->assertEquals( |
|
200
|
|
|
'Article objects feature a Markdown payload along with some custom properties', |
|
201
|
|
|
$articleObject->getAbstract() |
|
202
|
|
|
); |
|
203
|
|
|
$this->assertArrayEquals(['apparat', 'object', 'example', 'article'], $articleObject->getKeywords()); |
|
204
|
|
|
$this->assertArrayEquals(['example', 'text'], $articleObject->getCategories()); |
|
205
|
|
|
|
|
206
|
|
|
// TODO Replace with contributed-by relations |
|
207
|
|
|
// $authorCount = count($articleObject->getAuthors()); |
|
208
|
|
|
// $articleObject->addAuthor(AuthorFactory::createFromString(AuthorTest::GENERIC_AUTHOR)); |
|
209
|
|
|
// $this->assertEquals($authorCount + 1, count($articleObject->getAuthors())); |
|
210
|
|
|
} |
|
211
|
|
|
|
|
212
|
|
|
/** |
|
213
|
|
|
* Load an article object and test its domain properties |
|
214
|
|
|
* |
|
215
|
|
|
* @expectedException \Apparat\Object\Domain\Model\Properties\InvalidArgumentException |
|
216
|
|
|
* @expectedExceptionCode 1450818168 |
|
217
|
|
|
*/ |
|
218
|
|
|
public function testLoadArticleObjectDomainProperties() |
|
219
|
|
|
{ |
|
220
|
|
|
$articleObjectPath = new RepositoryPath(self::$repository, self::OBJECT_PATH); |
|
221
|
|
|
$articleObject = self::$repository->loadObject($articleObjectPath); |
|
222
|
|
|
$this->assertEquals('/system/url', $articleObject->getDomainProperty('uid')); |
|
223
|
|
|
$this->assertEquals('value', $articleObject->getDomainProperty('group:single')); |
|
224
|
|
|
$articleObject->getDomainProperty('group:invalid'); |
|
225
|
|
|
} |
|
226
|
|
|
|
|
227
|
|
|
/** |
|
228
|
|
|
* Load an article object and test an empty domain property name |
|
229
|
|
|
* |
|
230
|
|
|
* @expectedException \Apparat\Object\Domain\Model\Properties\InvalidArgumentException |
|
231
|
|
|
* @expectedExceptionCode 1450817720 |
|
232
|
|
|
*/ |
|
233
|
|
|
public function testLoadArticleObjectDomainEmptyProperty() |
|
234
|
|
|
{ |
|
235
|
|
|
$articleObjectPath = new RepositoryPath(self::$repository, self::OBJECT_PATH); |
|
236
|
|
|
$articleObject = self::$repository->loadObject($articleObjectPath); |
|
237
|
|
|
$articleObject->getDomainProperty(''); |
|
238
|
|
|
} |
|
239
|
|
|
|
|
240
|
|
|
/** |
|
241
|
|
|
* Test the object facade with an absolute object URL |
|
242
|
|
|
*/ |
|
243
|
|
|
public function testObjectAbsolute() |
|
244
|
|
|
{ |
|
245
|
|
|
$object = Object::load(getenv('APPARAT_BASE_URL').getenv('REPOSITORY_URL').self::OBJECT_PATH); |
|
246
|
|
|
$this->assertInstanceOf(Article::class, $object); |
|
247
|
|
|
} |
|
248
|
|
|
|
|
249
|
|
|
/** |
|
250
|
|
|
* Test the object facade with a relative object URL |
|
251
|
|
|
*/ |
|
252
|
|
|
public function testObjectRelative() |
|
253
|
|
|
{ |
|
254
|
|
|
$object = Object::load(getenv('REPOSITORY_URL').self::OBJECT_PATH); |
|
255
|
|
|
$this->assertInstanceOf(Article::class, $object); |
|
256
|
|
|
} |
|
257
|
|
|
|
|
258
|
|
|
/** |
|
259
|
|
|
* Test the object facade with an invalid relative object URL |
|
260
|
|
|
* |
|
261
|
|
|
* @expectedException \Apparat\Resource\Ports\InvalidReaderArgumentException |
|
262
|
|
|
* @expectedExceptionCode 1447616824 |
|
263
|
|
|
*/ |
|
264
|
|
|
public function testObjectRelativeInvalid() |
|
265
|
|
|
{ |
|
266
|
|
|
$object = Object::load(getenv('REPOSITORY_URL').'/2015/12/21/2-article/2'); |
|
267
|
|
|
$this->assertInstanceOf(Article::class, $object); |
|
268
|
|
|
} |
|
269
|
|
|
|
|
270
|
|
|
/** |
|
271
|
|
|
* Test with a missing object type class |
|
272
|
|
|
* |
|
273
|
|
|
* @expectedException \Apparat\Object\Application\Factory\InvalidArgumentException |
|
274
|
|
|
* @expectedExceptionCode 1450824842 |
|
275
|
|
|
*/ |
|
276
|
|
|
public function testInvalidObjectTypeClass() |
|
277
|
|
|
{ |
|
278
|
|
|
TestTypeService::addInvalidType(); |
|
279
|
|
|
|
|
280
|
|
|
$resource = $this->createMock(ResourceInterface::class); |
|
281
|
|
|
$resource->method('getPropertyData')->willReturn([SystemProperties::COLLECTION => ['type' => 'invalid']]); |
|
282
|
|
|
$articleObjectPath = new RepositoryPath(self::$repository, '/2016/02/16/5-invalid/5'); |
|
283
|
|
|
|
|
284
|
|
|
/** @var ResourceInterface $resource */ |
|
285
|
|
|
ObjectFactory::createFromResource($articleObjectPath, $resource); |
|
286
|
|
|
} |
|
287
|
|
|
|
|
288
|
|
|
/** |
|
289
|
|
|
* Test instantiation of object with invalid domain properties collection |
|
290
|
|
|
* |
|
291
|
|
|
* @expectedException \Apparat\Object\Domain\Model\Properties\InvalidArgumentException |
|
292
|
|
|
* @expectedExceptionCode 1452288429 |
|
293
|
|
|
*/ |
|
294
|
|
|
public function testInvalidDomainPropertyCollectionClass() |
|
295
|
|
|
{ |
|
296
|
|
|
$this->getMockBuilder(AbstractObject::class) |
|
297
|
|
|
->setConstructorArgs([new RepositoryPath(self::$repository, self::OBJECT_PATH)]) |
|
298
|
|
|
->getMock(); |
|
299
|
|
|
} |
|
300
|
|
|
|
|
301
|
|
|
/** |
|
302
|
|
|
* Test the property data |
|
303
|
|
|
*/ |
|
304
|
|
|
public function testObjectPropertyData() |
|
305
|
|
|
{ |
|
306
|
|
|
// $frontMarkResource = Resource::frontMark('file://'.__DIR__.DIRECTORY_SEPARATOR.'Fixture'.self::OBJECT_PATH.'.md'); |
|
307
|
|
|
$object = Object::load(getenv('REPOSITORY_URL').self::OBJECT_PATH); |
|
308
|
|
|
$this->assertTrue(is_array($object->getPropertyData())); |
|
309
|
|
|
// print_r($frontMarkResource->getData()); |
|
310
|
|
|
// print_r($object->getPropertyData()); |
|
311
|
|
|
} |
|
312
|
|
|
|
|
313
|
|
|
/** |
|
314
|
|
|
* Test mutation by altering metadata |
|
315
|
|
|
* |
|
316
|
|
|
* @expectedException \Apparat\Object\Domain\Model\Properties\OutOfBoundsException |
|
317
|
|
|
* @expectedExceptionCode 1462632083 |
|
318
|
|
|
*/ |
|
319
|
|
|
public function testMetaDataMutation() |
|
320
|
|
|
{ |
|
321
|
|
|
$object = Object::load(getenv('REPOSITORY_URL').self::OBJECT_PATH); |
|
322
|
|
|
$this->assertTrue(is_array($object->getPropertyData())); |
|
323
|
|
|
$objectUrl = $object->getAbsoluteUrl(); |
|
324
|
|
|
$objectRevision = $object->getRevision(); |
|
325
|
|
|
$object->setTitle($object->getTitle().' (mutated)'); |
|
326
|
|
|
$object->setSlug($object->getSlug().'-mutated'); |
|
327
|
|
|
$object->setDescription($object->getDescription().' (mutated)'); |
|
328
|
|
|
$object->setAbstract($object->getAbstract()); |
|
329
|
|
|
$object->setLicense(ltrim($object->getLicense().', ', ', ').'MIT'); |
|
330
|
|
|
$object->setKeywords(array_merge($object->getKeywords(), ['mutated'])); |
|
331
|
|
|
$object->setCategories($object->getCategories()); |
|
332
|
|
|
$this->assertEquals(preg_replace('%\/(.?+)$%', '/.$1-2', $objectUrl), $object->getAbsoluteUrl()); |
|
333
|
|
|
$this->assertEquals($objectRevision->getRevision() + 1, $object->getRevision()->getRevision()); |
|
334
|
|
|
$this->assertTrue($object->hasBeenModified()); |
|
335
|
|
|
$this->assertTrue($object->hasBeenMutated()); |
|
336
|
|
|
$this->assertEquals('MIT', $object->getLicense()); |
|
337
|
|
|
$this->assertEquals(ObjectTypes::PRIVACY_PRIVATE, $object->getPrivacy()); |
|
338
|
|
|
$this->assertEquals(ObjectTypes::PRIVACY_PUBLIC, |
|
339
|
|
|
$object->setPrivacy(ObjectTypes::PRIVACY_PUBLIC)->getPrivacy() |
|
340
|
|
|
); |
|
341
|
|
|
$object->setPrivacy('invalid'); |
|
342
|
|
|
} |
|
343
|
|
|
|
|
344
|
|
|
/** |
|
345
|
|
|
* Test change by altering relations |
|
346
|
|
|
*/ |
|
347
|
|
|
public function testRelationChange() |
|
348
|
|
|
{ |
|
349
|
|
|
// TODO: Implement |
|
350
|
|
|
} |
|
351
|
|
|
|
|
352
|
|
|
/** |
|
353
|
|
|
* Test to persist an earlier revision |
|
354
|
|
|
*/ |
|
355
|
|
|
public function testPersistEarlierRevision() |
|
356
|
|
|
{ |
|
357
|
|
|
// TODO |
|
358
|
|
|
} |
|
359
|
|
|
|
|
360
|
|
|
/** |
|
361
|
|
|
* Test the creation and persisting of an article object with failing file lock |
|
362
|
|
|
* |
|
363
|
|
|
* @expectedException \Apparat\Object\Domain\Repository\RuntimeException |
|
364
|
|
|
* @expectedExceptionCode 1461406873 |
|
365
|
|
|
*/ |
|
366
|
|
|
public function testCreateArticleObjectLockingImpossible() |
|
367
|
|
|
{ |
|
368
|
|
|
putenv('MOCK_FLOCK=1'); |
|
369
|
|
|
$this->testCreateAndPublishArticleObject(); |
|
370
|
|
|
} |
|
371
|
|
|
|
|
372
|
|
|
/** |
|
373
|
|
|
* Test the creation and persisting of an article object |
|
374
|
|
|
* |
|
375
|
|
|
* @expectedException \Apparat\Object\Domain\Model\Object\RuntimeException |
|
376
|
|
|
* @expectedExceptionCode 1462124874 |
|
377
|
|
|
*/ |
|
378
|
|
|
public function testCreateAndPublishArticleObject() |
|
379
|
|
|
{ |
|
380
|
|
|
// Create a temporary repository & article |
|
381
|
|
|
$tempRepoDirectory = sys_get_temp_dir().DIRECTORY_SEPARATOR.'temp-repo'; |
|
382
|
|
|
$payload = 'Revision 1 draft'; |
|
383
|
|
|
$creationDate = new \DateTimeImmutable('yesterday'); |
|
384
|
|
|
$article = $this->createRepositoryAndArticleObject($tempRepoDirectory, $payload, $creationDate); |
|
385
|
|
|
$this->assertInstanceOf(Article::class, $article); |
|
386
|
|
|
$this->assertEquals(MetaProperties::PRIVACY_PUBLIC, $article->getPrivacy()); |
|
387
|
|
|
$this->assertEquals($payload, $article->getPayload()); |
|
388
|
|
|
$this->assertFileExists($tempRepoDirectory. |
|
389
|
|
|
str_replace('/', DIRECTORY_SEPARATOR, $article->getRepositoryPath() |
|
390
|
|
|
->withExtension(getenv('OBJECT_RESOURCE_EXTENSION')))); |
|
391
|
|
|
$this->assertEquals($creationDate, $article->getCreated()); |
|
392
|
|
|
|
|
393
|
|
|
// Alter and persist the object |
|
394
|
|
|
$article->setPayload('Revision 1 draft (updated)'); |
|
395
|
|
|
$article->persist(); |
|
396
|
|
|
|
|
397
|
|
|
// Publish and persist the first object revision |
|
398
|
|
|
$article->setPayload('Revision 1'); |
|
399
|
|
|
$article->publish(); |
|
400
|
|
|
$article->persist(); |
|
401
|
|
|
|
|
402
|
|
|
// Draft a second object revision |
|
403
|
|
|
$article->setPayload('Revision 2 draft'); |
|
404
|
|
|
$article->persist(); |
|
405
|
|
|
|
|
406
|
|
|
// Publish and persist the second object revision |
|
407
|
|
|
$article->publish(); |
|
408
|
|
|
$article->setPayload('Revision 2'); |
|
409
|
|
|
$article->persist(); |
|
410
|
|
|
|
|
411
|
|
|
// Modify and persist a third object draft revision |
|
412
|
|
|
$article->setPayload('Revision 3 draft'); |
|
413
|
|
|
$article->persist(); |
|
414
|
|
|
|
|
415
|
|
|
// Wait for 2 seconds, modify and re-persist the object |
|
416
|
|
|
$now = time(); |
|
417
|
|
|
sleep(2); |
|
418
|
|
|
$article->setPayload('Revision 3 draft (delayed modification)'); |
|
419
|
|
|
$article->persist(); |
|
420
|
|
|
$this->assertGreaterThanOrEqual($now + 2, $article->getModified()->format('U')); |
|
421
|
|
|
|
|
422
|
|
|
// Iterate through all object revisions |
|
423
|
|
|
foreach ($article as $articleRevisionIndex => $articleRevision) { |
|
424
|
|
|
$this->assertInstanceOf(Article::class, $articleRevision); |
|
425
|
|
|
$this->assertInstanceOf(Revision::class, $articleRevisionIndex); |
|
426
|
|
|
} |
|
427
|
|
|
|
|
428
|
|
|
// Publish and persist a third object draft revision |
|
429
|
|
|
$article->publish()->persist(); |
|
430
|
|
|
|
|
431
|
|
|
// Delete the object (and all it's revisions) |
|
432
|
|
|
$article->delete()->persist(); |
|
433
|
|
|
|
|
434
|
|
|
// Undelete the object (and all it's revisions) |
|
435
|
|
|
$article->undelete()->persist(); |
|
436
|
|
|
|
|
437
|
|
|
// Use the first revision |
|
438
|
|
|
$article->rewind(); |
|
439
|
|
|
|
|
440
|
|
|
// Delete temporary repository |
|
441
|
|
|
$this->deleteRecursive($tempRepoDirectory); |
|
442
|
|
|
|
|
443
|
|
|
$article->persist(); |
|
444
|
|
|
} |
|
445
|
|
|
|
|
446
|
|
|
/** |
|
447
|
|
|
* Create a temporary repository and article object |
|
448
|
|
|
* |
|
449
|
|
|
* @param string $tempRepoDirectory Repository directory |
|
450
|
|
|
* @param string $payload Article payload |
|
451
|
|
|
* @param \DateTimeInterface $creationDate Article creation date |
|
452
|
|
|
* @return Article Article object |
|
453
|
|
|
*/ |
|
454
|
|
|
protected function createRepositoryAndArticleObject( |
|
455
|
|
|
$tempRepoDirectory, |
|
456
|
|
|
$payload, |
|
457
|
|
|
\DateTimeInterface $creationDate = null |
|
458
|
|
|
) { |
|
459
|
|
|
$fileRepository = \Apparat\Object\Infrastructure\Repository\Repository::create( |
|
460
|
|
|
getenv('REPOSITORY_URL'), |
|
461
|
|
|
[ |
|
462
|
|
|
'type' => FileAdapterStrategy::TYPE, |
|
463
|
|
|
'root' => $tempRepoDirectory, |
|
464
|
|
|
] |
|
465
|
|
|
); |
|
466
|
|
|
$this->assertInstanceOf(Repository::class, $fileRepository); |
|
467
|
|
|
$this->assertEquals($fileRepository->getAdapterStrategy()->getRepositorySize(), 0); |
|
468
|
|
|
|
|
469
|
|
|
// Create a new article in the temporary repository |
|
470
|
|
|
return $fileRepository->createObject(ObjectTypes::ARTICLE, $payload, [], $creationDate); |
|
471
|
|
|
} |
|
472
|
|
|
|
|
473
|
|
|
/** |
|
474
|
|
|
* Recursively register a directory and all nested files and directories for deletion on teardown |
|
475
|
|
|
* |
|
476
|
|
|
* @param string $directory Directory |
|
477
|
|
|
*/ |
|
478
|
|
|
protected function deleteRecursive($directory) |
|
479
|
|
|
{ |
|
480
|
|
|
$this->tmpFiles[] = $directory; |
|
481
|
|
|
foreach (scandir($directory) as $item) { |
|
482
|
|
|
if (!preg_match('%^\.+$%', $item)) { |
|
483
|
|
|
$path = $directory.DIRECTORY_SEPARATOR.$item; |
|
484
|
|
|
if (is_dir($path)) { |
|
485
|
|
|
$this->deleteRecursive($path); |
|
486
|
|
|
continue; |
|
487
|
|
|
} |
|
488
|
|
|
|
|
489
|
|
|
$this->tmpFiles[] = $path; |
|
490
|
|
|
} |
|
491
|
|
|
} |
|
492
|
|
|
} |
|
493
|
|
|
|
|
494
|
|
|
/** |
|
495
|
|
|
* Test the creation and persisting of an article object with failing file lock |
|
496
|
|
|
* |
|
497
|
|
|
* @expectedException \Apparat\Object\Infrastructure\Repository\RuntimeException |
|
498
|
|
|
* @expectedExceptionCode 1464269155 |
|
499
|
|
|
*/ |
|
500
|
|
|
public function testDeleteArticleObjectImpossible() |
|
501
|
|
|
{ |
|
502
|
|
|
putenv('MOCK_RENAME=1'); |
|
503
|
|
|
$this->tmpFiles[] = $tempRepoDirectory = sys_get_temp_dir().DIRECTORY_SEPARATOR.'temp-repo'; |
|
504
|
|
|
$article = $this->createRepositoryAndArticleObject($tempRepoDirectory, 'Revision 1 draft'); |
|
505
|
|
|
$this->deleteRecursive($tempRepoDirectory); |
|
506
|
|
|
$article->delete()->persist(); |
|
507
|
|
|
} |
|
508
|
|
|
|
|
509
|
|
|
/** |
|
510
|
|
|
* Test the creation and persisting of an article object with failing file lock |
|
511
|
|
|
* |
|
512
|
|
|
* @expectedException \Apparat\Object\Infrastructure\Repository\RuntimeException |
|
513
|
|
|
* @expectedExceptionCode 1464269179 |
|
514
|
|
|
*/ |
|
515
|
|
|
public function testUndeleteArticleObjectImpossible() |
|
516
|
|
|
{ |
|
517
|
|
|
$this->tmpFiles[] = $tempRepoDirectory = sys_get_temp_dir().DIRECTORY_SEPARATOR.'temp-repo'; |
|
518
|
|
|
$article = $this->createRepositoryAndArticleObject($tempRepoDirectory, 'Revision 1 draft'); |
|
519
|
|
|
$article->getRepositoryPath()->getRepository()->deleteObject($article); |
|
520
|
|
|
$this->deleteRecursive($tempRepoDirectory); |
|
521
|
|
|
putenv('MOCK_RENAME=1'); |
|
522
|
|
|
$article->undelete()->persist(); |
|
523
|
|
|
} |
|
524
|
|
|
} |
|
525
|
|
|
} |
|
526
|
|
|
|
|
527
|
|
|
namespace Apparat\Object\Infrastructure\Repository { |
|
528
|
|
|
|
|
529
|
|
|
/** |
|
530
|
|
|
* Mocked version of the native flock() function |
|
531
|
|
|
* |
|
532
|
|
|
* @param resource $handle An open file pointer. |
|
533
|
|
|
* @param int $operation Operation is one of the following: LOCK_SH to acquire a shared lock (reader). |
|
534
|
|
|
* @param int $wouldblock The optional third argument is set to true if the lock would block (EWOULDBLOCK errno |
|
535
|
|
|
* condition). |
|
536
|
|
|
* @return bool True on success or False on failure. |
|
537
|
|
|
*/ |
|
538
|
|
|
function flock($handle, $operation, &$wouldblock = null) |
|
539
|
|
|
{ |
|
540
|
|
|
return (getenv('MOCK_FLOCK') != 1) ? \flock($handle, $operation, $wouldblock) : false; |
|
541
|
|
|
} |
|
542
|
|
|
|
|
543
|
|
|
/** |
|
544
|
|
|
* Mocked version of the native rename() function |
|
545
|
|
|
* |
|
546
|
|
|
* @param string $oldname The old name. The wrapper used in oldname must match the wrapper used in newname. |
|
547
|
|
|
* @param @param string $newname The new name. |
|
548
|
|
|
* @return bool true on success or false on failure. |
|
549
|
|
|
*/ |
|
550
|
|
|
function rename($oldname, $newname) |
|
551
|
|
|
{ |
|
552
|
|
|
return (getenv('MOCK_RENAME') != 1) ? \rename($oldname, $newname) : false; |
|
553
|
|
|
} |
|
554
|
|
|
} |
|
555
|
|
|
|