Completed
Push — EZP-30427 ( d7269c...7404d5 )
by
unknown
15:29
created

createUserWithVersionReadLimitations()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 16

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 16
rs 9.7333
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * File containing the ContentServiceTest class.
5
 *
6
 * @copyright Copyright (C) eZ Systems AS. All rights reserved.
7
 * @license For full copyright and license information view LICENSE file distributed with this source code.
8
 */
9
namespace eZ\Publish\API\Repository\Tests;
10
11
use eZ\Publish\API\Repository\Exceptions\BadStateException;
12
use eZ\Publish\API\Repository\Exceptions\ContentFieldValidationException;
13
use eZ\Publish\API\Repository\Exceptions\InvalidArgumentException as APIInvalidArgumentException;
14
use eZ\Publish\API\Repository\Values\Content\Content;
15
use eZ\Publish\API\Repository\Exceptions\UnauthorizedException;
16
use eZ\Publish\API\Repository\Values\Content\ContentCreateStruct;
17
use eZ\Publish\API\Repository\Values\Content\ContentInfo;
18
use eZ\Publish\API\Repository\Values\Content\ContentMetadataUpdateStruct;
19
use eZ\Publish\API\Repository\Values\Content\Field;
20
use eZ\Publish\API\Repository\Values\Content\Location;
21
use eZ\Publish\API\Repository\Values\Content\DraftList\Item\UnauthorizedContentDraftListItem;
22
use eZ\Publish\API\Repository\Values\Content\URLAlias;
23
use eZ\Publish\API\Repository\Values\Content\Relation;
24
use eZ\Publish\API\Repository\Values\Content\VersionInfo;
25
use eZ\Publish\API\Repository\Values\User\Limitation\SectionLimitation;
26
use eZ\Publish\API\Repository\Values\User\Limitation\LocationLimitation;
27
use eZ\Publish\API\Repository\Values\User\Limitation\ContentTypeLimitation;
28
use eZ\Publish\API\Repository\Exceptions\NotFoundException;
29
use DOMDocument;
30
use Exception;
31
use eZ\Publish\API\Repository\Values\User\User;
32
use eZ\Publish\Core\Base\Exceptions\UnauthorizedException as CoreUnauthorizedException;
33
use eZ\Publish\Core\Repository\Values\Content\ContentUpdateStruct;
34
use InvalidArgumentException;
35
36
/**
37
 * Test case for operations in the ContentService using in memory storage.
38
 *
39
 * @see \eZ\Publish\API\Repository\ContentService
40
 * @group content
41
 */
42
class ContentServiceTest extends BaseContentServiceTest
43
{
44
    private const ADMINISTRATORS_USER_GROUP_NAME = 'Administrators';
45
    private const ADMINISTRATORS_USER_GROUP_ID = 12;
46
    private const ADMINISTRATORS_USER_GROUP_LOCATION_ID = 13;
47
48
    private const WRITERS_USER_GROUP_NAME = 'Writers';
49
50
    private const MEMBERS_USER_GROUP_ID = 11;
51
52
    private const MEDIA_CONTENT_ID = 41;
53
54
    private const MEDIA_REMOTE_ID = 'a6e35cbcb7cd6ae4b691f3eee30cd262';
55
    private const DEMO_DESIGN_REMOTE_ID = '8b8b22fe3c6061ed500fbd2b377b885f';
56
57
    private const FORUM_IDENTIFIER = 'forum';
58
59
    private const ENG_US = 'eng-US';
60
    private const GER_DE = 'ger-DE';
61
    private const ENG_GB = 'eng-GB';
62
63
    /** @var \eZ\Publish\API\Repository\PermissionResolver */
64
    private $permissionResolver;
65
66
    /** @var \eZ\Publish\API\Repository\ContentService */
67
    private $contentService;
68
69
    /** @var \eZ\Publish\API\Repository\LocationService */
70
    private $locationService;
71
72
    public function setUp(): void
73
    {
74
        parent::setUp();
75
76
        $repository = $this->getRepository();
77
        $this->permissionResolver = $repository->getPermissionResolver();
78
        $this->contentService = $repository->getContentService();
79
        $this->locationService = $repository->getLocationService();
80
    }
81
82
    /**
83
     * Test for the newContentCreateStruct() method.
84
     *
85
     * @see \eZ\Publish\API\Repository\ContentService::newContentCreateStruct()
86
     * @depends eZ\Publish\API\Repository\Tests\ContentTypeServiceTest::testLoadContentTypeByIdentifier
87
     * @group user
88
     * @group field-type
89
     */
90
    public function testNewContentCreateStruct()
91
    {
92
        $contentTypeService = $this->getRepository()->getContentTypeService();
93
        $contentType = $contentTypeService->loadContentTypeByIdentifier(self::FORUM_IDENTIFIER);
94
95
        $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
96
97
        $this->assertInstanceOf(ContentCreateStruct::class, $contentCreate);
98
    }
99
100
    /**
101
     * Test for the createContent() method.
102
     *
103
     * @return \eZ\Publish\API\Repository\Values\Content\Content
104
     *
105
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
106
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testNewContentCreateStruct
107
     * @group user
108
     * @group field-type
109
     */
110
    public function testCreateContent()
111
    {
112
        if ($this->isVersion4()) {
113
            $this->markTestSkipped('This test requires eZ Publish 5');
114
        }
115
116
        $contentTypeService = $this->getRepository()->getContentTypeService();
117
118
        $contentType = $contentTypeService->loadContentTypeByIdentifier(self::FORUM_IDENTIFIER);
119
120
        $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
121
        $contentCreate->setField('name', 'My awesome forum');
122
123
        $contentCreate->remoteId = 'abcdef0123456789abcdef0123456789';
124
        $contentCreate->alwaysAvailable = true;
125
126
        $content = $this->contentService->createContent($contentCreate);
127
128
        $this->assertInstanceOf(Content::class, $content);
129
130
        return $content;
131
    }
132
133
    /**
134
     * Test for the createContent() method.
135
     *
136
     * Tests made for issue #EZP-20955 where Anonymous user is granted access to create content
137
     * and should have access to do that.
138
     *
139
     * @return \eZ\Publish\API\Repository\Values\Content\Content
140
     *
141
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
142
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testNewContentCreateStruct
143
     * @group user
144
     * @group field-type
145
     */
146
    public function testCreateContentAndPublishWithPrivilegedAnonymousUser()
147
    {
148
        if ($this->isVersion4()) {
149
            $this->markTestSkipped('This test requires eZ Publish 5');
150
        }
151
152
        $anonymousUserId = $this->generateId('user', 10);
153
154
        $repository = $this->getRepository();
155
        $contentTypeService = $this->getRepository()->getContentTypeService();
156
        $roleService = $repository->getRoleService();
157
158
        // Give Anonymous user role additional rights
159
        $role = $roleService->loadRoleByIdentifier('Anonymous');
160
        $roleDraft = $roleService->createRoleDraft($role);
161
        $policyCreateStruct = $roleService->newPolicyCreateStruct('content', 'create');
162
        $policyCreateStruct->addLimitation(new SectionLimitation(['limitationValues' => [1]]));
163
        $policyCreateStruct->addLimitation(new LocationLimitation(['limitationValues' => [2]]));
164
        $policyCreateStruct->addLimitation(new ContentTypeLimitation(['limitationValues' => [1]]));
165
        $roleDraft = $roleService->addPolicyByRoleDraft($roleDraft, $policyCreateStruct);
166
167
        $policyCreateStruct = $roleService->newPolicyCreateStruct('content', 'publish');
168
        $policyCreateStruct->addLimitation(new SectionLimitation(['limitationValues' => [1]]));
169
        $policyCreateStruct->addLimitation(new LocationLimitation(['limitationValues' => [2]]));
170
        $policyCreateStruct->addLimitation(new ContentTypeLimitation(['limitationValues' => [1]]));
171
        $roleDraft = $roleService->addPolicyByRoleDraft($roleDraft, $policyCreateStruct);
172
        $roleService->publishRoleDraft($roleDraft);
173
174
        // Set Anonymous user as current
175
        $repository->getPermissionResolver()->setCurrentUserReference($repository->getUserService()->loadUser($anonymousUserId));
176
177
        // Create a new content object:
178
        $contentCreate = $this->contentService->newContentCreateStruct(
179
            $contentTypeService->loadContentTypeByIdentifier('folder'),
180
            self::ENG_GB
181
        );
182
183
        $contentCreate->setField('name', 'Folder 1');
184
185
        $content = $this->contentService->createContent(
186
            $contentCreate,
187
            [$this->locationService->newLocationCreateStruct(2)]
188
        );
189
190
        $this->contentService->publishVersion(
191
            $content->getVersionInfo()
192
        );
193
    }
194
195
    /**
196
     * Test for the createContent() method.
197
     *
198
     * @param \eZ\Publish\API\Repository\Values\Content\Content $content
199
     *
200
     * @return \eZ\Publish\API\Repository\Values\Content\Content
201
     *
202
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
203
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
204
     */
205
    public function testCreateContentSetsContentInfo($content)
206
    {
207
        $this->assertInstanceOf(ContentInfo::class, $content->contentInfo);
208
209
        return $content;
210
    }
211
212
    /**
213
     * Test for the createContent() method.
214
     *
215
     * @param \eZ\Publish\API\Repository\Values\Content\Content $content
216
     *
217
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
218
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentSetsContentInfo
219
     */
220
    public function testCreateContentSetsExpectedContentInfo($content)
221
    {
222
        $this->assertEquals(
223
            [
224
                $content->id,
225
                28, // id of content type "forum"
226
                true,
227
                1,
228
                'abcdef0123456789abcdef0123456789',
229
                self::ENG_US,
230
                $this->getRepository()->getCurrentUser()->id,
0 ignored issues
show
Deprecated Code introduced by
The method eZ\Publish\API\Repositor...itory::getCurrentUser() has been deprecated with message: since 6.6, to be removed. Use PermissionResolver::getCurrentUserReference() instead. Get current user. Loads the full user object if not already loaded, if you only need to know user id use {@see getCurrentUserReference()}

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
231
                false,
232
                null,
233
                // Main Location id for unpublished Content should be null
234
                null,
235
            ],
236
            [
237
                $content->contentInfo->id,
238
                $content->contentInfo->contentTypeId,
239
                $content->contentInfo->alwaysAvailable,
240
                $content->contentInfo->currentVersionNo,
241
                $content->contentInfo->remoteId,
242
                $content->contentInfo->mainLanguageCode,
243
                $content->contentInfo->ownerId,
244
                $content->contentInfo->published,
245
                $content->contentInfo->publishedDate,
246
                $content->contentInfo->mainLocationId,
247
            ]
248
        );
249
    }
250
251
    /**
252
     * Test for the createContent() method.
253
     *
254
     * @param \eZ\Publish\API\Repository\Values\Content\Content $content
255
     *
256
     * @return \eZ\Publish\API\Repository\Values\Content\Content
257
     *
258
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
259
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
260
     */
261
    public function testCreateContentSetsVersionInfo($content)
262
    {
263
        $this->assertInstanceOf(VersionInfo::class, $content->getVersionInfo());
264
265
        return $content;
266
    }
267
268
    /**
269
     * Test for the createContent() method.
270
     *
271
     * @param \eZ\Publish\API\Repository\Values\Content\Content $content
272
     *
273
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
274
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentSetsVersionInfo
275
     */
276
    public function testCreateContentSetsExpectedVersionInfo($content)
277
    {
278
        $this->assertEquals(
279
            [
280
                'status' => VersionInfo::STATUS_DRAFT,
281
                'versionNo' => 1,
282
                'creatorId' => $this->getRepository()->getCurrentUser()->id,
0 ignored issues
show
Deprecated Code introduced by
The method eZ\Publish\API\Repositor...itory::getCurrentUser() has been deprecated with message: since 6.6, to be removed. Use PermissionResolver::getCurrentUserReference() instead. Get current user. Loads the full user object if not already loaded, if you only need to know user id use {@see getCurrentUserReference()}

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
283
                'initialLanguageCode' => self::ENG_US,
284
            ],
285
            [
286
                'status' => $content->getVersionInfo()->status,
287
                'versionNo' => $content->getVersionInfo()->versionNo,
288
                'creatorId' => $content->getVersionInfo()->creatorId,
289
                'initialLanguageCode' => $content->getVersionInfo()->initialLanguageCode,
290
            ]
291
        );
292
        $this->assertTrue($content->getVersionInfo()->isDraft());
293
        $this->assertFalse($content->getVersionInfo()->isPublished());
294
        $this->assertFalse($content->getVersionInfo()->isArchived());
295
    }
296
297
    /**
298
     * Test for the createContent() method.
299
     *
300
     * @param \eZ\Publish\API\Repository\Values\Content\Content $content
301
     *
302
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
303
     * @depends testCreateContent
304
     */
305
    public function testCreateContentSetsExpectedContentType($content)
306
    {
307
        $contentType = $content->getContentType();
308
309
        $this->assertEquals(
310
            [
311
                $contentType->id,
312
                // Won't match as it's set to true in createContentDraftVersion1()
313
                //$contentType->defaultAlwaysAvailable,
314
                //$contentType->defaultSortField,
315
                //$contentType->defaultSortOrder,
316
            ],
317
            [
318
                $content->contentInfo->contentTypeId,
319
                //$content->contentInfo->alwaysAvailable,
320
                //$location->sortField,
321
                //$location->sortOrder,
322
            ]
323
        );
324
    }
325
326
    /**
327
     * Test for the createContent() method.
328
     *
329
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
330
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
331
     */
332
    public function testCreateContentThrowsInvalidArgumentException()
333
    {
334
        if ($this->isVersion4()) {
335
            $this->markTestSkipped('This test requires eZ Publish 5');
336
        }
337
338
        $contentTypeService = $this->getRepository()->getContentTypeService();
339
340
        $contentType = $contentTypeService->loadContentTypeByIdentifier(self::FORUM_IDENTIFIER);
341
342
        $contentCreate1 = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
343
        $contentCreate1->setField('name', 'An awesome Sidelfingen forum');
344
345
        $contentCreate1->remoteId = 'abcdef0123456789abcdef0123456789';
346
        $contentCreate1->alwaysAvailable = true;
347
348
        $draft = $this->contentService->createContent($contentCreate1);
349
        $this->contentService->publishVersion($draft->versionInfo);
350
351
        $contentCreate2 = $this->contentService->newContentCreateStruct($contentType, self::ENG_GB);
352
        $contentCreate2->setField('name', 'An awesome Bielefeld forum');
353
354
        $contentCreate2->remoteId = 'abcdef0123456789abcdef0123456789';
355
        $contentCreate2->alwaysAvailable = false;
356
357
        $this->expectException(APIInvalidArgumentException::class);
358
        $this->contentService->createContent($contentCreate2);
359
    }
360
361
    /**
362
     * Test for the createContent() method.
363
     *
364
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
365
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
366
     */
367
    public function testCreateContentThrowsInvalidArgumentExceptionOnFieldTypeNotAccept()
368
    {
369
        $contentTypeService = $this->getRepository()->getContentTypeService();
370
371
        $contentType = $contentTypeService->loadContentTypeByIdentifier(self::FORUM_IDENTIFIER);
372
373
        $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
374
        // The name field does only accept strings and null as its values
375
        $contentCreate->setField('name', new \stdClass());
376
377
        $this->expectException(APIInvalidArgumentException::class);
378
        $this->contentService->createContent($contentCreate);
379
    }
380
381
    /**
382
     * Test for the createContent() method.
383
     *
384
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
385
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
386
     */
387
    public function testCreateContentThrowsContentFieldValidationException()
388
    {
389
        $contentTypeService = $this->getRepository()->getContentTypeService();
390
391
        $contentType = $contentTypeService->loadContentTypeByIdentifier('folder');
392
393
        $contentCreate1 = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
394
        $contentCreate1->setField('name', 'An awesome Sidelfingen folder');
395
        // Violates string length constraint
396
        $contentCreate1->setField('short_name', str_repeat('a', 200));
397
398
        $this->expectException(ContentFieldValidationException::class);
399
400
        // Throws ContentFieldValidationException, since short_name does not pass validation of the string length validator
401
        $this->contentService->createContent($contentCreate1);
402
    }
403
404
    /**
405
     * Test for the createContent() method.
406
     *
407
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
408
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
409
     */
410
    public function testCreateContentRequiredFieldMissing()
411
    {
412
        $contentTypeService = $this->getRepository()->getContentTypeService();
413
        $contentType = $contentTypeService->loadContentTypeByIdentifier(self::FORUM_IDENTIFIER);
414
415
        $contentCreate1 = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
416
        // Required field "name" is not set
417
418
        $this->expectException(ContentFieldValidationException::class);
419
420
        // Throws a ContentFieldValidationException, since a required field is missing
421
        $this->contentService->createContent($contentCreate1);
422
    }
423
424
    /**
425
     * Test for the createContent() method.
426
     *
427
     * NOTE: We have bidirectional dependencies between the ContentService and
428
     * the LocationService, so that we cannot use PHPUnit's test dependencies
429
     * here.
430
     *
431
     * @see \eZ\Publish\API\Repository\ContentService::createContent($contentCreateStruct, $locationCreateStructs)
432
     * @depend(s) eZ\Publish\API\Repository\Tests\LocationServiceTest::testCreateLocation
433
     * @depend(s) eZ\Publish\API\Repository\Tests\LocationServiceTest::testLoadLocationByRemoteId
434
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
435
     * @group user
436
     */
437
    public function testCreateContentWithLocationCreateParameterDoesNotCreateLocationImmediately()
438
    {
439
        $this->createContentDraftVersion1();
440
441
        $this->expectException(NotFoundException::class);
442
443
        // The location will not have been created, yet, so this throws an exception
444
        $this->locationService->loadLocationByRemoteId('0123456789abcdef0123456789abcdef');
445
    }
446
447
    /**
448
     * Test for the createContent() method.
449
     *
450
     * @see \eZ\Publish\API\Repository\ContentService::createContent($contentCreateStruct, $locationCreateStructs)
451
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentWithLocationCreateParameterDoesNotCreateLocationImmediately
452
     */
453
    public function testCreateContentThrowsInvalidArgumentExceptionWithLocationCreateParameter()
454
    {
455
        $parentLocationId = $this->generateId('location', 56);
456
        // $parentLocationId is a valid location ID
457
458
        $contentTypeService = $this->getRepository()->getContentTypeService();
459
460
        $contentType = $contentTypeService->loadContentTypeByIdentifier(self::FORUM_IDENTIFIER);
461
462
        // Configure new locations
463
        $locationCreate1 = $this->locationService->newLocationCreateStruct($parentLocationId);
464
465
        $locationCreate1->priority = 23;
466
        $locationCreate1->hidden = true;
467
        $locationCreate1->remoteId = '0123456789abcdef0123456789aaaaaa';
468
        $locationCreate1->sortField = Location::SORT_FIELD_NODE_ID;
469
        $locationCreate1->sortOrder = Location::SORT_ORDER_DESC;
470
471
        $locationCreate2 = $this->locationService->newLocationCreateStruct($parentLocationId);
472
473
        $locationCreate2->priority = 42;
474
        $locationCreate2->hidden = true;
475
        $locationCreate2->remoteId = '0123456789abcdef0123456789bbbbbb';
476
        $locationCreate2->sortField = Location::SORT_FIELD_NODE_ID;
477
        $locationCreate2->sortOrder = Location::SORT_ORDER_DESC;
478
479
        // Configure new content object
480
        $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
481
482
        $contentCreate->setField('name', 'A awesome Sindelfingen forum');
483
        $contentCreate->remoteId = 'abcdef0123456789abcdef0123456789';
484
        $contentCreate->alwaysAvailable = true;
485
486
        // Create new content object under the specified location
487
        $draft = $this->contentService->createContent(
488
            $contentCreate,
489
            [$locationCreate1]
490
        );
491
        $this->contentService->publishVersion($draft->versionInfo);
492
493
        $this->expectException(APIInvalidArgumentException::class);
494
        // Content remoteId already exists,
495
        $this->contentService->createContent(
496
            $contentCreate,
497
            [$locationCreate2]
498
        );
499
    }
500
501
    /**
502
     * Test for the loadContentInfo() method.
503
     *
504
     * @see \eZ\Publish\API\Repository\ContentService::loadContentInfo()
505
     * @group user
506
     */
507
    public function testLoadContentInfo()
508
    {
509
        $mediaFolderId = $this->generateId('object', self::MEDIA_CONTENT_ID);
510
511
        // Load the ContentInfo for "Media" folder
512
        $contentInfo = $this->contentService->loadContentInfo($mediaFolderId);
513
514
        $this->assertInstanceOf(ContentInfo::class, $contentInfo);
515
516
        return $contentInfo;
517
    }
518
519
    /**
520
     * Test for the returned value of the loadContentInfo() method.
521
     *
522
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
523
     * @covers \eZ\Publish\API\Repository\ContentService::loadContentInfo
524
     *
525
     * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo
526
     */
527
    public function testLoadContentInfoSetsExpectedContentInfo(ContentInfo $contentInfo)
528
    {
529
        $this->assertPropertiesCorrectUnsorted(
530
            $this->getExpectedMediaContentInfoProperties(),
531
            $contentInfo
532
        );
533
    }
534
535
    /**
536
     * Test for the loadContentInfo() method.
537
     *
538
     * @see \eZ\Publish\API\Repository\ContentService::loadContentInfo()
539
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
540
     */
541
    public function testLoadContentInfoThrowsNotFoundException()
542
    {
543
        $nonExistentContentId = $this->generateId('object', self::DB_INT_MAX);
544
545
        $this->expectException(NotFoundException::class);
546
547
        $this->contentService->loadContentInfo($nonExistentContentId);
548
    }
549
550
    /**
551
     * Test for the loadContentInfoList() method.
552
     *
553
     * @see \eZ\Publish\API\Repository\ContentService::loadContentInfoList()
554
     */
555
    public function testLoadContentInfoList()
556
    {
557
        $mediaFolderId = $this->generateId('object', self::MEDIA_CONTENT_ID);
558
        $list = $this->contentService->loadContentInfoList([$mediaFolderId]);
559
560
        $this->assertCount(1, $list);
561
        $this->assertEquals([$mediaFolderId], array_keys($list), 'Array key was not content id');
562
        $this->assertInstanceOf(
563
            ContentInfo::class,
564
            $list[$mediaFolderId]
565
        );
566
    }
567
568
    /**
569
     * Test for the loadContentInfoList() method.
570
     *
571
     * @see \eZ\Publish\API\Repository\ContentService::loadContentInfoList()
572
     * @depends testLoadContentInfoList
573
     */
574
    public function testLoadContentInfoListSkipsNotFoundItems()
575
    {
576
        $nonExistentContentId = $this->generateId('object', self::DB_INT_MAX);
577
        $list = $this->contentService->loadContentInfoList([$nonExistentContentId]);
578
579
        $this->assertCount(0, $list);
580
    }
581
582
    /**
583
     * Test for the loadContentInfoByRemoteId() method.
584
     *
585
     * @see \eZ\Publish\API\Repository\ContentService::loadContentInfoByRemoteId()
586
     */
587
    public function testLoadContentInfoByRemoteId()
588
    {
589
        // Load the ContentInfo for "Media" folder
590
        $contentInfo = $this->contentService->loadContentInfoByRemoteId('faaeb9be3bd98ed09f606fc16d144eca');
591
592
        $this->assertInstanceOf(ContentInfo::class, $contentInfo);
593
594
        return $contentInfo;
595
    }
596
597
    /**
598
     * Test for the returned value of the loadContentInfoByRemoteId() method.
599
     *
600
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfoByRemoteId
601
     * @covers \eZ\Publish\API\Repository\ContentService::loadContentInfoByRemoteId
602
     *
603
     * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo
604
     */
605
    public function testLoadContentInfoByRemoteIdSetsExpectedContentInfo(ContentInfo $contentInfo)
606
    {
607
        $this->assertPropertiesCorrectUnsorted(
608
            [
609
                'id' => 10,
610
                'contentTypeId' => 4,
611
                'name' => 'Anonymous User',
612
                'sectionId' => 2,
613
                'currentVersionNo' => 2,
614
                'published' => true,
615
                'ownerId' => 14,
616
                'modificationDate' => $this->createDateTime(1072180405),
617
                'publishedDate' => $this->createDateTime(1033920665),
618
                'alwaysAvailable' => 1,
619
                'remoteId' => 'faaeb9be3bd98ed09f606fc16d144eca',
620
                'mainLanguageCode' => self::ENG_US,
621
                'mainLocationId' => 45,
622
            ],
623
            $contentInfo
624
        );
625
    }
626
627
    /**
628
     * Test for the loadContentInfoByRemoteId() method.
629
     *
630
     * @see \eZ\Publish\API\Repository\ContentService::loadContentInfoByRemoteId()
631
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfoByRemoteId
632
     */
633
    public function testLoadContentInfoByRemoteIdThrowsNotFoundException()
634
    {
635
        $this->expectException(NotFoundException::class);
636
637
        $this->contentService->loadContentInfoByRemoteId('abcdefghijklmnopqrstuvwxyz0123456789');
638
    }
639
640
    /**
641
     * Test for the loadVersionInfo() method.
642
     *
643
     * @see \eZ\Publish\API\Repository\ContentService::loadVersionInfo()
644
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
645
     * @group user
646
     */
647
    public function testLoadVersionInfo()
648
    {
649
        $mediaFolderId = $this->generateId('object', self::MEDIA_CONTENT_ID);
650
        // $mediaFolderId contains the ID of the "Media" folder
651
652
        // Load the ContentInfo for "Media" folder
653
        $contentInfo = $this->contentService->loadContentInfo($mediaFolderId);
654
655
        // Now load the current version info of the "Media" folder
656
        $versionInfo = $this->contentService->loadVersionInfo($contentInfo);
657
658
        $this->assertInstanceOf(
659
            VersionInfo::class,
660
            $versionInfo
661
        );
662
    }
663
664
    /**
665
     * Test for the loadVersionInfoById() method.
666
     *
667
     * @see \eZ\Publish\API\Repository\ContentService::loadVersionInfoById()
668
     */
669
    public function testLoadVersionInfoById()
670
    {
671
        $mediaFolderId = $this->generateId('object', self::MEDIA_CONTENT_ID);
672
        // $mediaFolderId contains the ID of the "Media" folder
673
674
        // Load the VersionInfo for "Media" folder
675
        $versionInfo = $this->contentService->loadVersionInfoById($mediaFolderId);
676
677
        $this->assertInstanceOf(
678
            VersionInfo::class,
679
            $versionInfo
680
        );
681
682
        return $versionInfo;
683
    }
684
685
    /**
686
     * Test for the returned value of the loadVersionInfoById() method.
687
     *
688
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadVersionInfoById
689
     * @covers \eZ\Publish\Core\Repository\ContentService::loadVersionInfoById
690
     *
691
     * @param \eZ\Publish\API\Repository\Values\Content\VersionInfo $versionInfo
692
     */
693
    public function testLoadVersionInfoByIdSetsExpectedVersionInfo(VersionInfo $versionInfo)
694
    {
695
        $this->assertPropertiesCorrect(
696
            [
697
                'names' => [
698
                    self::ENG_US => 'Media',
699
                ],
700
                'contentInfo' => new ContentInfo($this->getExpectedMediaContentInfoProperties()),
701
                'id' => 472,
702
                'versionNo' => 1,
703
                'modificationDate' => $this->createDateTime(1060695457),
704
                'creatorId' => 14,
705
                'creationDate' => $this->createDateTime(1060695450),
706
                'status' => VersionInfo::STATUS_PUBLISHED,
707
                'initialLanguageCode' => self::ENG_US,
708
                'languageCodes' => [
709
                    self::ENG_US,
710
                ],
711
            ],
712
            $versionInfo
713
        );
714
        $this->assertTrue($versionInfo->isPublished());
715
        $this->assertFalse($versionInfo->isDraft());
716
        $this->assertFalse($versionInfo->isArchived());
717
    }
718
719
    /**
720
     * Test for the loadVersionInfoById() method.
721
     *
722
     * @see \eZ\Publish\API\Repository\ContentService::loadVersionInfoById()
723
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadVersionInfoById
724
     */
725
    public function testLoadVersionInfoByIdThrowsNotFoundException()
726
    {
727
        $nonExistentContentId = $this->generateId('object', self::DB_INT_MAX);
728
729
        $this->expectException(NotFoundException::class);
730
731
        $this->contentService->loadVersionInfoById($nonExistentContentId);
732
    }
733
734
    /**
735
     * Test for the loadContentByContentInfo() method.
736
     *
737
     * @see \eZ\Publish\API\Repository\ContentService::loadContentByContentInfo()
738
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
739
     */
740
    public function testLoadContentByContentInfo()
741
    {
742
        $mediaFolderId = $this->generateId('object', self::MEDIA_CONTENT_ID);
743
        // $mediaFolderId contains the ID of the "Media" folder
744
745
        // Load the ContentInfo for "Media" folder
746
        $contentInfo = $this->contentService->loadContentInfo($mediaFolderId);
747
748
        // Now load the current content version for the info instance
749
        $content = $this->contentService->loadContentByContentInfo($contentInfo);
750
751
        $this->assertInstanceOf(
752
            Content::class,
753
            $content
754
        );
755
    }
756
757
    /**
758
     * Test for the loadContentByVersionInfo() method.
759
     *
760
     * @see \eZ\Publish\API\Repository\ContentService::loadContentByVersionInfo()
761
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadVersionInfo
762
     */
763
    public function testLoadContentByVersionInfo()
764
    {
765
        $mediaFolderId = $this->generateId('object', self::MEDIA_CONTENT_ID);
766
        // $mediaFolderId contains the ID of the "Media" folder
767
768
        // Load the ContentInfo for "Media" folder
769
        $contentInfo = $this->contentService->loadContentInfo($mediaFolderId);
770
771
        // Load the current VersionInfo
772
        $versionInfo = $this->contentService->loadVersionInfo($contentInfo);
773
774
        // Now load the current content version for the info instance
775
        $content = $this->contentService->loadContentByVersionInfo($versionInfo);
776
777
        $this->assertInstanceOf(
778
            Content::class,
779
            $content
780
        );
781
    }
782
783
    /**
784
     * Test for the loadContent() method.
785
     *
786
     * @see \eZ\Publish\API\Repository\ContentService::loadContent()
787
     * @group user
788
     * @group field-type
789
     */
790
    public function testLoadContent()
791
    {
792
        $mediaFolderId = $this->generateId('object', self::MEDIA_CONTENT_ID);
793
        // $mediaFolderId contains the ID of the "Media" folder
794
795
        // Load the Content for "Media" folder, any language and current version
796
        $content = $this->contentService->loadContent($mediaFolderId);
797
798
        $this->assertInstanceOf(
799
            Content::class,
800
            $content
801
        );
802
    }
803
804
    /**
805
     * Test for the loadContent() method.
806
     *
807
     * @see \eZ\Publish\API\Repository\ContentService::loadContent()
808
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
809
     */
810
    public function testLoadContentThrowsNotFoundException()
811
    {
812
        $nonExistentContentId = $this->generateId('object', self::DB_INT_MAX);
813
814
        $this->expectException(NotFoundException::class);
815
816
        $this->contentService->loadContent($nonExistentContentId);
817
    }
818
819
    /**
820
     * Data provider for testLoadContentByRemoteId().
821
     *
822
     * @return array
823
     */
824
    public function contentRemoteIdVersionLanguageProvider()
825
    {
826
        return [
827
            ['f5c88a2209584891056f987fd965b0ba', null, null],
828
            ['f5c88a2209584891056f987fd965b0ba', [self::ENG_US], null],
829
            ['f5c88a2209584891056f987fd965b0ba', null, 1],
830
            ['f5c88a2209584891056f987fd965b0ba', [self::ENG_US], 1],
831
            [self::MEDIA_REMOTE_ID, null, null],
832
            [self::MEDIA_REMOTE_ID, [self::ENG_US], null],
833
            [self::MEDIA_REMOTE_ID, null, 1],
834
            [self::MEDIA_REMOTE_ID, [self::ENG_US], 1],
835
        ];
836
    }
837
838
    /**
839
     * Test for the loadContentByRemoteId() method.
840
     *
841
     * @covers \eZ\Publish\API\Repository\ContentService::loadContentByRemoteId
842
     * @dataProvider contentRemoteIdVersionLanguageProvider
843
     *
844
     * @param string $remoteId
845
     * @param array|null $languages
846
     * @param int $versionNo
847
     */
848
    public function testLoadContentByRemoteId($remoteId, $languages, $versionNo)
849
    {
850
        $content = $this->contentService->loadContentByRemoteId($remoteId, $languages, $versionNo);
851
852
        $this->assertInstanceOf(
853
            Content::class,
854
            $content
855
        );
856
857
        $this->assertEquals($remoteId, $content->contentInfo->remoteId);
858
        if ($languages !== null) {
859
            $this->assertEquals($languages, $content->getVersionInfo()->languageCodes);
860
        }
861
        $this->assertEquals($versionNo ?: 1, $content->getVersionInfo()->versionNo);
862
    }
863
864
    /**
865
     * Test for the loadContentByRemoteId() method.
866
     *
867
     * @see \eZ\Publish\API\Repository\ContentService::loadContentByRemoteId()
868
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentByRemoteId
869
     */
870
    public function testLoadContentByRemoteIdThrowsNotFoundException()
871
    {
872
        $this->expectException(NotFoundException::class);
873
874
        // This call will fail with a "NotFoundException", because no content object exists for the given remoteId
875
        $this->contentService->loadContentByRemoteId('a1b1c1d1e1f1a2b2c2d2e2f2a3b3c3d3');
876
    }
877
878
    /**
879
     * Test for the publishVersion() method.
880
     *
881
     * @return \eZ\Publish\API\Repository\Values\Content\Content
882
     *
883
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
884
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
885
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
886
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadVersionInfo
887
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentWithLocationCreateParameterDoesNotCreateLocationImmediately
888
     * @group user
889
     * @group field-type
890
     */
891
    public function testPublishVersion()
892
    {
893
        $time = time();
894
        $content = $this->createContentVersion1();
895
896
        $this->assertInstanceOf(Content::class, $content);
897
        $this->assertTrue($content->contentInfo->published);
898
        $this->assertEquals(VersionInfo::STATUS_PUBLISHED, $content->versionInfo->status);
899
        $this->assertGreaterThanOrEqual($time, $content->contentInfo->publishedDate->getTimestamp());
900
        $this->assertGreaterThanOrEqual($time, $content->contentInfo->modificationDate->getTimestamp());
901
        $this->assertTrue($content->versionInfo->isPublished());
902
        $this->assertFalse($content->versionInfo->isDraft());
903
        $this->assertFalse($content->versionInfo->isArchived());
904
905
        return $content;
906
    }
907
908
    /**
909
     * Test for the publishVersion() method.
910
     *
911
     * @param \eZ\Publish\API\Repository\Values\Content\Content $content
912
     *
913
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
914
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
915
     */
916
    public function testPublishVersionSetsExpectedContentInfo($content)
917
    {
918
        $this->assertEquals(
919
            [
920
                $content->id,
921
                true,
922
                1,
923
                'abcdef0123456789abcdef0123456789',
924
                self::ENG_US,
925
                $this->getRepository()->getCurrentUser()->id,
0 ignored issues
show
Deprecated Code introduced by
The method eZ\Publish\API\Repositor...itory::getCurrentUser() has been deprecated with message: since 6.6, to be removed. Use PermissionResolver::getCurrentUserReference() instead. Get current user. Loads the full user object if not already loaded, if you only need to know user id use {@see getCurrentUserReference()}

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
926
                true,
927
            ],
928
            [
929
                $content->contentInfo->id,
930
                $content->contentInfo->alwaysAvailable,
931
                $content->contentInfo->currentVersionNo,
932
                $content->contentInfo->remoteId,
933
                $content->contentInfo->mainLanguageCode,
934
                $content->contentInfo->ownerId,
935
                $content->contentInfo->published,
936
            ]
937
        );
938
939
        $this->assertNotNull($content->contentInfo->mainLocationId);
940
        $date = new \DateTime('1984/01/01');
941
        $this->assertGreaterThan(
942
            $date->getTimestamp(),
943
            $content->contentInfo->publishedDate->getTimestamp()
944
        );
945
    }
946
947
    /**
948
     * Test for the publishVersion() method.
949
     *
950
     * @param \eZ\Publish\API\Repository\Values\Content\Content $content
951
     *
952
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
953
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
954
     */
955
    public function testPublishVersionSetsExpectedVersionInfo($content)
956
    {
957
        $this->assertEquals(
958
            [
959
                $this->getRepository()->getCurrentUser()->id,
0 ignored issues
show
Deprecated Code introduced by
The method eZ\Publish\API\Repositor...itory::getCurrentUser() has been deprecated with message: since 6.6, to be removed. Use PermissionResolver::getCurrentUserReference() instead. Get current user. Loads the full user object if not already loaded, if you only need to know user id use {@see getCurrentUserReference()}

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
960
                self::ENG_US,
961
                VersionInfo::STATUS_PUBLISHED,
962
                1,
963
            ],
964
            [
965
                $content->getVersionInfo()->creatorId,
966
                $content->getVersionInfo()->initialLanguageCode,
967
                $content->getVersionInfo()->status,
968
                $content->getVersionInfo()->versionNo,
969
            ]
970
        );
971
972
        $date = new \DateTime('1984/01/01');
973
        $this->assertGreaterThan(
974
            $date->getTimestamp(),
975
            $content->getVersionInfo()->modificationDate->getTimestamp()
976
        );
977
978
        $this->assertNotNull($content->getVersionInfo()->modificationDate);
979
        $this->assertTrue($content->getVersionInfo()->isPublished());
980
        $this->assertFalse($content->getVersionInfo()->isDraft());
981
        $this->assertFalse($content->getVersionInfo()->isArchived());
982
    }
983
984
    /**
985
     * Test for the publishVersion() method.
986
     *
987
     * @param \eZ\Publish\API\Repository\Values\Content\Content $content
988
     *
989
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
990
     * @depends testPublishVersion
991
     */
992
    public function testPublishVersionSetsExpectedContentType($content)
993
    {
994
        $contentType = $content->getContentType();
995
996
        $this->assertEquals(
997
            [
998
                $contentType->id,
999
                // won't be a match as it's set to true in createContentDraftVersion1()
1000
                //$contentType->defaultAlwaysAvailable,
1001
                //$contentType->defaultSortField,
1002
                //$contentType->defaultSortOrder,
1003
            ],
1004
            [
1005
                $content->contentInfo->contentTypeId,
1006
                //$content->contentInfo->alwaysAvailable,
1007
                //$location->sortField,
1008
                //$location->sortOrder,
1009
            ]
1010
        );
1011
    }
1012
1013
    /**
1014
     * Test for the publishVersion() method.
1015
     *
1016
     * @return \eZ\Publish\API\Repository\Values\Content\Content
1017
     *
1018
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
1019
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentWithLocationCreateParameterDoesNotCreateLocationImmediately
1020
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
1021
     */
1022
    public function testPublishVersionCreatesLocationsDefinedOnCreate()
1023
    {
1024
        $content = $this->createContentVersion1();
1025
1026
        $location = $this->locationService->loadLocationByRemoteId(
1027
            '0123456789abcdef0123456789abcdef'
1028
        );
1029
1030
        $this->assertEquals(
1031
            $location->getContentInfo(),
1032
            $content->getVersionInfo()->getContentInfo()
1033
        );
1034
1035
        return [$content, $location];
1036
    }
1037
1038
    /**
1039
     * Test for the publishVersion() method.
1040
     *
1041
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
1042
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionCreatesLocationsDefinedOnCreate
1043
     */
1044
    public function testCreateContentWithLocationCreateParameterCreatesExpectedLocation(array $testData)
1045
    {
1046
        /** @var \eZ\Publish\API\Repository\Values\Content\Content $content */
1047
        /** @var \eZ\Publish\API\Repository\Values\Content\Location $location */
1048
        list($content, $location) = $testData;
1049
1050
        $parentLocationId = $this->generateId('location', 56);
1051
        $parentLocation = $this->getRepository()->getLocationService()->loadLocation($parentLocationId);
1052
        $mainLocationId = $content->getVersionInfo()->getContentInfo()->mainLocationId;
1053
1054
        $this->assertPropertiesCorrect(
1055
            [
1056
                'id' => $mainLocationId,
1057
                'priority' => 23,
1058
                'hidden' => true,
1059
                'invisible' => true,
1060
                'remoteId' => '0123456789abcdef0123456789abcdef',
1061
                'parentLocationId' => $parentLocationId,
1062
                'pathString' => $parentLocation->pathString . $mainLocationId . '/',
1063
                'depth' => $parentLocation->depth + 1,
1064
                'sortField' => Location::SORT_FIELD_NODE_ID,
1065
                'sortOrder' => Location::SORT_ORDER_DESC,
1066
            ],
1067
            $location
1068
        );
1069
    }
1070
1071
    /**
1072
     * Test for the publishVersion() method.
1073
     *
1074
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
1075
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
1076
     */
1077
    public function testPublishVersionThrowsBadStateException()
1078
    {
1079
        $draft = $this->createContentDraftVersion1();
1080
1081
        // Publish the content draft
1082
        $this->contentService->publishVersion($draft->getVersionInfo());
1083
1084
        $this->expectException(BadStateException::class);
1085
1086
        // This call will fail with a "BadStateException", because the version is already published.
1087
        $this->contentService->publishVersion($draft->getVersionInfo());
1088
    }
1089
1090
    /**
1091
     * Test that publishVersion() does not affect publishedDate (assuming previous version exists).
1092
     *
1093
     * @covers \eZ\Publish\API\Repository\ContentService::publishVersion
1094
     */
1095
    public function testPublishVersionDoesNotChangePublishedDate()
1096
    {
1097
        $publishedContent = $this->createContentVersion1();
1098
1099
        // force timestamps to differ
1100
        sleep(1);
1101
1102
        $contentDraft = $this->contentService->createContentDraft($publishedContent->contentInfo);
1103
        $contentUpdateStruct = $this->contentService->newContentUpdateStruct();
1104
        $contentUpdateStruct->setField('name', 'New name');
1105
        $contentDraft = $this->contentService->updateContent($contentDraft->versionInfo, $contentUpdateStruct);
1106
        $republishedContent = $this->contentService->publishVersion($contentDraft->versionInfo);
1107
1108
        $this->assertEquals(
1109
            $publishedContent->contentInfo->publishedDate->getTimestamp(),
1110
            $republishedContent->contentInfo->publishedDate->getTimestamp()
1111
        );
1112
        $this->assertGreaterThan(
1113
            $publishedContent->contentInfo->modificationDate->getTimestamp(),
1114
            $republishedContent->contentInfo->modificationDate->getTimestamp()
1115
        );
1116
    }
1117
1118
    /**
1119
     * Test for the createContentDraft() method.
1120
     *
1121
     * @return \eZ\Publish\API\Repository\Values\Content\Content
1122
     *
1123
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
1124
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
1125
     * @group user
1126
     */
1127
    public function testCreateContentDraft()
1128
    {
1129
        $content = $this->createContentVersion1();
1130
1131
        // Now we create a new draft from the published content
1132
        $draftedContent = $this->contentService->createContentDraft($content->contentInfo);
1133
1134
        $this->assertInstanceOf(
1135
            Content::class,
1136
            $draftedContent
1137
        );
1138
1139
        return $draftedContent;
1140
    }
1141
1142
    /**
1143
     * Test for the createContentDraft() method.
1144
     *
1145
     * Test that editor has access to edit own draft.
1146
     * Note: Editors have access to version_read, which is needed to load content drafts.
1147
     *
1148
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
1149
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
1150
     * @group user
1151
     */
1152
    public function testCreateContentDraftAndLoadAccess()
1153
    {
1154
        $user = $this->createUserVersion1();
1155
1156
        // Set new editor as user
1157
        $this->permissionResolver->setCurrentUserReference($user);
1158
1159
        // Create draft
1160
        $draft = $this->createContentDraftVersion1(2, 'folder');
1161
1162
        // Try to load the draft
1163
        $loadedDraft = $this->contentService->loadContent($draft->id);
1164
1165
        $this->assertEquals($draft->id, $loadedDraft->id);
1166
    }
1167
1168
    /**
1169
     * Test for the createContentDraft() method.
1170
     *
1171
     * @param \eZ\Publish\API\Repository\Values\Content\Content $draft
1172
     *
1173
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
1174
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
1175
     */
1176
    public function testCreateContentDraftSetsExpectedProperties($draft)
1177
    {
1178
        $this->assertEquals(
1179
            [
1180
                'fieldCount' => 2,
1181
                'relationCount' => 0,
1182
            ],
1183
            [
1184
                'fieldCount' => count($draft->getFields()),
1185
                'relationCount' => count($this->getRepository()->getContentService()->loadRelations($draft->getVersionInfo())),
1186
            ]
1187
        );
1188
    }
1189
1190
    /**
1191
     * Test for the createContentDraft() method.
1192
     *
1193
     * @param \eZ\Publish\API\Repository\Values\Content\Content $draft
1194
     *
1195
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
1196
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
1197
     */
1198
    public function testCreateContentDraftSetsContentInfo($draft)
1199
    {
1200
        $contentInfo = $draft->contentInfo;
1201
1202
        $this->assertEquals(
1203
            [
1204
                $draft->id,
1205
                true,
1206
                1,
1207
                self::ENG_US,
1208
                $this->getRepository()->getCurrentUser()->id,
0 ignored issues
show
Deprecated Code introduced by
The method eZ\Publish\API\Repositor...itory::getCurrentUser() has been deprecated with message: since 6.6, to be removed. Use PermissionResolver::getCurrentUserReference() instead. Get current user. Loads the full user object if not already loaded, if you only need to know user id use {@see getCurrentUserReference()}

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
1209
                'abcdef0123456789abcdef0123456789',
1210
                1,
1211
            ],
1212
            [
1213
                $contentInfo->id,
1214
                $contentInfo->alwaysAvailable,
1215
                $contentInfo->currentVersionNo,
1216
                $contentInfo->mainLanguageCode,
1217
                $contentInfo->ownerId,
1218
                $contentInfo->remoteId,
1219
                $contentInfo->sectionId,
1220
            ]
1221
        );
1222
    }
1223
1224
    /**
1225
     * Test for the createContentDraft() method.
1226
     *
1227
     * @param \eZ\Publish\API\Repository\Values\Content\Content $draft
1228
     *
1229
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
1230
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
1231
     */
1232
    public function testCreateContentDraftSetsVersionInfo($draft)
1233
    {
1234
        $versionInfo = $draft->getVersionInfo();
1235
1236
        $this->assertEquals(
1237
            [
1238
                'creatorId' => $this->getRepository()->getCurrentUser()->id,
0 ignored issues
show
Deprecated Code introduced by
The method eZ\Publish\API\Repositor...itory::getCurrentUser() has been deprecated with message: since 6.6, to be removed. Use PermissionResolver::getCurrentUserReference() instead. Get current user. Loads the full user object if not already loaded, if you only need to know user id use {@see getCurrentUserReference()}

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
1239
                'initialLanguageCode' => self::ENG_US,
1240
                'languageCodes' => [0 => self::ENG_US],
1241
                'status' => VersionInfo::STATUS_DRAFT,
1242
                'versionNo' => 2,
1243
            ],
1244
            [
1245
                'creatorId' => $versionInfo->creatorId,
1246
                'initialLanguageCode' => $versionInfo->initialLanguageCode,
1247
                'languageCodes' => $versionInfo->languageCodes,
1248
                'status' => $versionInfo->status,
1249
                'versionNo' => $versionInfo->versionNo,
1250
            ]
1251
        );
1252
        $this->assertTrue($versionInfo->isDraft());
1253
        $this->assertFalse($versionInfo->isPublished());
1254
        $this->assertFalse($versionInfo->isArchived());
1255
    }
1256
1257
    /**
1258
     * Test for the createContentDraft() method.
1259
     *
1260
     * @param \eZ\Publish\API\Repository\Values\Content\Content $draft
1261
     *
1262
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
1263
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
1264
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadVersionInfo
1265
     */
1266
    public function testCreateContentDraftLoadVersionInfoStillLoadsPublishedVersion($draft)
0 ignored issues
show
Unused Code introduced by
The parameter $draft is not used and could be removed.

This check looks from parameters that have been defined for a function or method, but which are not used in the method body.

Loading history...
1267
    {
1268
        $content = $this->createContentVersion1();
1269
1270
        // Now we create a new draft from the published content
1271
        $this->contentService->createContentDraft($content->contentInfo);
1272
1273
        // This call will still load the published version
1274
        $versionInfoPublished = $this->contentService->loadVersionInfo($content->contentInfo);
1275
1276
        $this->assertEquals(1, $versionInfoPublished->versionNo);
1277
    }
1278
1279
    /**
1280
     * Test for the createContentDraft() method.
1281
     *
1282
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
1283
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
1284
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
1285
     */
1286
    public function testCreateContentDraftLoadContentStillLoadsPublishedVersion()
1287
    {
1288
        $content = $this->createContentVersion1();
1289
1290
        // Now we create a new draft from the published content
1291
        $this->contentService->createContentDraft($content->contentInfo);
1292
1293
        // This call will still load the published content version
1294
        $contentPublished = $this->contentService->loadContent($content->id);
1295
1296
        $this->assertEquals(1, $contentPublished->getVersionInfo()->versionNo);
1297
    }
1298
1299
    /**
1300
     * Test for the createContentDraft() method.
1301
     *
1302
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
1303
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentByRemoteId
1304
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
1305
     */
1306
    public function testCreateContentDraftLoadContentByRemoteIdStillLoadsPublishedVersion()
1307
    {
1308
        $content = $this->createContentVersion1();
1309
1310
        // Now we create a new draft from the published content
1311
        $this->contentService->createContentDraft($content->contentInfo);
1312
1313
        // This call will still load the published content version
1314
        $contentPublished = $this->contentService->loadContentByRemoteId('abcdef0123456789abcdef0123456789');
1315
1316
        $this->assertEquals(1, $contentPublished->getVersionInfo()->versionNo);
1317
    }
1318
1319
    /**
1320
     * Test for the createContentDraft() method.
1321
     *
1322
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
1323
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentByContentInfo
1324
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
1325
     */
1326
    public function testCreateContentDraftLoadContentByContentInfoStillLoadsPublishedVersion()
1327
    {
1328
        $content = $this->createContentVersion1();
1329
1330
        // Now we create a new draft from the published content
1331
        $this->contentService->createContentDraft($content->contentInfo);
1332
1333
        // This call will still load the published content version
1334
        $contentPublished = $this->contentService->loadContentByContentInfo($content->contentInfo);
1335
1336
        $this->assertEquals(1, $contentPublished->getVersionInfo()->versionNo);
1337
    }
1338
1339
    /**
1340
     * Test for the newContentUpdateStruct() method.
1341
     *
1342
     * @covers \eZ\Publish\API\Repository\ContentService::newContentUpdateStruct
1343
     * @group user
1344
     */
1345
    public function testNewContentUpdateStruct()
1346
    {
1347
        $updateStruct = $this->contentService->newContentUpdateStruct();
1348
1349
        $this->assertInstanceOf(
1350
            ContentUpdateStruct::class,
1351
            $updateStruct
1352
        );
1353
1354
        $this->assertPropertiesCorrect(
1355
            [
1356
                'initialLanguageCode' => null,
1357
                'fields' => [],
1358
            ],
1359
            $updateStruct
1360
        );
1361
    }
1362
1363
    /**
1364
     * Test for the updateContent() method.
1365
     *
1366
     * @return \eZ\Publish\API\Repository\Values\Content\Content
1367
     *
1368
     * @see \eZ\Publish\API\Repository\ContentService::updateContent()
1369
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testNewContentUpdateStruct
1370
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
1371
     * @group user
1372
     * @group field-type
1373
     */
1374
    public function testUpdateContent()
1375
    {
1376
        $draftVersion2 = $this->createUpdatedDraftVersion2();
1377
1378
        $this->assertInstanceOf(
1379
            Content::class,
1380
            $draftVersion2
1381
        );
1382
1383
        $this->assertEquals(
1384
            $this->generateId('user', 10),
1385
            $draftVersion2->versionInfo->creatorId,
1386
            'creatorId is not properly set on new Version'
1387
        );
1388
1389
        return $draftVersion2;
1390
    }
1391
1392
    /**
1393
     * Test for the updateContent_WithDifferentUser() method.
1394
     *
1395
     * @return \eZ\Publish\API\Repository\Values\Content\Content
1396
     *
1397
     * @see \eZ\Publish\API\Repository\ContentService::updateContent()
1398
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testNewContentUpdateStruct
1399
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
1400
     * @group user
1401
     * @group field-type
1402
     */
1403
    public function testUpdateContentWithDifferentUser()
1404
    {
1405
        $arrayWithDraftVersion2 = $this->createUpdatedDraftVersion2NotAdmin();
1406
1407
        $this->assertInstanceOf(
1408
            Content::class,
1409
            $arrayWithDraftVersion2[0]
1410
        );
1411
1412
        $this->assertEquals(
1413
            $this->generateId('user', $arrayWithDraftVersion2[1]),
1414
            $arrayWithDraftVersion2[0]->versionInfo->creatorId,
1415
            'creatorId is not properly set on new Version'
1416
        );
1417
1418
        return $arrayWithDraftVersion2[0];
1419
    }
1420
1421
    /**
1422
     * Test for the updateContent() method.
1423
     *
1424
     * @param \eZ\Publish\API\Repository\Values\Content\Content $content
1425
     *
1426
     * @see \eZ\Publish\API\Repository\ContentService::updateContent()
1427
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContent
1428
     */
1429
    public function testUpdateContentSetsExpectedFields($content)
1430
    {
1431
        $actual = $this->normalizeFields($content->getFields());
1432
1433
        $expected = [
1434
            new Field(
1435
                [
1436
                    'id' => 0,
1437
                    'value' => true,
1438
                    'languageCode' => self::ENG_GB,
1439
                    'fieldDefIdentifier' => 'description',
1440
                    'fieldTypeIdentifier' => 'ezrichtext',
1441
                ]
1442
            ),
1443
            new Field(
1444
                [
1445
                    'id' => 0,
1446
                    'value' => true,
1447
                    'languageCode' => self::ENG_US,
1448
                    'fieldDefIdentifier' => 'description',
1449
                    'fieldTypeIdentifier' => 'ezrichtext',
1450
                ]
1451
            ),
1452
            new Field(
1453
                [
1454
                    'id' => 0,
1455
                    'value' => true,
1456
                    'languageCode' => self::ENG_GB,
1457
                    'fieldDefIdentifier' => 'name',
1458
                    'fieldTypeIdentifier' => 'ezstring',
1459
                ]
1460
            ),
1461
            new Field(
1462
                [
1463
                    'id' => 0,
1464
                    'value' => true,
1465
                    'languageCode' => self::ENG_US,
1466
                    'fieldDefIdentifier' => 'name',
1467
                    'fieldTypeIdentifier' => 'ezstring',
1468
                ]
1469
            ),
1470
        ];
1471
1472
        $this->assertEquals($expected, $actual);
1473
    }
1474
1475
    /**
1476
     * Test for the updateContent() method.
1477
     *
1478
     * @see \eZ\Publish\API\Repository\ContentService::updateContent()
1479
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContent
1480
     */
1481
    public function testUpdateContentThrowsBadStateException()
1482
    {
1483
        $content = $this->createContentVersion1();
1484
1485
        // Now create an update struct and modify some fields
1486
        $contentUpdateStruct = $this->contentService->newContentUpdateStruct();
1487
        $contentUpdateStruct->setField('title', 'An awesome² story about ezp.');
1488
        $contentUpdateStruct->setField('title', 'An awesome²³ story about ezp.', self::ENG_GB);
1489
1490
        $contentUpdateStruct->initialLanguageCode = self::ENG_US;
1491
1492
        $this->expectException(BadStateException::class);
1493
1494
        // This call will fail with a "BadStateException", because $publishedContent is not a draft.
1495
        $this->contentService->updateContent(
1496
            $content->getVersionInfo(),
1497
            $contentUpdateStruct
1498
        );
1499
    }
1500
1501
    /**
1502
     * Test for the updateContent() method.
1503
     *
1504
     * @see \eZ\Publish\API\Repository\ContentService::updateContent()
1505
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContent
1506
     */
1507
    public function testUpdateContentThrowsInvalidArgumentExceptionWhenFieldTypeDoesNotAccept()
1508
    {
1509
        $draft = $this->createContentDraftVersion1();
1510
1511
        // Now create an update struct and modify some fields
1512
        $contentUpdateStruct = $this->contentService->newContentUpdateStruct();
1513
        // The name field does not accept a stdClass object as its input
1514
        $contentUpdateStruct->setField('name', new \stdClass(), self::ENG_US);
1515
1516
        $this->expectException(APIInvalidArgumentException::class);
1517
        // is not accepted
1518
        $this->contentService->updateContent(
1519
            $draft->getVersionInfo(),
1520
            $contentUpdateStruct
1521
        );
1522
    }
1523
1524
    /**
1525
     * Test for the updateContent() method.
1526
     *
1527
     * @see \eZ\Publish\API\Repository\ContentService::updateContent()
1528
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContent
1529
     */
1530
    public function testUpdateContentWhenMandatoryFieldIsEmpty()
1531
    {
1532
        $draft = $this->createContentDraftVersion1();
1533
1534
        // Now create an update struct and set a mandatory field to null
1535
        $contentUpdateStruct = $this->contentService->newContentUpdateStruct();
1536
        $contentUpdateStruct->setField('name', null);
1537
1538
        // Don't set this, then the above call without languageCode will fail
1539
        $contentUpdateStruct->initialLanguageCode = self::ENG_US;
1540
1541
        $this->expectException(ContentFieldValidationException::class);
1542
1543
        // This call will fail with a "ContentFieldValidationException", because the mandatory "name" field is empty.
1544
        $this->contentService->updateContent(
1545
            $draft->getVersionInfo(),
1546
            $contentUpdateStruct
1547
        );
1548
    }
1549
1550
    /**
1551
     * Test for the updateContent() method.
1552
     *
1553
     * @see \eZ\Publish\API\Repository\ContentService::updateContent()
1554
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContent
1555
     */
1556
    public function testUpdateContentThrowsContentFieldValidationException()
1557
    {
1558
        $contentTypeService = $this->getRepository()->getContentTypeService();
1559
        $contentType = $contentTypeService->loadContentTypeByIdentifier('folder');
1560
1561
        $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
1562
        $contentCreate->setField('name', 'An awesome Sidelfingen folder');
1563
1564
        $draft = $this->contentService->createContent($contentCreate);
1565
1566
        $contentUpdate = $this->contentService->newContentUpdateStruct();
1567
        // Violates string length constraint
1568
        $contentUpdate->setField('short_name', str_repeat('a', 200), self::ENG_US);
1569
1570
        $this->expectException(ContentFieldValidationException::class);
1571
1572
        // Throws ContentFieldValidationException because the string length validation of the field "short_name" fails
1573
        $this->contentService->updateContent($draft->getVersionInfo(), $contentUpdate);
1574
    }
1575
1576
    /**
1577
     * Test for the updateContent() method.
1578
     *
1579
     * @covers \eZ\Publish\API\Repository\ContentService::updateContent()
1580
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContent
1581
     */
1582
    public function testUpdateContentValidatorIgnoresRequiredFieldsOfNotUpdatedLanguages()
1583
    {
1584
        $contentTypeService = $this->getRepository()->getContentTypeService();
1585
        $contentType = $contentTypeService->loadContentTypeByIdentifier('folder');
1586
1587
        // Create multilangual content
1588
        $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
1589
        $contentCreate->setField('name', 'An awesome Sidelfingen folder', self::ENG_US);
1590
        $contentCreate->setField('name', 'An awesome Sidelfingen folder', self::ENG_GB);
1591
1592
        $contentDraft = $this->contentService->createContent($contentCreate);
1593
1594
        // 2. Update content type definition
1595
        $contentTypeDraft = $contentTypeService->createContentTypeDraft($contentType);
1596
1597
        $fieldDefinition = $contentType->getFieldDefinition('description');
1598
        $fieldDefinitionUpdate = $contentTypeService->newFieldDefinitionUpdateStruct();
1599
        $fieldDefinitionUpdate->identifier = 'description';
1600
        $fieldDefinitionUpdate->isRequired = true;
1601
1602
        $contentTypeService->updateFieldDefinition(
1603
            $contentTypeDraft,
1604
            $fieldDefinition,
1605
            $fieldDefinitionUpdate
1606
        );
1607
        $contentTypeService->publishContentTypeDraft($contentTypeDraft);
1608
1609
        // 3. Update only eng-US translation
1610
        $description = new DOMDocument();
1611
        $description->loadXML(<<<XML
1612
<?xml version="1.0" encoding="UTF-8"?>
1613
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:ezxhtml="http://ez.no/xmlns/ezpublish/docbook/xhtml" xmlns:ezcustom="http://ez.no/xmlns/ezpublish/docbook/custom" version="5.0-variant ezpublish-1.0">
1614
    <para>Lorem ipsum dolor</para>
1615
</section>
1616
XML
1617
        );
1618
1619
        $contentUpdate = $this->contentService->newContentUpdateStruct();
1620
        $contentUpdate->setField('name', 'An awesome Sidelfingen folder (updated)', self::ENG_US);
1621
        $contentUpdate->setField('description', $description);
1622
1623
        $this->contentService->updateContent($contentDraft->getVersionInfo(), $contentUpdate);
1624
    }
1625
1626
    /**
1627
     * Test for the updateContent() method.
1628
     *
1629
     * @see \eZ\Publish\API\Repository\ContentService::updateContent()
1630
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContent
1631
     */
1632
    public function testUpdateContentWithNotUpdatingMandatoryField()
1633
    {
1634
        $draft = $this->createContentDraftVersion1();
1635
1636
        // Now create an update struct which does not overwrite mandatory
1637
        // fields
1638
        $contentUpdateStruct = $this->contentService->newContentUpdateStruct();
1639
        $contentUpdateStruct->setField(
1640
            'description',
1641
            '<?xml version="1.0" encoding="UTF-8"?><section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" version="5.0-variant ezpublish-1.0"/>'
1642
        );
1643
1644
        // Don't set this, then the above call without languageCode will fail
1645
        $contentUpdateStruct->initialLanguageCode = self::ENG_US;
1646
1647
        // This will only update the "description" field in the "eng-US" language
1648
        $updatedDraft = $this->contentService->updateContent(
1649
            $draft->getVersionInfo(),
1650
            $contentUpdateStruct
1651
        );
1652
1653
        foreach ($updatedDraft->getFields() as $field) {
1654
            if ($field->languageCode === self::ENG_US && $field->fieldDefIdentifier === 'name' && $field->value !== null) {
1655
                // Found field
1656
                return;
1657
            }
1658
        }
1659
        $this->fail(
1660
            'Field with identifier "name" in language "eng-US" could not be found or has empty value.'
1661
        );
1662
    }
1663
1664
    /**
1665
     * Test for the createContentDraft() method.
1666
     *
1667
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft($contentInfo, $versionInfo)
1668
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContent
1669
     */
1670
    public function testCreateContentDraftWithSecondParameter()
1671
    {
1672
        $contentVersion2 = $this->createContentVersion2();
1673
1674
        // Now we create a new draft from the initial version
1675
        $draftedContentReloaded = $this->contentService->createContentDraft(
1676
            $contentVersion2->contentInfo,
1677
            $contentVersion2->getVersionInfo()
1678
        );
1679
1680
        $this->assertEquals(3, $draftedContentReloaded->getVersionInfo()->versionNo);
1681
    }
1682
1683
    /**
1684
     * Test for the createContentDraft() method with third parameter.
1685
     *
1686
     * @covers \eZ\Publish\Core\Repository\ContentService::createContentDraft
1687
     */
1688
    public function testCreateContentDraftWithThirdParameter()
1689
    {
1690
        $content = $this->contentService->loadContent(4);
1691
        $user = $this->createUserVersion1();
1692
1693
        $draftContent = $this->contentService->createContentDraft(
1694
            $content->contentInfo,
1695
            $content->getVersionInfo(),
1696
            $user
1697
        );
1698
1699
        $this->assertInstanceOf(
1700
            Content::class,
1701
            $draftContent
1702
        );
1703
    }
1704
1705
    /**
1706
     * Test for the publishVersion() method.
1707
     *
1708
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
1709
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
1710
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContent
1711
     */
1712
    public function testPublishVersionFromContentDraft()
1713
    {
1714
        $contentVersion2 = $this->createContentVersion2();
1715
1716
        $versionInfo = $this->contentService->loadVersionInfo($contentVersion2->contentInfo);
1717
1718
        $this->assertEquals(
1719
            [
1720
                'status' => VersionInfo::STATUS_PUBLISHED,
1721
                'versionNo' => 2,
1722
            ],
1723
            [
1724
                'status' => $versionInfo->status,
1725
                'versionNo' => $versionInfo->versionNo,
1726
            ]
1727
        );
1728
        $this->assertTrue($versionInfo->isPublished());
1729
        $this->assertFalse($versionInfo->isDraft());
1730
        $this->assertFalse($versionInfo->isArchived());
1731
    }
1732
1733
    /**
1734
     * Test for the publishVersion() method.
1735
     *
1736
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
1737
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
1738
     */
1739
    public function testPublishVersionFromContentDraftArchivesOldVersion()
1740
    {
1741
        $contentVersion2 = $this->createContentVersion2();
1742
1743
        $versionInfo = $this->contentService->loadVersionInfo($contentVersion2->contentInfo, 1);
1744
1745
        $this->assertEquals(
1746
            [
1747
                'status' => VersionInfo::STATUS_ARCHIVED,
1748
                'versionNo' => 1,
1749
            ],
1750
            [
1751
                'status' => $versionInfo->status,
1752
                'versionNo' => $versionInfo->versionNo,
1753
            ]
1754
        );
1755
        $this->assertTrue($versionInfo->isArchived());
1756
        $this->assertFalse($versionInfo->isDraft());
1757
        $this->assertFalse($versionInfo->isPublished());
1758
    }
1759
1760
    /**
1761
     * Test for the publishVersion() method.
1762
     *
1763
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
1764
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
1765
     */
1766
    public function testPublishVersionFromContentDraftUpdatesContentInfoCurrentVersion()
1767
    {
1768
        $contentVersion2 = $this->createContentVersion2();
1769
1770
        $this->assertEquals(2, $contentVersion2->contentInfo->currentVersionNo);
1771
    }
1772
1773
    /**
1774
     * Test for the publishVersion() method.
1775
     *
1776
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
1777
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
1778
     */
1779
    public function testPublishVersionFromOldContentDraftArchivesNewerVersionNo()
1780
    {
1781
        $content = $this->createContentVersion1();
1782
1783
        // Create a new draft with versionNo = 2
1784
        $draftedContentVersion2 = $this->contentService->createContentDraft($content->contentInfo);
1785
1786
        // Create another new draft with versionNo = 3
1787
        $draftedContentVersion3 = $this->contentService->createContentDraft($content->contentInfo);
1788
1789
        // Publish draft with versionNo = 3
1790
        $this->contentService->publishVersion($draftedContentVersion3->getVersionInfo());
1791
1792
        // Publish the first draft with versionNo = 2
1793
        // currentVersionNo is now 2, versionNo 3 will be archived
1794
        $publishedDraft = $this->contentService->publishVersion($draftedContentVersion2->getVersionInfo());
1795
1796
        $this->assertEquals(2, $publishedDraft->contentInfo->currentVersionNo);
1797
    }
1798
1799
    /**
1800
     * Test for the publishVersion() method, and that it creates limited archives.
1801
     *
1802
     * @todo Adapt this when per content type archive limited is added on repository Content Type model.
1803
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
1804
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
1805
     */
1806
    public function testPublishVersionNotCreatingUnlimitedArchives()
1807
    {
1808
        $content = $this->createContentVersion1();
1809
1810
        // load first to make sure list gets updated also (cache)
1811
        $versionInfoList = $this->contentService->loadVersions($content->contentInfo);
1812
        $this->assertEquals(1, count($versionInfoList));
1813
        $this->assertEquals(1, $versionInfoList[0]->versionNo);
1814
1815
        // Create a new draft with versionNo = 2
1816
        $draftedContentVersion = $this->contentService->createContentDraft($content->contentInfo);
1817
        $this->contentService->publishVersion($draftedContentVersion->getVersionInfo());
1818
1819
        // Create a new draft with versionNo = 3
1820
        $draftedContentVersion = $this->contentService->createContentDraft($content->contentInfo);
1821
        $this->contentService->publishVersion($draftedContentVersion->getVersionInfo());
1822
1823
        // Create a new draft with versionNo = 4
1824
        $draftedContentVersion = $this->contentService->createContentDraft($content->contentInfo);
1825
        $this->contentService->publishVersion($draftedContentVersion->getVersionInfo());
1826
1827
        // Create a new draft with versionNo = 5
1828
        $draftedContentVersion = $this->contentService->createContentDraft($content->contentInfo);
1829
        $this->contentService->publishVersion($draftedContentVersion->getVersionInfo());
1830
1831
        // Create a new draft with versionNo = 6
1832
        $draftedContentVersion = $this->contentService->createContentDraft($content->contentInfo);
1833
        $this->contentService->publishVersion($draftedContentVersion->getVersionInfo());
1834
1835
        // Create a new draft with versionNo = 7
1836
        $draftedContentVersion = $this->contentService->createContentDraft($content->contentInfo);
1837
        $this->contentService->publishVersion($draftedContentVersion->getVersionInfo());
1838
1839
        $versionInfoList = $this->contentService->loadVersions($content->contentInfo);
1840
1841
        $this->assertEquals(6, count($versionInfoList));
1842
        $this->assertEquals(2, $versionInfoList[0]->versionNo);
1843
        $this->assertEquals(7, $versionInfoList[5]->versionNo);
1844
1845
        $this->assertEquals(
1846
            [
1847
                VersionInfo::STATUS_ARCHIVED,
1848
                VersionInfo::STATUS_ARCHIVED,
1849
                VersionInfo::STATUS_ARCHIVED,
1850
                VersionInfo::STATUS_ARCHIVED,
1851
                VersionInfo::STATUS_ARCHIVED,
1852
                VersionInfo::STATUS_PUBLISHED,
1853
            ],
1854
            [
1855
                $versionInfoList[0]->status,
1856
                $versionInfoList[1]->status,
1857
                $versionInfoList[2]->status,
1858
                $versionInfoList[3]->status,
1859
                $versionInfoList[4]->status,
1860
                $versionInfoList[5]->status,
1861
            ]
1862
        );
1863
    }
1864
1865
    /**
1866
     * Test for the newContentMetadataUpdateStruct() method.
1867
     *
1868
     * @covers \eZ\Publish\API\Repository\ContentService::newContentMetadataUpdateStruct
1869
     * @group user
1870
     */
1871
    public function testNewContentMetadataUpdateStruct()
1872
    {
1873
        // Creates a new metadata update struct
1874
        $metadataUpdate = $this->contentService->newContentMetadataUpdateStruct();
1875
1876
        foreach ($metadataUpdate as $propertyName => $propertyValue) {
0 ignored issues
show
Bug introduced by
The expression $metadataUpdate of type object<eZ\Publish\API\Re...ntMetadataUpdateStruct> is not traversable.
Loading history...
1877
            $this->assertNull($propertyValue, "Property '{$propertyName}' initial value should be null'");
1878
        }
1879
1880
        $metadataUpdate->remoteId = 'aaaabbbbccccddddeeeeffff11112222';
1881
        $metadataUpdate->mainLanguageCode = self::ENG_GB;
1882
        $metadataUpdate->alwaysAvailable = false;
1883
1884
        $this->assertInstanceOf(
1885
            ContentMetadataUpdateStruct::class,
1886
            $metadataUpdate
1887
        );
1888
    }
1889
1890
    /**
1891
     * Test for the updateContentMetadata() method.
1892
     *
1893
     * @return \eZ\Publish\API\Repository\Values\Content\Content
1894
     *
1895
     * @see \eZ\Publish\API\Repository\ContentService::updateContentMetadata()
1896
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
1897
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testNewContentMetadataUpdateStruct
1898
     * @group user
1899
     */
1900
    public function testUpdateContentMetadata()
1901
    {
1902
        $content = $this->createContentVersion1();
1903
1904
        // Creates a metadata update struct
1905
        $metadataUpdate = $this->contentService->newContentMetadataUpdateStruct();
1906
1907
        $metadataUpdate->remoteId = 'aaaabbbbccccddddeeeeffff11112222';
1908
        $metadataUpdate->mainLanguageCode = self::ENG_GB;
1909
        $metadataUpdate->alwaysAvailable = false;
1910
        $metadataUpdate->publishedDate = $this->createDateTime(441759600); // 1984/01/01
1911
        $metadataUpdate->modificationDate = $this->createDateTime(441759600); // 1984/01/01
1912
1913
        // Update the metadata of the published content object
1914
        $content = $this->contentService->updateContentMetadata(
1915
            $content->contentInfo,
1916
            $metadataUpdate
1917
        );
1918
1919
        $this->assertInstanceOf(
1920
            Content::class,
1921
            $content
1922
        );
1923
1924
        return $content;
1925
    }
1926
1927
    /**
1928
     * Test for the updateContentMetadata() method.
1929
     *
1930
     * @param \eZ\Publish\API\Repository\Values\Content\Content $content
1931
     *
1932
     * @see \eZ\Publish\API\Repository\ContentService::updateContentMetadata()
1933
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContentMetadata
1934
     */
1935
    public function testUpdateContentMetadataSetsExpectedProperties($content)
1936
    {
1937
        $contentInfo = $content->contentInfo;
1938
1939
        $this->assertEquals(
1940
            [
1941
                'remoteId' => 'aaaabbbbccccddddeeeeffff11112222',
1942
                'sectionId' => $this->generateId('section', 1),
1943
                'alwaysAvailable' => false,
1944
                'currentVersionNo' => 1,
1945
                'mainLanguageCode' => self::ENG_GB,
1946
                'modificationDate' => $this->createDateTime(441759600),
1947
                'ownerId' => $this->getRepository()->getCurrentUser()->id,
0 ignored issues
show
Deprecated Code introduced by
The method eZ\Publish\API\Repositor...itory::getCurrentUser() has been deprecated with message: since 6.6, to be removed. Use PermissionResolver::getCurrentUserReference() instead. Get current user. Loads the full user object if not already loaded, if you only need to know user id use {@see getCurrentUserReference()}

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
1948
                'published' => true,
1949
                'publishedDate' => $this->createDateTime(441759600),
1950
            ],
1951
            [
1952
                'remoteId' => $contentInfo->remoteId,
1953
                'sectionId' => $contentInfo->sectionId,
1954
                'alwaysAvailable' => $contentInfo->alwaysAvailable,
1955
                'currentVersionNo' => $contentInfo->currentVersionNo,
1956
                'mainLanguageCode' => $contentInfo->mainLanguageCode,
1957
                'modificationDate' => $contentInfo->modificationDate,
1958
                'ownerId' => $contentInfo->ownerId,
1959
                'published' => $contentInfo->published,
1960
                'publishedDate' => $contentInfo->publishedDate,
1961
            ]
1962
        );
1963
    }
1964
1965
    /**
1966
     * Test for the updateContentMetadata() method.
1967
     *
1968
     * @param \eZ\Publish\API\Repository\Values\Content\Content $content
1969
     *
1970
     * @see \eZ\Publish\API\Repository\ContentService::updateContentMetadata()
1971
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContentMetadata
1972
     */
1973
    public function testUpdateContentMetadataNotUpdatesContentVersion($content)
1974
    {
1975
        $this->assertEquals(1, $content->getVersionInfo()->versionNo);
1976
    }
1977
1978
    /**
1979
     * Test for the updateContentMetadata() method.
1980
     *
1981
     * @covers \eZ\Publish\API\Repository\ContentService::updateContentMetadata()
1982
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContentMetadata
1983
     */
1984
    public function testUpdateContentMetadataThrowsInvalidArgumentExceptionOnDuplicateRemoteId()
1985
    {
1986
        $content = $this->createContentVersion1();
1987
1988
        // Creates a metadata update struct
1989
        $metadataUpdate = $this->contentService->newContentMetadataUpdateStruct();
1990
        $metadataUpdate->remoteId = self::MEDIA_REMOTE_ID;
1991
1992
        $this->expectException(APIInvalidArgumentException::class);
1993
        // specified remoteId is already used by the "Media" page.
1994
        $this->contentService->updateContentMetadata(
1995
            $content->contentInfo,
1996
            $metadataUpdate
1997
        );
1998
    }
1999
2000
    /**
2001
     * Test for the updateContentMetadata() method.
2002
     *
2003
     * @covers \eZ\Publish\Core\Repository\ContentService::updateContentMetadata
2004
     */
2005
    public function testUpdateContentMetadataThrowsInvalidArgumentExceptionOnNoMetadataPropertiesSet()
2006
    {
2007
        $contentInfo = $this->contentService->loadContentInfo(4);
2008
        $contentMetadataUpdateStruct = $this->contentService->newContentMetadataUpdateStruct();
2009
2010
        $this->expectException(APIInvalidArgumentException::class);
2011
        $this->contentService->updateContentMetadata($contentInfo, $contentMetadataUpdateStruct);
2012
    }
2013
2014
    /**
2015
     * Test for the deleteContent() method.
2016
     *
2017
     * @see \eZ\Publish\API\Repository\ContentService::deleteContent()
2018
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
2019
     */
2020
    public function testDeleteContent()
2021
    {
2022
        $contentVersion2 = $this->createContentVersion2();
2023
2024
        // Load the locations for this content object
2025
        $locations = $this->locationService->loadLocations($contentVersion2->contentInfo);
2026
2027
        // This will delete the content, all versions and the associated locations
2028
        $this->contentService->deleteContent($contentVersion2->contentInfo);
2029
2030
        $this->expectException(NotFoundException::class);
2031
2032
        foreach ($locations as $location) {
2033
            $this->locationService->loadLocation($location->id);
2034
        }
2035
    }
2036
2037
    /**
2038
     * Test for the deleteContent() method.
2039
     *
2040
     * Test for issue EZP-21057:
2041
     * "contentService: Unable to delete a content with an empty file attribute"
2042
     *
2043
     * @see \eZ\Publish\API\Repository\ContentService::deleteContent()
2044
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
2045
     */
2046
    public function testDeleteContentWithEmptyBinaryField()
2047
    {
2048
        $contentVersion = $this->createContentVersion1EmptyBinaryField();
2049
2050
        // Load the locations for this content object
2051
        $locations = $this->locationService->loadLocations($contentVersion->contentInfo);
2052
2053
        // This will delete the content, all versions and the associated locations
2054
        $this->contentService->deleteContent($contentVersion->contentInfo);
2055
2056
        $this->expectException(NotFoundException::class);
2057
2058
        foreach ($locations as $location) {
2059
            $this->locationService->loadLocation($location->id);
2060
        }
2061
    }
2062
2063
    public function testCountContentDraftsReturnsZeroByDefault(): void
2064
    {
2065
        $this->assertSame(0, $this->contentService->countContentDrafts());
2066
    }
2067
2068
    public function testCountContentDrafts(): void
2069
    {
2070
        // Create 5 drafts
2071
        $this->createContentDrafts(5);
2072
2073
        $this->assertSame(5, $this->contentService->countContentDrafts());
2074
    }
2075
2076
    public function testCountContentDraftsForUsers(): void
2077
    {
2078
        $newUser = $this->createUserWithPolicies(
2079
            'new_user',
2080
            [
2081
                ['module' => 'content', 'function' => 'create'],
2082
                ['module' => 'content', 'function' => 'read'],
2083
                ['module' => 'content', 'function' => 'publish'],
2084
                ['module' => 'content', 'function' => 'edit'],
2085
            ]
2086
        );
2087
2088
        $previousUser = $this->permissionResolver->getCurrentUserReference();
2089
2090
        // Set new editor as user
2091
        $this->permissionResolver->setCurrentUserReference($newUser);
2092
2093
        // Create a content draft as newUser
2094
        $publishedContent = $this->createContentVersion1();
2095
        $this->contentService->createContentDraft($publishedContent->contentInfo);
2096
2097
        // Reset to previous current user
2098
        $this->permissionResolver->setCurrentUserReference($previousUser);
2099
2100
        // Now $contentDrafts for the previous current user and the new user
2101
        $newUserDrafts = $this->contentService->countContentDrafts($newUser);
2102
        $previousUserDrafts = $this->contentService->countContentDrafts();
2103
2104
        $this->assertSame(1, $newUserDrafts);
2105
        $this->assertSame(0, $previousUserDrafts);
2106
    }
2107
2108
    /**
2109
     * Test for the loadContentDrafts() method.
2110
     *
2111
     * @see \eZ\Publish\API\Repository\ContentService::loadContentDrafts()
2112
     */
2113
    public function testLoadContentDraftsReturnsEmptyArrayByDefault()
2114
    {
2115
        $contentDrafts = $this->contentService->loadContentDrafts();
2116
2117
        $this->assertSame([], $contentDrafts);
2118
    }
2119
2120
    /**
2121
     * Test for the loadContentDrafts() method.
2122
     *
2123
     * @see \eZ\Publish\API\Repository\ContentService::loadContentDrafts()
2124
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
2125
     */
2126
    public function testLoadContentDrafts()
2127
    {
2128
        // "Media" content object
2129
        $mediaContentInfo = $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID);
2130
2131
        // "eZ Publish Demo Design ..." content object
2132
        $demoDesignContentInfo = $this->contentService->loadContentInfoByRemoteId(self::DEMO_DESIGN_REMOTE_ID);
2133
2134
        // Create some drafts
2135
        $this->contentService->createContentDraft($mediaContentInfo);
2136
        $this->contentService->createContentDraft($demoDesignContentInfo);
2137
2138
        // Now $contentDrafts should contain two drafted versions
2139
        $draftedVersions = $this->contentService->loadContentDrafts();
2140
2141
        $actual = [
2142
            $draftedVersions[0]->status,
2143
            $draftedVersions[0]->getContentInfo()->remoteId,
2144
            $draftedVersions[1]->status,
2145
            $draftedVersions[1]->getContentInfo()->remoteId,
2146
        ];
2147
        sort($actual, SORT_STRING);
2148
2149
        $this->assertEquals(
2150
            [
2151
                VersionInfo::STATUS_DRAFT,
2152
                VersionInfo::STATUS_DRAFT,
2153
                self::DEMO_DESIGN_REMOTE_ID,
2154
                self::MEDIA_REMOTE_ID,
2155
            ],
2156
            $actual
2157
        );
2158
    }
2159
2160
    /**
2161
     * Test for the loadContentDrafts() method.
2162
     *
2163
     * @see \eZ\Publish\API\Repository\ContentService::loadContentDrafts($user)
2164
     */
2165
    public function testLoadContentDraftsWithFirstParameter()
2166
    {
2167
        $user = $this->createUserVersion1();
2168
2169
        // Get current user
2170
        $oldCurrentUser = $this->permissionResolver->getCurrentUserReference();
2171
2172
        // Set new editor as user
2173
        $this->permissionResolver->setCurrentUserReference($user);
2174
2175
        // "Media" content object
2176
        $mediaContentInfo = $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID);
2177
2178
        // Create a content draft
2179
        $this->contentService->createContentDraft($mediaContentInfo);
2180
2181
        // Reset to previous current user
2182
        $this->permissionResolver->setCurrentUserReference($oldCurrentUser);
2183
2184
        // Now $contentDrafts for the previous current user and the new user
2185
        $newCurrentUserDrafts = $this->contentService->loadContentDrafts($user);
2186
        $oldCurrentUserDrafts = $this->contentService->loadContentDrafts();
2187
2188
        $this->assertSame([], $oldCurrentUserDrafts);
2189
2190
        $this->assertEquals(
2191
            [
2192
                VersionInfo::STATUS_DRAFT,
2193
                self::MEDIA_REMOTE_ID,
2194
            ],
2195
            [
2196
                $newCurrentUserDrafts[0]->status,
2197
                $newCurrentUserDrafts[0]->getContentInfo()->remoteId,
2198
            ]
2199
        );
2200
        $this->assertTrue($newCurrentUserDrafts[0]->isDraft());
2201
        $this->assertFalse($newCurrentUserDrafts[0]->isArchived());
2202
        $this->assertFalse($newCurrentUserDrafts[0]->isPublished());
2203
    }
2204
2205
    /**
2206
     * Test for the loadContentDraftList() method.
2207
     *
2208
     * @see \eZ\Publish\API\Repository\ContentService::loadContentDrafts()
2209
     */
2210
    public function testLoadContentDraftListWithPaginationParameters()
2211
    {
2212
        // Create some drafts
2213
        $publishedContent = $this->createContentVersion1();
2214
        $draftContentA = $this->contentService->createContentDraft($publishedContent->contentInfo);
2215
        $draftContentB = $this->contentService->createContentDraft($draftContentA->contentInfo);
2216
        $draftContentC = $this->contentService->createContentDraft($draftContentB->contentInfo);
2217
        $draftContentD = $this->contentService->createContentDraft($draftContentC->contentInfo);
2218
        $draftContentE = $this->contentService->createContentDraft($draftContentD->contentInfo);
2219
2220
        $draftsOnPage1 = $this->contentService->loadContentDraftList(null, 0, 2);
2221
        $draftsOnPage2 = $this->contentService->loadContentDraftList(null, 2, 2);
2222
2223
        $this->assertSame(5, $draftsOnPage1->totalCount);
2224
        $this->assertSame(5, $draftsOnPage2->totalCount);
2225
        $this->assertEquals($draftContentE->getVersionInfo(), $draftsOnPage1->items[0]->getVersionInfo());
2226
        $this->assertEquals($draftContentD->getVersionInfo(), $draftsOnPage1->items[1]->getVersionInfo());
2227
        $this->assertEquals($draftContentC->getVersionInfo(), $draftsOnPage2->items[0]->getVersionInfo());
2228
        $this->assertEquals($draftContentB->getVersionInfo(), $draftsOnPage2->items[1]->getVersionInfo());
2229
    }
2230
2231
    /**
2232
     * Test for the loadContentDraftList() method.
2233
     *
2234
     * @see \eZ\Publish\API\Repository\ContentService::loadContentDrafts($user)
2235
     */
2236
    public function testLoadContentDraftListWithForUserWithLimitation()
2237
    {
2238
        $oldUser = $this->permissionResolver->getCurrentUserReference();
2239
2240
        $parentContent = $this->createFolder(['eng-US' => 'parentFolder'], 2);
2241
        $content = $this->createFolder(['eng-US' => 'parentFolder'], $parentContent->contentInfo->mainLocationId);
2242
2243
        // User has limitation to read versions only for `$content`, not for `$parentContent`
2244
        $newUser = $this->createUserWithVersionreadLimitations([$content->contentInfo->mainLocationId]);
2245
2246
        $this->permissionResolver->setCurrentUserReference($newUser);
2247
2248
        $contentDraftUnauthorized = $this->contentService->createContentDraft($parentContent->contentInfo);
2249
        $contentDraftA = $this->contentService->createContentDraft($content->contentInfo);
2250
        $contentDraftB = $this->contentService->createContentDraft($content->contentInfo);
2251
2252
        $newUserDraftList = $this->contentService->loadContentDraftList($newUser, 0);
2253
        $this->assertSame(3, $newUserDraftList->totalCount);
2254
        $this->assertEquals($contentDraftB->getVersionInfo(), $newUserDraftList->items[0]->getVersionInfo());
2255
        $this->assertEquals($contentDraftA->getVersionInfo(), $newUserDraftList->items[1]->getVersionInfo());
2256
        $this->assertEquals(
2257
            new UnauthorizedContentDraftListItem('content', 'versionread', ['contentId' => $contentDraftUnauthorized->id]),
2258
            $newUserDraftList->items[2]
2259
        );
2260
2261
        // Reset to previous user
2262
        $this->permissionResolver->setCurrentUserReference($oldUser);
2263
2264
        $oldUserDraftList = $this->contentService->loadContentDraftList();
2265
2266
        $this->assertSame(0, $oldUserDraftList->totalCount);
2267
        $this->assertSame([], $oldUserDraftList->items);
2268
    }
2269
2270
    /**
2271
     * Test for the loadContentDraftList() method.
2272
     *
2273
     * @see \eZ\Publish\API\Repository\ContentService::loadContentDrafts()
2274
     */
2275
    public function testLoadAllContentDrafts()
2276
    {
2277
        // Create more drafts then default pagination limit
2278
        $this->createContentDrafts(12);
2279
2280
        $this->assertCount(12, $this->contentService->loadContentDraftList());
2281
    }
2282
2283
    /**
2284
     * Test for the loadVersionInfo() method.
2285
     *
2286
     * @see \eZ\Publish\API\Repository\ContentService::loadVersionInfo($contentInfo, $versionNo)
2287
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
2288
     */
2289
    public function testLoadVersionInfoWithSecondParameter()
2290
    {
2291
        $publishedContent = $this->createContentVersion1();
2292
2293
        $this->contentService->createContentDraft($publishedContent->contentInfo);
2294
2295
        // Will return the VersionInfo of the $draftContent
2296
        $versionInfo = $this->contentService->loadVersionInfoById($publishedContent->id, 2);
2297
2298
        $this->assertEquals(2, $versionInfo->versionNo);
2299
2300
        // Check that ContentInfo contained in VersionInfo has correct main Location id set
2301
        $this->assertEquals(
2302
            $publishedContent->getVersionInfo()->getContentInfo()->mainLocationId,
2303
            $versionInfo->getContentInfo()->mainLocationId
2304
        );
2305
    }
2306
2307
    /**
2308
     * Test for the loadVersionInfo() method.
2309
     *
2310
     * @see \eZ\Publish\API\Repository\ContentService::loadVersionInfo($contentInfo, $versionNo)
2311
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadVersionInfoWithSecondParameter
2312
     */
2313
    public function testLoadVersionInfoThrowsNotFoundExceptionWithSecondParameter()
2314
    {
2315
        $draft = $this->createContentDraftVersion1();
2316
2317
        $this->expectException(NotFoundException::class);
2318
2319
        // This call will fail with a "NotFoundException", because not versionNo 2 exists for this content object.
2320
        $this->contentService->loadVersionInfo($draft->contentInfo, 2);
2321
    }
2322
2323
    /**
2324
     * Test for the loadVersionInfoById() method.
2325
     *
2326
     * @see \eZ\Publish\API\Repository\ContentService::loadVersionInfoById($contentId, $versionNo)
2327
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadVersionInfoWithSecondParameter
2328
     */
2329
    public function testLoadVersionInfoByIdWithSecondParameter()
2330
    {
2331
        $publishedContent = $this->createContentVersion1();
2332
2333
        $draftContent = $this->contentService->createContentDraft($publishedContent->contentInfo);
2334
2335
        // Will return the VersionInfo of the $draftContent
2336
        $versionInfo = $this->contentService->loadVersionInfoById($publishedContent->id, 2);
2337
2338
        $this->assertEquals(2, $versionInfo->versionNo);
2339
2340
        // Check that ContentInfo contained in VersionInfo has correct main Location id set
2341
        $this->assertEquals(
2342
            $publishedContent->getVersionInfo()->getContentInfo()->mainLocationId,
2343
            $versionInfo->getContentInfo()->mainLocationId
2344
        );
2345
2346
        return [
2347
            'versionInfo' => $versionInfo,
2348
            'draftContent' => $draftContent,
2349
        ];
2350
    }
2351
2352
    /**
2353
     * Test for the returned value of the loadVersionInfoById() method.
2354
     *
2355
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadVersionInfoByIdWithSecondParameter
2356
     * @covers \eZ\Publish\API\Repository\ContentService::loadVersionInfoById
2357
     *
2358
     * @param array $data
2359
     */
2360
    public function testLoadVersionInfoByIdWithSecondParameterSetsExpectedVersionInfo(array $data)
2361
    {
2362
        /** @var VersionInfo $versionInfo */
2363
        $versionInfo = $data['versionInfo'];
2364
        /** @var \eZ\Publish\API\Repository\Values\Content\Content $draftContent */
2365
        $draftContent = $data['draftContent'];
2366
2367
        $this->assertPropertiesCorrect(
2368
            [
2369
                'names' => [
2370
                    self::ENG_US => 'An awesome forum',
2371
                ],
2372
                'contentInfo' => new ContentInfo([
2373
                    'id' => $draftContent->contentInfo->id,
2374
                    'contentTypeId' => 28,
2375
                    'name' => 'An awesome forum',
2376
                    'sectionId' => 1,
2377
                    'currentVersionNo' => 1,
2378
                    'published' => true,
2379
                    'ownerId' => 14,
2380
                    // this Content Object is created at the test runtime
2381
                    'modificationDate' => $versionInfo->contentInfo->modificationDate,
2382
                    'publishedDate' => $versionInfo->contentInfo->publishedDate,
2383
                    'alwaysAvailable' => 1,
2384
                    'remoteId' => 'abcdef0123456789abcdef0123456789',
2385
                    'mainLanguageCode' => self::ENG_US,
2386
                    'mainLocationId' => $draftContent->contentInfo->mainLocationId,
2387
                    'status' => ContentInfo::STATUS_PUBLISHED,
2388
                ]),
2389
                'id' => $draftContent->versionInfo->id,
2390
                'versionNo' => 2,
2391
                'creatorId' => 14,
2392
                'status' => 0,
2393
                'initialLanguageCode' => self::ENG_US,
2394
                'languageCodes' => [
2395
                    self::ENG_US,
2396
                ],
2397
            ],
2398
            $versionInfo
2399
        );
2400
    }
2401
2402
    /**
2403
     * Test for the loadVersionInfoById() method.
2404
     *
2405
     * @see \eZ\Publish\API\Repository\ContentService::loadVersionInfoById($contentId, $versionNo)
2406
     */
2407
    public function testLoadVersionInfoByIdThrowsNotFoundExceptionWithSecondParameter()
2408
    {
2409
        $content = $this->createContentVersion1();
2410
2411
        $this->expectException(NotFoundException::class);
2412
2413
        // This call will fail with a "NotFoundException", because not versionNo 2 exists for this content object.
2414
        $this->contentService->loadVersionInfoById($content->id, 2);
2415
    }
2416
2417
    /**
2418
     * Test for the loadContentByVersionInfo() method.
2419
     *
2420
     * @see \eZ\Publish\API\Repository\ContentService::loadContentByVersionInfo($versionInfo, $languages)
2421
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
2422
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentByVersionInfo
2423
     */
2424
    public function testLoadContentByVersionInfoWithSecondParameter()
2425
    {
2426
        $sectionId = $this->generateId('section', 1);
2427
        $contentTypeService = $this->getRepository()->getContentTypeService();
2428
2429
        $contentType = $contentTypeService->loadContentTypeByIdentifier(self::FORUM_IDENTIFIER);
2430
2431
        $contentCreateStruct = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
2432
2433
        $contentCreateStruct->setField('name', 'Sindelfingen forum²');
2434
2435
        $contentCreateStruct->setField('name', 'Sindelfingen forum²³', self::ENG_GB);
2436
2437
        $contentCreateStruct->remoteId = 'abcdef0123456789abcdef0123456789';
2438
        // $sectionId contains the ID of section 1
2439
        $contentCreateStruct->sectionId = $sectionId;
2440
        $contentCreateStruct->alwaysAvailable = true;
2441
2442
        // Create a new content draft
2443
        $content = $this->contentService->createContent($contentCreateStruct);
2444
2445
        // Now publish this draft
2446
        $publishedContent = $this->contentService->publishVersion($content->getVersionInfo());
2447
2448
        // Will return a content instance with fields in "eng-US"
2449
        $reloadedContent = $this->contentService->loadContentByVersionInfo(
2450
            $publishedContent->getVersionInfo(),
2451
            [
2452
                self::ENG_GB,
2453
            ],
2454
            false
2455
        );
2456
2457
        $actual = [];
2458
        foreach ($reloadedContent->getFields() as $field) {
2459
            $actual[] = new Field(
2460
                [
2461
                    'id' => 0,
2462
                    'value' => $field->value !== null, // Actual value tested by FieldType integration tests
2463
                    'languageCode' => $field->languageCode,
2464
                    'fieldDefIdentifier' => $field->fieldDefIdentifier,
2465
                ]
2466
            );
2467
        }
2468
        usort(
2469
            $actual,
2470
            function ($field1, $field2) {
2471
                if (0 === ($return = strcasecmp($field1->fieldDefIdentifier, $field2->fieldDefIdentifier))) {
2472
                    return strcasecmp($field1->languageCode, $field2->languageCode);
2473
                }
2474
2475
                return $return;
2476
            }
2477
        );
2478
2479
        $expected = [
2480
            new Field(
2481
                [
2482
                    'id' => 0,
2483
                    'value' => true,
2484
                    'languageCode' => self::ENG_GB,
2485
                    'fieldDefIdentifier' => 'description',
2486
                ]
2487
            ),
2488
            new Field(
2489
                [
2490
                    'id' => 0,
2491
                    'value' => true,
2492
                    'languageCode' => self::ENG_GB,
2493
                    'fieldDefIdentifier' => 'name',
2494
                ]
2495
            ),
2496
        ];
2497
2498
        $this->assertEquals($expected, $actual);
2499
    }
2500
2501
    /**
2502
     * Test for the loadContentByContentInfo() method.
2503
     *
2504
     * @see \eZ\Publish\API\Repository\ContentService::loadContentByContentInfo($contentInfo, $languages)
2505
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentByContentInfo
2506
     */
2507
    public function testLoadContentByContentInfoWithLanguageParameters()
2508
    {
2509
        $sectionId = $this->generateId('section', 1);
2510
        $contentTypeService = $this->getRepository()->getContentTypeService();
2511
2512
        $contentType = $contentTypeService->loadContentTypeByIdentifier(self::FORUM_IDENTIFIER);
2513
2514
        $contentCreateStruct = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
2515
2516
        $contentCreateStruct->setField('name', 'Sindelfingen forum²');
2517
2518
        $contentCreateStruct->setField('name', 'Sindelfingen forum²³', self::ENG_GB);
2519
2520
        $contentCreateStruct->remoteId = 'abcdef0123456789abcdef0123456789';
2521
        // $sectionId contains the ID of section 1
2522
        $contentCreateStruct->sectionId = $sectionId;
2523
        $contentCreateStruct->alwaysAvailable = true;
2524
2525
        // Create a new content draft
2526
        $content = $this->contentService->createContent($contentCreateStruct);
2527
2528
        // Now publish this draft
2529
        $publishedContent = $this->contentService->publishVersion($content->getVersionInfo());
2530
2531
        // Will return a content instance with fields in "eng-US"
2532
        $reloadedContent = $this->contentService->loadContentByContentInfo(
2533
            $publishedContent->contentInfo,
2534
            [
2535
                self::ENG_US,
2536
            ],
2537
            null,
2538
            false
2539
        );
2540
2541
        $actual = $this->normalizeFields($reloadedContent->getFields());
2542
2543
        $expected = [
2544
            new Field(
2545
                [
2546
                    'id' => 0,
2547
                    'value' => true,
2548
                    'languageCode' => self::ENG_US,
2549
                    'fieldDefIdentifier' => 'description',
2550
                    'fieldTypeIdentifier' => 'ezrichtext',
2551
                ]
2552
            ),
2553
            new Field(
2554
                [
2555
                    'id' => 0,
2556
                    'value' => true,
2557
                    'languageCode' => self::ENG_US,
2558
                    'fieldDefIdentifier' => 'name',
2559
                    'fieldTypeIdentifier' => 'ezstring',
2560
                ]
2561
            ),
2562
        ];
2563
2564
        $this->assertEquals($expected, $actual);
2565
2566
        // Will return a content instance with fields in "eng-GB" (versions prior to 6.0.0-beta9 returned "eng-US" also)
2567
        $reloadedContent = $this->contentService->loadContentByContentInfo(
2568
            $publishedContent->contentInfo,
2569
            [
2570
                self::ENG_GB,
2571
            ],
2572
            null,
2573
            true
2574
        );
2575
2576
        $actual = $this->normalizeFields($reloadedContent->getFields());
2577
2578
        $expected = [
2579
            new Field(
2580
                [
2581
                    'id' => 0,
2582
                    'value' => true,
2583
                    'languageCode' => self::ENG_GB,
2584
                    'fieldDefIdentifier' => 'description',
2585
                    'fieldTypeIdentifier' => 'ezrichtext',
2586
                ]
2587
            ),
2588
            new Field(
2589
                [
2590
                    'id' => 0,
2591
                    'value' => true,
2592
                    'languageCode' => self::ENG_GB,
2593
                    'fieldDefIdentifier' => 'name',
2594
                    'fieldTypeIdentifier' => 'ezstring',
2595
                ]
2596
            ),
2597
        ];
2598
2599
        $this->assertEquals($expected, $actual);
2600
2601
        // Will return a content instance with fields in main language "eng-US", as "fre-FR" does not exists
2602
        $reloadedContent = $this->contentService->loadContentByContentInfo(
2603
            $publishedContent->contentInfo,
2604
            [
2605
                'fre-FR',
2606
            ],
2607
            null,
2608
            true
2609
        );
2610
2611
        $actual = $this->normalizeFields($reloadedContent->getFields());
2612
2613
        $expected = [
2614
            new Field(
2615
                [
2616
                    'id' => 0,
2617
                    'value' => true,
2618
                    'languageCode' => self::ENG_US,
2619
                    'fieldDefIdentifier' => 'description',
2620
                    'fieldTypeIdentifier' => 'ezrichtext',
2621
                ]
2622
            ),
2623
            new Field(
2624
                [
2625
                    'id' => 0,
2626
                    'value' => true,
2627
                    'languageCode' => self::ENG_US,
2628
                    'fieldDefIdentifier' => 'name',
2629
                    'fieldTypeIdentifier' => 'ezstring',
2630
                ]
2631
            ),
2632
        ];
2633
2634
        $this->assertEquals($expected, $actual);
2635
    }
2636
2637
    /**
2638
     * Test for the loadContentByContentInfo() method.
2639
     *
2640
     * @see \eZ\Publish\API\Repository\ContentService::loadContentByContentInfo($contentInfo, $languages, $versionNo)
2641
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentByContentInfo
2642
     */
2643
    public function testLoadContentByContentInfoWithVersionNumberParameter()
2644
    {
2645
        $publishedContent = $this->createContentVersion1();
2646
2647
        $this->contentService->createContentDraft($publishedContent->contentInfo);
2648
2649
        // This content instance is identical to $draftContent
2650
        $draftContentReloaded = $this->contentService->loadContentByContentInfo(
2651
            $publishedContent->contentInfo,
2652
            null,
2653
            2
2654
        );
2655
2656
        $this->assertEquals(
2657
            2,
2658
            $draftContentReloaded->getVersionInfo()->versionNo
2659
        );
2660
2661
        // Check that ContentInfo contained in reloaded draft Content has correct main Location id set
2662
        $this->assertEquals(
2663
            $publishedContent->versionInfo->contentInfo->mainLocationId,
2664
            $draftContentReloaded->versionInfo->contentInfo->mainLocationId
2665
        );
2666
    }
2667
2668
    /**
2669
     * Test for the loadContentByContentInfo() method.
2670
     *
2671
     * @see \eZ\Publish\API\Repository\ContentService::loadContentByContentInfo($contentInfo, $languages, $versionNo)
2672
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentByContentInfoWithVersionNumberParameter
2673
     */
2674
    public function testLoadContentByContentInfoThrowsNotFoundExceptionWithVersionNumberParameter()
2675
    {
2676
        $content = $this->createContentVersion1();
2677
2678
        $this->expectException(NotFoundException::class);
2679
2680
        // This call will fail with a "NotFoundException", because no content with versionNo = 2 exists.
2681
        $this->contentService->loadContentByContentInfo($content->contentInfo, null, 2);
2682
    }
2683
2684
    /**
2685
     * Test for the loadContent() method.
2686
     *
2687
     * @see \eZ\Publish\API\Repository\ContentService::loadContent($contentId, $languages)
2688
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
2689
     */
2690
    public function testLoadContentWithSecondParameter()
2691
    {
2692
        $draft = $this->createMultipleLanguageDraftVersion1();
2693
2694
        // This draft contains those fields localized with "eng-GB"
2695
        $draftLocalized = $this->contentService->loadContent($draft->id, [self::ENG_GB], null, false);
2696
2697
        $this->assertLocaleFieldsEquals($draftLocalized->getFields(), self::ENG_GB);
2698
2699
        return $draft;
2700
    }
2701
2702
    /**
2703
     * Test for the loadContent() method using undefined translation.
2704
     *
2705
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentWithSecondParameter
2706
     *
2707
     * @param \eZ\Publish\API\Repository\Values\Content\Content $contentDraft
2708
     */
2709
    public function testLoadContentWithSecondParameterThrowsNotFoundException(Content $contentDraft)
2710
    {
2711
        $this->expectException(NotFoundException::class);
2712
2713
        $this->contentService->loadContent($contentDraft->id, [self::GER_DE], null, false);
2714
    }
2715
2716
    /**
2717
     * Test for the loadContent() method.
2718
     *
2719
     * @see \eZ\Publish\API\Repository\ContentService::loadContent($contentId, $languages, $versionNo)
2720
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
2721
     */
2722
    public function testLoadContentWithThirdParameter()
2723
    {
2724
        $publishedContent = $this->createContentVersion1();
2725
2726
        $this->contentService->createContentDraft($publishedContent->contentInfo);
2727
2728
        // This content instance is identical to $draftContent
2729
        $draftContentReloaded = $this->contentService->loadContent($publishedContent->id, null, 2);
2730
2731
        $this->assertEquals(2, $draftContentReloaded->getVersionInfo()->versionNo);
2732
2733
        // Check that ContentInfo contained in reloaded draft Content has correct main Location id set
2734
        $this->assertEquals(
2735
            $publishedContent->versionInfo->contentInfo->mainLocationId,
2736
            $draftContentReloaded->versionInfo->contentInfo->mainLocationId
2737
        );
2738
    }
2739
2740
    /**
2741
     * Test for the loadContent() method.
2742
     *
2743
     * @see \eZ\Publish\API\Repository\ContentService::loadContent($contentId, $languages, $versionNo)
2744
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentWithThirdParameter
2745
     */
2746
    public function testLoadContentThrowsNotFoundExceptionWithThirdParameter()
2747
    {
2748
        $content = $this->createContentVersion1();
2749
2750
        $this->expectException(NotFoundException::class);
2751
2752
        // This call will fail with a "NotFoundException", because for this content object no versionNo=2 exists.
2753
        $this->contentService->loadContent($content->id, null, 2);
2754
    }
2755
2756
    /**
2757
     * Test for the loadContentByRemoteId() method.
2758
     *
2759
     * @see \eZ\Publish\API\Repository\ContentService::loadContentByRemoteId($remoteId, $languages)
2760
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
2761
     */
2762
    public function testLoadContentByRemoteIdWithSecondParameter()
2763
    {
2764
        $draft = $this->createMultipleLanguageDraftVersion1();
2765
2766
        $this->contentService->publishVersion($draft->versionInfo);
2767
2768
        // This draft contains those fields localized with "eng-GB"
2769
        $draftLocalized = $this->contentService->loadContentByRemoteId(
2770
            $draft->contentInfo->remoteId,
2771
            [self::ENG_GB],
2772
            null,
2773
            false
2774
        );
2775
2776
        $this->assertLocaleFieldsEquals($draftLocalized->getFields(), self::ENG_GB);
2777
    }
2778
2779
    /**
2780
     * Test for the loadContentByRemoteId() method.
2781
     *
2782
     * @see \eZ\Publish\API\Repository\ContentService::loadContentByRemoteId($remoteId, $languages, $versionNo)
2783
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
2784
     */
2785
    public function testLoadContentByRemoteIdWithThirdParameter()
2786
    {
2787
        $publishedContent = $this->createContentVersion1();
2788
2789
        $this->contentService->createContentDraft($publishedContent->contentInfo);
2790
2791
        // This content instance is identical to $draftContent
2792
        $draftContentReloaded = $this->contentService->loadContentByRemoteId(
2793
            $publishedContent->contentInfo->remoteId,
2794
            null,
2795
            2
2796
        );
2797
2798
        $this->assertEquals(2, $draftContentReloaded->getVersionInfo()->versionNo);
2799
2800
        // Check that ContentInfo contained in reloaded draft Content has correct main Location id set
2801
        $this->assertEquals(
2802
            $publishedContent->versionInfo->contentInfo->mainLocationId,
2803
            $draftContentReloaded->versionInfo->contentInfo->mainLocationId
2804
        );
2805
    }
2806
2807
    /**
2808
     * Test for the loadContentByRemoteId() method.
2809
     *
2810
     * @see \eZ\Publish\API\Repository\ContentService::loadContentByRemoteId($remoteId, $languages, $versionNo)
2811
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentByRemoteIdWithThirdParameter
2812
     */
2813
    public function testLoadContentByRemoteIdThrowsNotFoundExceptionWithThirdParameter()
2814
    {
2815
        $content = $this->createContentVersion1();
2816
2817
        $this->expectException(NotFoundException::class);
2818
2819
        // This call will fail with a "NotFoundException", because for this content object no versionNo=2 exists.
2820
        $this->contentService->loadContentByRemoteId(
2821
            $content->contentInfo->remoteId,
2822
            null,
2823
            2
2824
        );
2825
    }
2826
2827
    /**
2828
     * Test that retrieval of translated name field respects prioritized language list.
2829
     *
2830
     * @dataProvider getPrioritizedLanguageList
2831
     * @param string[]|null $languageCodes
2832
     */
2833
    public function testLoadContentWithPrioritizedLanguagesList($languageCodes)
2834
    {
2835
        $content = $this->createContentVersion2();
2836
2837
        $content = $this->contentService->loadContent($content->id, $languageCodes);
2838
2839
        $expectedName = $content->getVersionInfo()->getName(
2840
            isset($languageCodes[0]) ? $languageCodes[0] : null
2841
        );
2842
        $nameValue = $content->getFieldValue('name');
2843
        /** @var \eZ\Publish\Core\FieldType\TextLine\Value $nameValue */
2844
        self::assertEquals($expectedName, $nameValue->text);
2845
        self::assertEquals($expectedName, $content->getVersionInfo()->getName());
2846
        // Also check value on shortcut method on content
2847
        self::assertEquals($expectedName, $content->getName());
2848
    }
2849
2850
    /**
2851
     * @return array
2852
     */
2853
    public function getPrioritizedLanguageList()
2854
    {
2855
        return [
2856
            [[self::ENG_US]],
2857
            [[self::ENG_GB]],
2858
            [[self::ENG_GB, self::ENG_US]],
2859
            [[self::ENG_US, self::ENG_GB]],
2860
        ];
2861
    }
2862
2863
    /**
2864
     * Test for the deleteVersion() method.
2865
     *
2866
     * @see \eZ\Publish\API\Repository\ContentService::deleteVersion()
2867
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
2868
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
2869
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
2870
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
2871
     */
2872
    public function testDeleteVersion()
2873
    {
2874
        $content = $this->createContentVersion1();
2875
2876
        // Create new draft, because published or last version of the Content can't be deleted
2877
        $draft = $this->contentService->createContentDraft(
2878
            $content->getVersionInfo()->getContentInfo()
2879
        );
2880
2881
        // Delete the previously created draft
2882
        $this->contentService->deleteVersion($draft->getVersionInfo());
2883
2884
        $versions = $this->contentService->loadVersions($content->getVersionInfo()->getContentInfo());
2885
2886
        $this->assertCount(1, $versions);
2887
        $this->assertEquals(
2888
            $content->getVersionInfo()->id,
2889
            $versions[0]->id
2890
        );
2891
    }
2892
2893
    /**
2894
     * Test for the deleteVersion() method.
2895
     *
2896
     * @see \eZ\Publish\API\Repository\ContentService::deleteVersion()
2897
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
2898
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
2899
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
2900
     */
2901
    public function testDeleteVersionThrowsBadStateExceptionOnPublishedVersion()
2902
    {
2903
        $content = $this->createContentVersion1();
2904
2905
        $this->expectException(BadStateException::class);
2906
2907
        // This call will fail with a "BadStateException", because the content version is currently published.
2908
        $this->contentService->deleteVersion($content->getVersionInfo());
2909
    }
2910
2911
    /**
2912
     * Test for the deleteVersion() method.
2913
     *
2914
     * @see \eZ\Publish\API\Repository\ContentService::deleteVersion()
2915
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
2916
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
2917
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
2918
     */
2919
    public function testDeleteVersionWorksIfOnlyVersionIsDraft()
2920
    {
2921
        $draft = $this->createContentDraftVersion1();
2922
2923
        $this->contentService->deleteVersion($draft->getVersionInfo());
2924
2925
        $this->expectException(NotFoundException::class);
2926
2927
        // This call will fail with a "NotFound", because we allow to delete content if remaining version is draft.
2928
        // Can normally only happen if there where always only a draft to begin with, simplifies UI edit API usage.
2929
        $this->contentService->loadContent($draft->id);
2930
    }
2931
2932
    /**
2933
     * Test for the loadVersions() method.
2934
     *
2935
     * @see \eZ\Publish\API\Repository\ContentService::loadVersions()
2936
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
2937
     *
2938
     * @return VersionInfo[]
2939
     */
2940
    public function testLoadVersions()
2941
    {
2942
        $contentVersion2 = $this->createContentVersion2();
2943
2944
        // Load versions of this ContentInfo instance
2945
        $versions = $this->contentService->loadVersions($contentVersion2->contentInfo);
2946
2947
        $expectedVersionsOrder = [
2948
            $this->contentService->loadVersionInfo($contentVersion2->contentInfo, 1),
2949
            $this->contentService->loadVersionInfo($contentVersion2->contentInfo, 2),
2950
        ];
2951
2952
        $this->assertEquals($expectedVersionsOrder, $versions);
2953
2954
        return $versions;
2955
    }
2956
2957
    /**
2958
     * Test for the loadVersions() method.
2959
     *
2960
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadVersions
2961
     * @covers \eZ\Publish\Core\Repository\ContentService::loadVersions
2962
     *
2963
     * @param \eZ\Publish\API\Repository\Values\Content\VersionInfo[] $versions
2964
     */
2965
    public function testLoadVersionsSetsExpectedVersionInfo(array $versions)
2966
    {
2967
        $this->assertCount(2, $versions);
2968
2969
        $expectedVersions = [
2970
            [
2971
                'versionNo' => 1,
2972
                'creatorId' => 14,
2973
                'status' => VersionInfo::STATUS_ARCHIVED,
2974
                'initialLanguageCode' => self::ENG_US,
2975
                'languageCodes' => [self::ENG_US],
2976
            ],
2977
            [
2978
                'versionNo' => 2,
2979
                'creatorId' => 10,
2980
                'status' => VersionInfo::STATUS_PUBLISHED,
2981
                'initialLanguageCode' => self::ENG_US,
2982
                'languageCodes' => [self::ENG_US, self::ENG_GB],
2983
            ],
2984
        ];
2985
2986
        $this->assertPropertiesCorrect($expectedVersions[0], $versions[0]);
2987
        $this->assertPropertiesCorrect($expectedVersions[1], $versions[1]);
2988
        $this->assertEquals(
2989
            $versions[0]->creationDate->getTimestamp(),
2990
            $versions[1]->creationDate->getTimestamp(),
2991
            'Creation time did not match within delta of 2 seconds',
2992
            2
2993
        );
2994
        $this->assertEquals(
2995
            $versions[0]->modificationDate->getTimestamp(),
2996
            $versions[1]->modificationDate->getTimestamp(),
2997
            'Creation time did not match within delta of 2 seconds',
2998
            2
2999
        );
3000
        $this->assertTrue($versions[0]->isArchived());
3001
        $this->assertFalse($versions[0]->isDraft());
3002
        $this->assertFalse($versions[0]->isPublished());
3003
3004
        $this->assertTrue($versions[1]->isPublished());
3005
        $this->assertFalse($versions[1]->isDraft());
3006
        $this->assertFalse($versions[1]->isArchived());
3007
    }
3008
3009
    /**
3010
     * Test for the copyContent() method.
3011
     *
3012
     * @see \eZ\Publish\API\Repository\ContentService::copyContent()
3013
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
3014
     * @group field-type
3015
     */
3016
    public function testCopyContent()
3017
    {
3018
        $parentLocationId = $this->generateId('location', 56);
3019
3020
        $contentVersion2 = $this->createMultipleLanguageContentVersion2();
3021
3022
        // Configure new target location
3023
        $targetLocationCreate = $this->locationService->newLocationCreateStruct($parentLocationId);
3024
3025
        $targetLocationCreate->priority = 42;
3026
        $targetLocationCreate->hidden = true;
3027
        $targetLocationCreate->remoteId = '01234abcdef5678901234abcdef56789';
3028
        $targetLocationCreate->sortField = Location::SORT_FIELD_NODE_ID;
3029
        $targetLocationCreate->sortOrder = Location::SORT_ORDER_DESC;
3030
3031
        // Copy content with all versions and drafts
3032
        $contentCopied = $this->contentService->copyContent(
3033
            $contentVersion2->contentInfo,
3034
            $targetLocationCreate
3035
        );
3036
3037
        $this->assertInstanceOf(
3038
            Content::class,
3039
            $contentCopied
3040
        );
3041
3042
        $this->assertNotEquals(
3043
            $contentVersion2->contentInfo->remoteId,
3044
            $contentCopied->contentInfo->remoteId
3045
        );
3046
3047
        $this->assertNotEquals(
3048
            $contentVersion2->id,
3049
            $contentCopied->id
3050
        );
3051
3052
        $this->assertEquals(
3053
            2,
3054
            count($this->contentService->loadVersions($contentCopied->contentInfo))
3055
        );
3056
3057
        $this->assertEquals(2, $contentCopied->getVersionInfo()->versionNo);
3058
3059
        $this->assertAllFieldsEquals($contentCopied->getFields());
3060
3061
        $this->assertDefaultContentStates($contentCopied->contentInfo);
3062
3063
        $this->assertNotNull(
3064
            $contentCopied->contentInfo->mainLocationId,
3065
            'Expected main location to be set given we provided a LocationCreateStruct'
3066
        );
3067
    }
3068
3069
    /**
3070
     * Test for the copyContent() method with ezsettings.default.content.retain_owner_on_copy set to false
3071
     * See settings/test/integration_legacy.yml for service override.
3072
     *
3073
     * @see \eZ\Publish\API\Repository\ContentService::copyContent()
3074
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
3075
     * @group field-type
3076
     */
3077
    public function testCopyContentWithNewOwner()
3078
    {
3079
        $parentLocationId = $this->generateId('location', 56);
3080
3081
        $userService = $this->getRepository()->getUserService();
3082
3083
        $newOwner = $this->createUser('new_owner', 'foo', 'bar');
3084
        /** @var \eZ\Publish\API\Repository\Values\Content\Content $contentVersion2 */
3085
        $contentVersion2 = $this->createContentDraftVersion1(
3086
            $parentLocationId,
3087
            self::FORUM_IDENTIFIER,
3088
            'name',
3089
            $newOwner
3090
        );
3091
3092
        // Configure new target location
3093
        $targetLocationCreate = $this->locationService->newLocationCreateStruct($parentLocationId);
3094
3095
        $targetLocationCreate->priority = 42;
3096
        $targetLocationCreate->hidden = true;
3097
        $targetLocationCreate->remoteId = '01234abcdef5678901234abcdef56789';
3098
        $targetLocationCreate->sortField = Location::SORT_FIELD_NODE_ID;
3099
        $targetLocationCreate->sortOrder = Location::SORT_ORDER_DESC;
3100
3101
        // Copy content with all versions and drafts
3102
        $contentCopied = $this->contentService->copyContent(
3103
            $contentVersion2->contentInfo,
3104
            $targetLocationCreate
3105
        );
3106
3107
        $this->assertEquals(
3108
            $newOwner->id,
3109
            $contentVersion2->contentInfo->ownerId
3110
        );
3111
        $this->assertEquals(
3112
            $userService->loadUserByLogin('admin')->getUserId(),
3113
            $contentCopied->contentInfo->ownerId
3114
        );
3115
    }
3116
3117
    /**
3118
     * Test for the copyContent() method.
3119
     *
3120
     * @see \eZ\Publish\API\Repository\ContentService::copyContent($contentInfo, $destinationLocationCreateStruct, $versionInfo)
3121
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCopyContent
3122
     */
3123
    public function testCopyContentWithGivenVersion()
3124
    {
3125
        $parentLocationId = $this->generateId('location', 56);
3126
3127
        $contentVersion2 = $this->createContentVersion2();
3128
3129
        // Configure new target location
3130
        $targetLocationCreate = $this->locationService->newLocationCreateStruct($parentLocationId);
3131
3132
        $targetLocationCreate->priority = 42;
3133
        $targetLocationCreate->hidden = true;
3134
        $targetLocationCreate->remoteId = '01234abcdef5678901234abcdef56789';
3135
        $targetLocationCreate->sortField = Location::SORT_FIELD_NODE_ID;
3136
        $targetLocationCreate->sortOrder = Location::SORT_ORDER_DESC;
3137
3138
        // Copy only the initial version
3139
        $contentCopied = $this->contentService->copyContent(
3140
            $contentVersion2->contentInfo,
3141
            $targetLocationCreate,
3142
            $this->contentService->loadVersionInfo($contentVersion2->contentInfo, 1)
3143
        );
3144
3145
        $this->assertInstanceOf(
3146
            Content::class,
3147
            $contentCopied
3148
        );
3149
3150
        $this->assertNotEquals(
3151
            $contentVersion2->contentInfo->remoteId,
3152
            $contentCopied->contentInfo->remoteId
3153
        );
3154
3155
        $this->assertNotEquals(
3156
            $contentVersion2->id,
3157
            $contentCopied->id
3158
        );
3159
3160
        $this->assertEquals(
3161
            1,
3162
            count($this->contentService->loadVersions($contentCopied->contentInfo))
3163
        );
3164
3165
        $this->assertEquals(1, $contentCopied->getVersionInfo()->versionNo);
3166
3167
        $this->assertNotNull(
3168
            $contentCopied->contentInfo->mainLocationId,
3169
            'Expected main location to be set given we provided a LocationCreateStruct'
3170
        );
3171
    }
3172
3173
    /**
3174
     * Test for the addRelation() method.
3175
     *
3176
     * @return \eZ\Publish\API\Repository\Values\Content\Content
3177
     *
3178
     * @see \eZ\Publish\API\Repository\ContentService::addRelation()
3179
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersionFromContentDraft
3180
     */
3181
    public function testAddRelation()
3182
    {
3183
        $draft = $this->createContentDraftVersion1();
3184
3185
        $media = $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID);
3186
3187
        // Create relation between new content object and "Media" page
3188
        $relation = $this->contentService->addRelation(
3189
            $draft->getVersionInfo(),
3190
            $media
3191
        );
3192
3193
        $this->assertInstanceOf(
3194
            '\\eZ\\Publish\\API\\Repository\\Values\\Content\\Relation',
3195
            $relation
3196
        );
3197
3198
        return $this->contentService->loadRelations($draft->getVersionInfo());
3199
    }
3200
3201
    /**
3202
     * Test for the addRelation() method.
3203
     *
3204
     * @param \eZ\Publish\API\Repository\Values\Content\Relation[] $relations
3205
     *
3206
     * @see \eZ\Publish\API\Repository\ContentService::addRelation()
3207
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testAddRelation
3208
     */
3209
    public function testAddRelationAddsRelationToContent($relations)
3210
    {
3211
        $this->assertEquals(
3212
            1,
3213
            count($relations)
3214
        );
3215
    }
3216
3217
    /**
3218
     * @param \eZ\Publish\API\Repository\Values\Content\Relation[] $relations
3219
     */
3220
    protected function assertExpectedRelations($relations)
3221
    {
3222
        $this->assertEquals(
3223
            [
3224
                'type' => Relation::COMMON,
3225
                'sourceFieldDefinitionIdentifier' => null,
3226
                'sourceContentInfo' => 'abcdef0123456789abcdef0123456789',
3227
                'destinationContentInfo' => self::MEDIA_REMOTE_ID,
3228
            ],
3229
            [
3230
                'type' => $relations[0]->type,
3231
                'sourceFieldDefinitionIdentifier' => $relations[0]->sourceFieldDefinitionIdentifier,
3232
                'sourceContentInfo' => $relations[0]->sourceContentInfo->remoteId,
3233
                'destinationContentInfo' => $relations[0]->destinationContentInfo->remoteId,
3234
            ]
3235
        );
3236
    }
3237
3238
    /**
3239
     * Test for the addRelation() method.
3240
     *
3241
     * @param \eZ\Publish\API\Repository\Values\Content\Relation[] $relations
3242
     *
3243
     * @see \eZ\Publish\API\Repository\ContentService::addRelation()
3244
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testAddRelation
3245
     */
3246
    public function testAddRelationSetsExpectedRelations($relations)
3247
    {
3248
        $this->assertExpectedRelations($relations);
3249
    }
3250
3251
    /**
3252
     * Test for the createContentDraft() method.
3253
     *
3254
     * @return \eZ\Publish\API\Repository\Values\Content\Relation[]
3255
     *
3256
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
3257
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testAddRelationSetsExpectedRelations
3258
     */
3259
    public function testCreateContentDraftWithRelations()
3260
    {
3261
        $draft = $this->createContentDraftVersion1();
3262
        $media = $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID);
3263
3264
        // Create relation between new content object and "Media" page
3265
        $this->contentService->addRelation(
3266
            $draft->getVersionInfo(),
3267
            $media
3268
        );
3269
3270
        $content = $this->contentService->publishVersion($draft->versionInfo);
3271
        $newDraft = $this->contentService->createContentDraft($content->contentInfo);
3272
3273
        return $this->contentService->loadRelations($newDraft->getVersionInfo());
3274
    }
3275
3276
    /**
3277
     * Test for the createContentDraft() method.
3278
     *
3279
     * @param \eZ\Publish\API\Repository\Values\Content\Relation[] $relations
3280
     *
3281
     * @return \eZ\Publish\API\Repository\Values\Content\Relation[]
3282
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraftWithRelations
3283
     */
3284
    public function testCreateContentDraftWithRelationsCreatesRelations($relations)
3285
    {
3286
        $this->assertEquals(
3287
            1,
3288
            count($relations)
3289
        );
3290
3291
        return $relations;
3292
    }
3293
3294
    /**
3295
     * Test for the createContentDraft() method.
3296
     *
3297
     * @param \eZ\Publish\API\Repository\Values\Content\Relation[] $relations
3298
     *
3299
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraftWithRelationsCreatesRelations
3300
     */
3301
    public function testCreateContentDraftWithRelationsCreatesExpectedRelations($relations)
3302
    {
3303
        $this->assertExpectedRelations($relations);
3304
    }
3305
3306
    /**
3307
     * Test for the addRelation() method.
3308
     *
3309
     * @see \eZ\Publish\API\Repository\ContentService::addRelation()
3310
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testAddRelation
3311
     */
3312
    public function testAddRelationThrowsBadStateException()
3313
    {
3314
        $content = $this->createContentVersion1();
3315
3316
        $media = $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID);
3317
3318
        $this->expectException(BadStateException::class);
3319
3320
        // This call will fail with a "BadStateException", because content is published and not a draft.
3321
        $this->contentService->addRelation(
3322
            $content->getVersionInfo(),
3323
            $media
3324
        );
3325
    }
3326
3327
    /**
3328
     * Test for the loadRelations() method.
3329
     *
3330
     * @see \eZ\Publish\API\Repository\ContentService::loadRelations()
3331
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testAddRelation
3332
     */
3333
    public function testLoadRelations()
3334
    {
3335
        $draft = $this->createContentDraftVersion1();
3336
3337
        $media = $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID);
3338
        $demoDesign = $this->contentService->loadContentInfoByRemoteId(self::DEMO_DESIGN_REMOTE_ID);
3339
3340
        // Create relation between new content object and "Media" page
3341
        $this->contentService->addRelation(
3342
            $draft->getVersionInfo(),
3343
            $media
3344
        );
3345
3346
        // Create another relation with the "Demo Design" page
3347
        $this->contentService->addRelation(
3348
            $draft->getVersionInfo(),
3349
            $demoDesign
3350
        );
3351
3352
        $relations = $this->contentService->loadRelations($draft->getVersionInfo());
3353
3354
        usort(
3355
            $relations,
3356
            function ($rel1, $rel2) {
3357
                return strcasecmp(
3358
                    $rel2->getDestinationContentInfo()->remoteId,
3359
                    $rel1->getDestinationContentInfo()->remoteId
3360
                );
3361
            }
3362
        );
3363
3364
        $this->assertEquals(
3365
            [
3366
                [
3367
                    'sourceContentInfo' => 'abcdef0123456789abcdef0123456789',
3368
                    'destinationContentInfo' => self::MEDIA_REMOTE_ID,
3369
                ],
3370
                [
3371
                    'sourceContentInfo' => 'abcdef0123456789abcdef0123456789',
3372
                    'destinationContentInfo' => self::DEMO_DESIGN_REMOTE_ID,
3373
                ],
3374
            ],
3375
            [
3376
                [
3377
                    'sourceContentInfo' => $relations[0]->sourceContentInfo->remoteId,
3378
                    'destinationContentInfo' => $relations[0]->destinationContentInfo->remoteId,
3379
                ],
3380
                [
3381
                    'sourceContentInfo' => $relations[1]->sourceContentInfo->remoteId,
3382
                    'destinationContentInfo' => $relations[1]->destinationContentInfo->remoteId,
3383
                ],
3384
            ]
3385
        );
3386
    }
3387
3388
    /**
3389
     * Test for the loadRelations() method.
3390
     *
3391
     * @see \eZ\Publish\API\Repository\ContentService::loadRelations()
3392
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testAddRelation
3393
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadRelations
3394
     */
3395
    public function testLoadRelationsSkipsArchivedContent()
3396
    {
3397
        $trashService = $this->getRepository()->getTrashService();
3398
3399
        $draft = $this->createContentDraftVersion1();
3400
3401
        // Load other content objects
3402
        $media = $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID);
3403
        $demoDesign = $this->contentService->loadContentInfoByRemoteId(self::DEMO_DESIGN_REMOTE_ID);
3404
3405
        // Create relation between new content object and "Media" page
3406
        $this->contentService->addRelation(
3407
            $draft->getVersionInfo(),
3408
            $media
3409
        );
3410
3411
        // Create another relation with the "Demo Design" page
3412
        $this->contentService->addRelation(
3413
            $draft->getVersionInfo(),
3414
            $demoDesign
3415
        );
3416
3417
        $demoDesignLocation = $this->locationService->loadLocation($demoDesign->mainLocationId);
3418
3419
        // Trashing Content's last Location will change its status to archived,
3420
        // in this case relation towards it will not be loaded.
3421
        $trashService->trash($demoDesignLocation);
3422
3423
        // Load all relations
3424
        $relations = $this->contentService->loadRelations($draft->getVersionInfo());
3425
3426
        $this->assertCount(1, $relations);
3427
        $this->assertEquals(
3428
            [
3429
                [
3430
                    'sourceContentInfo' => 'abcdef0123456789abcdef0123456789',
3431
                    'destinationContentInfo' => self::MEDIA_REMOTE_ID,
3432
                ],
3433
            ],
3434
            [
3435
                [
3436
                    'sourceContentInfo' => $relations[0]->sourceContentInfo->remoteId,
3437
                    'destinationContentInfo' => $relations[0]->destinationContentInfo->remoteId,
3438
                ],
3439
            ]
3440
        );
3441
    }
3442
3443
    /**
3444
     * Test for the loadRelations() method.
3445
     *
3446
     * @see \eZ\Publish\API\Repository\ContentService::loadRelations()
3447
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testAddRelation
3448
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadRelations
3449
     */
3450
    public function testLoadRelationsSkipsDraftContent()
3451
    {
3452
        $draft = $this->createContentDraftVersion1();
3453
3454
        // Load other content objects
3455
        $media = $this->contentService->loadContentByRemoteId(self::MEDIA_REMOTE_ID);
3456
        $demoDesign = $this->contentService->loadContentInfoByRemoteId(self::DEMO_DESIGN_REMOTE_ID);
3457
3458
        // Create draft of "Media" page
3459
        $mediaDraft = $this->contentService->createContentDraft($media->contentInfo);
3460
3461
        // Create relation between "Media" page and new content object draft.
3462
        // This relation will not be loaded before the draft is published.
3463
        $this->contentService->addRelation(
3464
            $mediaDraft->getVersionInfo(),
3465
            $draft->getVersionInfo()->getContentInfo()
3466
        );
3467
3468
        // Create another relation with the "Demo Design" page
3469
        $this->contentService->addRelation(
3470
            $mediaDraft->getVersionInfo(),
3471
            $demoDesign
3472
        );
3473
3474
        $relations = $this->contentService->loadRelations($mediaDraft->getVersionInfo());
3475
3476
        $this->assertCount(1, $relations);
3477
        $this->assertEquals(
3478
            [
3479
                [
3480
                    'sourceContentInfo' => self::MEDIA_REMOTE_ID,
3481
                    'destinationContentInfo' => self::DEMO_DESIGN_REMOTE_ID,
3482
                ],
3483
            ],
3484
            [
3485
                [
3486
                    'sourceContentInfo' => $relations[0]->sourceContentInfo->remoteId,
3487
                    'destinationContentInfo' => $relations[0]->destinationContentInfo->remoteId,
3488
                ],
3489
            ]
3490
        );
3491
    }
3492
3493
    /**
3494
     * Test for the loadReverseRelations() method.
3495
     *
3496
     * @see \eZ\Publish\API\Repository\ContentService::loadReverseRelations()
3497
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testAddRelation
3498
     */
3499
    public function testLoadReverseRelations()
3500
    {
3501
        $versionInfo = $this->createContentVersion1()->getVersionInfo();
3502
        $contentInfo = $versionInfo->getContentInfo();
3503
3504
        // Create some drafts
3505
        $mediaDraft = $this->contentService->createContentDraft(
3506
            $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID)
3507
        );
3508
        $demoDesignDraft = $this->contentService->createContentDraft(
3509
            $this->contentService->loadContentInfoByRemoteId(self::DEMO_DESIGN_REMOTE_ID)
3510
        );
3511
3512
        // Create relation between new content object and "Media" page
3513
        $relation1 = $this->contentService->addRelation(
3514
            $mediaDraft->getVersionInfo(),
3515
            $contentInfo
3516
        );
3517
3518
        // Create another relation with the "Demo Design" page
3519
        $relation2 = $this->contentService->addRelation(
3520
            $demoDesignDraft->getVersionInfo(),
3521
            $contentInfo
3522
        );
3523
3524
        // Publish drafts, so relations become active
3525
        $this->contentService->publishVersion($mediaDraft->getVersionInfo());
3526
        $this->contentService->publishVersion($demoDesignDraft->getVersionInfo());
3527
3528
        $relations = $this->contentService->loadRelations($versionInfo);
3529
        $reverseRelations = $this->contentService->loadReverseRelations($contentInfo);
3530
3531
        $this->assertEquals($contentInfo->id, $relation1->getDestinationContentInfo()->id);
3532
        $this->assertEquals($mediaDraft->id, $relation1->getSourceContentInfo()->id);
3533
3534
        $this->assertEquals($contentInfo->id, $relation2->getDestinationContentInfo()->id);
3535
        $this->assertEquals($demoDesignDraft->id, $relation2->getSourceContentInfo()->id);
3536
3537
        $this->assertEquals(0, count($relations));
3538
        $this->assertEquals(2, count($reverseRelations));
3539
3540
        usort(
3541
            $reverseRelations,
3542
            function ($rel1, $rel2) {
3543
                return strcasecmp(
3544
                    $rel2->getSourceContentInfo()->remoteId,
3545
                    $rel1->getSourceContentInfo()->remoteId
3546
                );
3547
            }
3548
        );
3549
3550
        $this->assertEquals(
3551
            [
3552
                [
3553
                    'sourceContentInfo' => self::MEDIA_REMOTE_ID,
3554
                    'destinationContentInfo' => 'abcdef0123456789abcdef0123456789',
3555
                ],
3556
                [
3557
                    'sourceContentInfo' => self::DEMO_DESIGN_REMOTE_ID,
3558
                    'destinationContentInfo' => 'abcdef0123456789abcdef0123456789',
3559
                ],
3560
            ],
3561
            [
3562
                [
3563
                    'sourceContentInfo' => $reverseRelations[0]->sourceContentInfo->remoteId,
3564
                    'destinationContentInfo' => $reverseRelations[0]->destinationContentInfo->remoteId,
3565
                ],
3566
                [
3567
                    'sourceContentInfo' => $reverseRelations[1]->sourceContentInfo->remoteId,
3568
                    'destinationContentInfo' => $reverseRelations[1]->destinationContentInfo->remoteId,
3569
                ],
3570
            ]
3571
        );
3572
    }
3573
3574
    /**
3575
     * Test for the loadReverseRelations() method.
3576
     *
3577
     * @see \eZ\Publish\API\Repository\ContentService::loadReverseRelations()
3578
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testAddRelation
3579
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadReverseRelations
3580
     */
3581
    public function testLoadReverseRelationsSkipsArchivedContent()
3582
    {
3583
        $trashService = $this->getRepository()->getTrashService();
3584
3585
        $versionInfo = $this->createContentVersion1()->getVersionInfo();
3586
        $contentInfo = $versionInfo->getContentInfo();
3587
3588
        // Create some drafts
3589
        $mediaDraft = $this->contentService->createContentDraft(
3590
            $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID)
3591
        );
3592
        $demoDesignDraft = $this->contentService->createContentDraft(
3593
            $this->contentService->loadContentInfoByRemoteId(self::DEMO_DESIGN_REMOTE_ID)
3594
        );
3595
3596
        // Create relation between new content object and "Media" page
3597
        $relation1 = $this->contentService->addRelation(
3598
            $mediaDraft->getVersionInfo(),
3599
            $contentInfo
3600
        );
3601
3602
        // Create another relation with the "Demo Design" page
3603
        $relation2 = $this->contentService->addRelation(
3604
            $demoDesignDraft->getVersionInfo(),
3605
            $contentInfo
3606
        );
3607
3608
        // Publish drafts, so relations become active
3609
        $this->contentService->publishVersion($mediaDraft->getVersionInfo());
3610
        $this->contentService->publishVersion($demoDesignDraft->getVersionInfo());
3611
3612
        $demoDesignLocation = $this->locationService->loadLocation($demoDesignDraft->contentInfo->mainLocationId);
3613
3614
        // Trashing Content's last Location will change its status to archived,
3615
        // in this case relation from it will not be loaded.
3616
        $trashService->trash($demoDesignLocation);
3617
3618
        // Load all relations
3619
        $relations = $this->contentService->loadRelations($versionInfo);
3620
        $reverseRelations = $this->contentService->loadReverseRelations($contentInfo);
3621
3622
        $this->assertEquals($contentInfo->id, $relation1->getDestinationContentInfo()->id);
3623
        $this->assertEquals($mediaDraft->id, $relation1->getSourceContentInfo()->id);
3624
3625
        $this->assertEquals($contentInfo->id, $relation2->getDestinationContentInfo()->id);
3626
        $this->assertEquals($demoDesignDraft->id, $relation2->getSourceContentInfo()->id);
3627
3628
        $this->assertEquals(0, count($relations));
3629
        $this->assertEquals(1, count($reverseRelations));
3630
3631
        $this->assertEquals(
3632
            [
3633
                [
3634
                    'sourceContentInfo' => self::MEDIA_REMOTE_ID,
3635
                    'destinationContentInfo' => 'abcdef0123456789abcdef0123456789',
3636
                ],
3637
            ],
3638
            [
3639
                [
3640
                    'sourceContentInfo' => $reverseRelations[0]->sourceContentInfo->remoteId,
3641
                    'destinationContentInfo' => $reverseRelations[0]->destinationContentInfo->remoteId,
3642
                ],
3643
            ]
3644
        );
3645
    }
3646
3647
    /**
3648
     * Test for the loadReverseRelations() method.
3649
     *
3650
     * @see \eZ\Publish\API\Repository\ContentService::loadReverseRelations()
3651
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testAddRelation
3652
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadReverseRelations
3653
     */
3654
    public function testLoadReverseRelationsSkipsDraftContent()
3655
    {
3656
        // Load "Media" page Content
3657
        $media = $this->contentService->loadContentByRemoteId(self::MEDIA_REMOTE_ID);
3658
3659
        // Create some drafts
3660
        $newDraftVersionInfo = $this->createContentDraftVersion1()->getVersionInfo();
3661
        $demoDesignDraft = $this->contentService->createContentDraft(
3662
            $this->contentService->loadContentInfoByRemoteId(self::DEMO_DESIGN_REMOTE_ID)
3663
        );
3664
3665
        // Create relation between "Media" page and new content object
3666
        $relation1 = $this->contentService->addRelation(
3667
            $newDraftVersionInfo,
3668
            $media->contentInfo
3669
        );
3670
3671
        // Create another relation with the "Demo Design" page
3672
        $relation2 = $this->contentService->addRelation(
3673
            $demoDesignDraft->getVersionInfo(),
3674
            $media->contentInfo
3675
        );
3676
3677
        // Publish drafts, so relations become active
3678
        $this->contentService->publishVersion($demoDesignDraft->getVersionInfo());
3679
        // We will not publish new Content draft, therefore relation from it
3680
        // will not be loaded as reverse relation for "Media" page
3681
3682
        $relations = $this->contentService->loadRelations($media->versionInfo);
3683
        $reverseRelations = $this->contentService->loadReverseRelations($media->contentInfo);
3684
3685
        $this->assertEquals($media->contentInfo->id, $relation1->getDestinationContentInfo()->id);
3686
        $this->assertEquals($newDraftVersionInfo->contentInfo->id, $relation1->getSourceContentInfo()->id);
3687
3688
        $this->assertEquals($media->contentInfo->id, $relation2->getDestinationContentInfo()->id);
3689
        $this->assertEquals($demoDesignDraft->id, $relation2->getSourceContentInfo()->id);
3690
3691
        $this->assertEquals(0, count($relations));
3692
        $this->assertEquals(1, count($reverseRelations));
3693
3694
        $this->assertEquals(
3695
            [
3696
                [
3697
                    'sourceContentInfo' => self::DEMO_DESIGN_REMOTE_ID,
3698
                    'destinationContentInfo' => self::MEDIA_REMOTE_ID,
3699
                ],
3700
            ],
3701
            [
3702
                [
3703
                    'sourceContentInfo' => $reverseRelations[0]->sourceContentInfo->remoteId,
3704
                    'destinationContentInfo' => $reverseRelations[0]->destinationContentInfo->remoteId,
3705
                ],
3706
            ]
3707
        );
3708
    }
3709
3710
    /**
3711
     * Test for the deleteRelation() method.
3712
     *
3713
     * @see \eZ\Publish\API\Repository\ContentService::deleteRelation()
3714
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadRelations
3715
     */
3716
    public function testDeleteRelation()
3717
    {
3718
        $draft = $this->createContentDraftVersion1();
3719
3720
        $media = $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID);
3721
        $demoDesign = $this->contentService->loadContentInfoByRemoteId(self::DEMO_DESIGN_REMOTE_ID);
3722
3723
        // Establish some relations
3724
        $this->contentService->addRelation($draft->getVersionInfo(), $media);
3725
        $this->contentService->addRelation($draft->getVersionInfo(), $demoDesign);
3726
3727
        // Delete one of the currently created relations
3728
        $this->contentService->deleteRelation($draft->getVersionInfo(), $media);
3729
3730
        // The relations array now contains only one element
3731
        $relations = $this->contentService->loadRelations($draft->getVersionInfo());
3732
3733
        $this->assertEquals(1, count($relations));
3734
    }
3735
3736
    /**
3737
     * Test for the deleteRelation() method.
3738
     *
3739
     * @see \eZ\Publish\API\Repository\ContentService::deleteRelation()
3740
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testDeleteRelation
3741
     */
3742
    public function testDeleteRelationThrowsBadStateException()
3743
    {
3744
        $content = $this->createContentVersion1();
3745
3746
        // Load the destination object
3747
        $media = $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID);
3748
3749
        // Create a new draft
3750
        $draftVersion2 = $this->contentService->createContentDraft($content->contentInfo);
3751
3752
        // Add a relation
3753
        $this->contentService->addRelation($draftVersion2->getVersionInfo(), $media);
3754
3755
        // Publish new version
3756
        $contentVersion2 = $this->contentService->publishVersion(
3757
            $draftVersion2->getVersionInfo()
3758
        );
3759
3760
        $this->expectException(BadStateException::class);
3761
3762
        // This call will fail with a "BadStateException", because content is published and not a draft.
3763
        $this->contentService->deleteRelation(
3764
            $contentVersion2->getVersionInfo(),
3765
            $media
3766
        );
3767
    }
3768
3769
    /**
3770
     * Test for the deleteRelation() method.
3771
     *
3772
     * @see \eZ\Publish\API\Repository\ContentService::deleteRelation()
3773
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testDeleteRelation
3774
     */
3775
    public function testDeleteRelationThrowsInvalidArgumentException()
3776
    {
3777
        $draft = $this->createContentDraftVersion1();
3778
3779
        // Load the destination object
3780
        $media = $this->contentService->loadContentInfoByRemoteId(self::MEDIA_REMOTE_ID);
3781
3782
        // This call will fail with a "InvalidArgumentException", because no relation exists between $draft and $media.
3783
        $this->expectException(APIInvalidArgumentException::class);
3784
        $this->contentService->deleteRelation(
3785
            $draft->getVersionInfo(),
3786
            $media
3787
        );
3788
    }
3789
3790
    /**
3791
     * Test for the createContent() method.
3792
     *
3793
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
3794
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
3795
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
3796
     */
3797
    public function testCreateContentInTransactionWithRollback()
3798
    {
3799
        if ($this->isVersion4()) {
3800
            $this->markTestSkipped('This test requires eZ Publish 5');
3801
        }
3802
3803
        $repository = $this->getRepository();
3804
3805
        $contentTypeService = $this->getRepository()->getContentTypeService();
3806
3807
        // Start a transaction
3808
        $repository->beginTransaction();
3809
3810
        try {
3811
            $contentType = $contentTypeService->loadContentTypeByIdentifier(self::FORUM_IDENTIFIER);
3812
3813
            // Get a content create struct and set mandatory properties
3814
            $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
3815
            $contentCreate->setField('name', 'Sindelfingen forum');
3816
3817
            $contentCreate->remoteId = 'abcdef0123456789abcdef0123456789';
3818
            $contentCreate->alwaysAvailable = true;
3819
3820
            // Create a new content object
3821
            $contentId = $this->contentService->createContent($contentCreate)->id;
3822
        } catch (Exception $e) {
3823
            // Cleanup hanging transaction on error
3824
            $repository->rollback();
3825
            throw $e;
3826
        }
3827
3828
        // Rollback all changes
3829
        $repository->rollback();
3830
3831
        try {
3832
            // This call will fail with a "NotFoundException"
3833
            $this->contentService->loadContent($contentId);
3834
        } catch (NotFoundException $e) {
3835
            // This is expected
3836
            return;
3837
        }
3838
3839
        $this->fail('Content object still exists after rollback.');
3840
    }
3841
3842
    /**
3843
     * Test for the createContent() method.
3844
     *
3845
     * @see \eZ\Publish\API\Repository\ContentService::createContent()
3846
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
3847
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
3848
     */
3849
    public function testCreateContentInTransactionWithCommit()
3850
    {
3851
        if ($this->isVersion4()) {
3852
            $this->markTestSkipped('This test requires eZ Publish 5');
3853
        }
3854
3855
        $repository = $this->getRepository();
3856
3857
        $contentTypeService = $repository->getContentTypeService();
3858
3859
        // Start a transaction
3860
        $repository->beginTransaction();
3861
3862
        try {
3863
            $contentType = $contentTypeService->loadContentTypeByIdentifier(self::FORUM_IDENTIFIER);
3864
3865
            // Get a content create struct and set mandatory properties
3866
            $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
3867
            $contentCreate->setField('name', 'Sindelfingen forum');
3868
3869
            $contentCreate->remoteId = 'abcdef0123456789abcdef0123456789';
3870
            $contentCreate->alwaysAvailable = true;
3871
3872
            // Create a new content object
3873
            $contentId = $this->contentService->createContent($contentCreate)->id;
3874
3875
            // Commit changes
3876
            $repository->commit();
3877
        } catch (Exception $e) {
3878
            // Cleanup hanging transaction on error
3879
            $repository->rollback();
3880
            throw $e;
3881
        }
3882
3883
        // Load the new content object
3884
        $content = $this->contentService->loadContent($contentId);
3885
3886
        $this->assertEquals($contentId, $content->id);
3887
    }
3888
3889
    /**
3890
     * Test for the createContent() method.
3891
     *
3892
     * @see \eZ\Publish\API\Repository\ContentService::createContent($contentCreateStruct, $locationCreateStructs)
3893
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentWithLocationCreateParameterDoesNotCreateLocationImmediately
3894
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentThrowsNotFoundException
3895
     */
3896
    public function testCreateContentWithLocationCreateParameterInTransactionWithRollback()
3897
    {
3898
        $repository = $this->getRepository();
3899
3900
        // Start a transaction
3901
        $repository->beginTransaction();
3902
3903
        try {
3904
            $draft = $this->createContentDraftVersion1();
3905
        } catch (Exception $e) {
3906
            // Cleanup hanging transaction on error
3907
            $repository->rollback();
3908
            throw $e;
3909
        }
3910
3911
        $contentId = $draft->id;
3912
3913
        // Roleback the transaction
3914
        $repository->rollback();
3915
3916
        try {
3917
            // This call will fail with a "NotFoundException"
3918
            $this->contentService->loadContent($contentId);
3919
        } catch (NotFoundException $e) {
3920
            return;
3921
        }
3922
3923
        $this->fail('Can still load content object after rollback.');
3924
    }
3925
3926
    /**
3927
     * Test for the createContent() method.
3928
     *
3929
     * @see \eZ\Publish\API\Repository\ContentService::createContent($contentCreateStruct, $locationCreateStructs)
3930
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentWithLocationCreateParameterDoesNotCreateLocationImmediately
3931
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentThrowsNotFoundException
3932
     */
3933
    public function testCreateContentWithLocationCreateParameterInTransactionWithCommit()
3934
    {
3935
        $repository = $this->getRepository();
3936
3937
        // Start a transaction
3938
        $repository->beginTransaction();
3939
3940
        try {
3941
            $draft = $this->createContentDraftVersion1();
3942
3943
            $contentId = $draft->id;
3944
3945
            // Roleback the transaction
3946
            $repository->commit();
3947
        } catch (Exception $e) {
3948
            // Cleanup hanging transaction on error
3949
            $repository->rollback();
3950
            throw $e;
3951
        }
3952
3953
        // Load the new content object
3954
        $content = $this->contentService->loadContent($contentId);
3955
3956
        $this->assertEquals($contentId, $content->id);
3957
    }
3958
3959
    /**
3960
     * Test for the createContentDraft() method.
3961
     *
3962
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
3963
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
3964
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
3965
     */
3966
    public function testCreateContentDraftInTransactionWithRollback()
3967
    {
3968
        $repository = $this->getRepository();
3969
3970
        $contentId = $this->generateId('object', self::ADMINISTRATORS_USER_GROUP_ID);
3971
3972
        // Load the user group content object
3973
        $content = $this->contentService->loadContent($contentId);
3974
3975
        // Start a new transaction
3976
        $repository->beginTransaction();
3977
3978
        try {
3979
            // Create a new draft
3980
            $drafted = $this->contentService->createContentDraft($content->contentInfo);
3981
3982
            // Store version number for later reuse
3983
            $versionNo = $drafted->versionInfo->versionNo;
3984
        } catch (Exception $e) {
3985
            // Cleanup hanging transaction on error
3986
            $repository->rollback();
3987
            throw $e;
3988
        }
3989
3990
        // Rollback
3991
        $repository->rollback();
3992
3993
        try {
3994
            // This call will fail with a "NotFoundException"
3995
            $this->contentService->loadContent($contentId, null, $versionNo);
3996
        } catch (NotFoundException $e) {
3997
            return;
3998
        }
3999
4000
        $this->fail('Can still load content draft after rollback');
4001
    }
4002
4003
    /**
4004
     * Test for the createContentDraft() method.
4005
     *
4006
     * @see \eZ\Publish\API\Repository\ContentService::createContentDraft()
4007
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContentDraft
4008
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
4009
     */
4010
    public function testCreateContentDraftInTransactionWithCommit()
4011
    {
4012
        $repository = $this->getRepository();
4013
4014
        $contentId = $this->generateId('object', self::ADMINISTRATORS_USER_GROUP_ID);
4015
4016
        // Load the user group content object
4017
        $content = $this->contentService->loadContent($contentId);
4018
4019
        // Start a new transaction
4020
        $repository->beginTransaction();
4021
4022
        try {
4023
            // Create a new draft
4024
            $drafted = $this->contentService->createContentDraft($content->contentInfo);
4025
4026
            // Store version number for later reuse
4027
            $versionNo = $drafted->versionInfo->versionNo;
4028
4029
            // Commit all changes
4030
            $repository->commit();
4031
        } catch (Exception $e) {
4032
            // Cleanup hanging transaction on error
4033
            $repository->rollback();
4034
            throw $e;
4035
        }
4036
4037
        $content = $this->contentService->loadContent($contentId, null, $versionNo);
4038
4039
        $this->assertEquals(
4040
            $versionNo,
4041
            $content->getVersionInfo()->versionNo
4042
        );
4043
    }
4044
4045
    /**
4046
     * Test for the publishVersion() method.
4047
     *
4048
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
4049
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
4050
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
4051
     */
4052
    public function testPublishVersionInTransactionWithRollback()
4053
    {
4054
        $repository = $this->getRepository();
4055
4056
        $contentId = $this->generateId('object', self::ADMINISTRATORS_USER_GROUP_ID);
4057
4058
        // Load the user group content object
4059
        $content = $this->contentService->loadContent($contentId);
4060
4061
        // Start a new transaction
4062
        $repository->beginTransaction();
4063
4064
        try {
4065
            $draftVersion = $this->contentService->createContentDraft($content->contentInfo)->getVersionInfo();
4066
4067
            // Publish a new version
4068
            $content = $this->contentService->publishVersion($draftVersion);
4069
4070
            // Store version number for later reuse
4071
            $versionNo = $content->versionInfo->versionNo;
4072
        } catch (Exception $e) {
4073
            // Cleanup hanging transaction on error
4074
            $repository->rollback();
4075
            throw $e;
4076
        }
4077
4078
        // Rollback
4079
        $repository->rollback();
4080
4081
        try {
4082
            // This call will fail with a "NotFoundException"
4083
            $this->contentService->loadContent($contentId, null, $versionNo);
4084
        } catch (NotFoundException $e) {
4085
            return;
4086
        }
4087
4088
        $this->fail('Can still load content draft after rollback');
4089
    }
4090
4091
    /**
4092
     * Test for the publishVersion() method.
4093
     *
4094
     * @see \eZ\Publish\API\Repository\ContentService::publishVersion()
4095
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testPublishVersion
4096
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadVersionInfo
4097
     */
4098
    public function testPublishVersionInTransactionWithCommit()
4099
    {
4100
        $repository = $this->getRepository();
4101
4102
        // Load the user group content object
4103
        $template = $this->contentService->loadContent(self::ADMINISTRATORS_USER_GROUP_ID);
4104
4105
        // Start a new transaction
4106
        $repository->beginTransaction();
4107
4108
        try {
4109
            // Publish a new version
4110
            $content = $this->contentService->publishVersion(
4111
                $this->contentService->createContentDraft($template->contentInfo)->getVersionInfo()
4112
            );
4113
4114
            // Store version number for later reuse
4115
            $versionNo = $content->versionInfo->versionNo;
4116
4117
            // Commit all changes
4118
            $repository->commit();
4119
        } catch (Exception $e) {
4120
            // Cleanup hanging transaction on error
4121
            $repository->rollback();
4122
            throw $e;
4123
        }
4124
4125
        // Load current version info
4126
        $versionInfo = $this->contentService->loadVersionInfo($content->contentInfo);
4127
4128
        $this->assertEquals($versionNo, $versionInfo->versionNo);
4129
    }
4130
4131
    /**
4132
     * Test for the updateContent() method.
4133
     *
4134
     * @see \eZ\Publish\API\Repository\ContentService::updateContent()
4135
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContent
4136
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
4137
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
4138
     */
4139
    public function testUpdateContentInTransactionWithRollback()
4140
    {
4141
        $repository = $this->getRepository();
4142
4143
        $contentId = $this->generateId('object', self::ADMINISTRATORS_USER_GROUP_ID);
4144
4145
        // Create a new user group draft
4146
        $draft = $this->contentService->createContentDraft(
4147
            $this->contentService->loadContentInfo($contentId)
4148
        );
4149
4150
        // Get an update struct and change the group name
4151
        $contentUpdate = $this->contentService->newContentUpdateStruct();
4152
        $contentUpdate->setField('name', self::ADMINISTRATORS_USER_GROUP_NAME, self::ENG_US);
4153
4154
        // Start a transaction
4155
        $repository->beginTransaction();
4156
4157
        try {
4158
            // Update the group name
4159
            $draft = $this->contentService->updateContent(
4160
                $draft->getVersionInfo(),
4161
                $contentUpdate
4162
            );
4163
4164
            // Publish updated version
4165
            $this->contentService->publishVersion($draft->getVersionInfo());
4166
        } catch (Exception $e) {
4167
            // Cleanup hanging transaction on error
4168
            $repository->rollback();
4169
            throw $e;
4170
        }
4171
4172
        // Rollback all changes.
4173
        $repository->rollback();
4174
4175
        // Name will still be "Administrator users"
4176
        $name = $this->contentService->loadContent($contentId)->getFieldValue('name');
4177
4178
        $this->assertEquals('Administrator users', $name);
4179
    }
4180
4181
    /**
4182
     * Test for the updateContent() method.
4183
     *
4184
     * @see \eZ\Publish\API\Repository\ContentService::updateContent()
4185
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContent
4186
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContent
4187
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
4188
     */
4189
    public function testUpdateContentInTransactionWithCommit()
4190
    {
4191
        $repository = $this->getRepository();
4192
4193
        $contentId = $this->generateId('object', self::ADMINISTRATORS_USER_GROUP_ID);
4194
4195
        // Create a new user group draft
4196
        $draft = $this->contentService->createContentDraft(
4197
            $this->contentService->loadContentInfo($contentId)
4198
        );
4199
4200
        // Get an update struct and change the group name
4201
        $contentUpdate = $this->contentService->newContentUpdateStruct();
4202
        $contentUpdate->setField('name', self::ADMINISTRATORS_USER_GROUP_NAME, self::ENG_US);
4203
4204
        // Start a transaction
4205
        $repository->beginTransaction();
4206
4207
        try {
4208
            // Update the group name
4209
            $draft = $this->contentService->updateContent(
4210
                $draft->getVersionInfo(),
4211
                $contentUpdate
4212
            );
4213
4214
            // Publish updated version
4215
            $this->contentService->publishVersion($draft->getVersionInfo());
4216
4217
            // Commit all changes.
4218
            $repository->commit();
4219
        } catch (Exception $e) {
4220
            // Cleanup hanging transaction on error
4221
            $repository->rollback();
4222
            throw $e;
4223
        }
4224
4225
        // Name is now "Administrators"
4226
        $name = $this->contentService->loadContent($contentId)->getFieldValue('name', self::ENG_US);
4227
4228
        $this->assertEquals(self::ADMINISTRATORS_USER_GROUP_NAME, $name);
4229
    }
4230
4231
    /**
4232
     * Test for the updateContentMetadata() method.
4233
     *
4234
     * @see \eZ\Publish\API\Repository\ContentService::updateContentMetadata()
4235
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContentMetadata
4236
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
4237
     */
4238
    public function testUpdateContentMetadataInTransactionWithRollback()
4239
    {
4240
        $repository = $this->getRepository();
4241
4242
        $contentId = $this->generateId('object', self::ADMINISTRATORS_USER_GROUP_ID);
4243
4244
        // Load a ContentInfo object
4245
        $contentInfo = $this->contentService->loadContentInfo($contentId);
4246
4247
        // Store remoteId for later testing
4248
        $remoteId = $contentInfo->remoteId;
4249
4250
        // Start a transaction
4251
        $repository->beginTransaction();
4252
4253
        try {
4254
            // Get metadata update struct and change remoteId
4255
            $metadataUpdate = $this->contentService->newContentMetadataUpdateStruct();
4256
            $metadataUpdate->remoteId = md5(microtime(true));
4257
4258
            // Update the metadata of the published content object
4259
            $this->contentService->updateContentMetadata(
4260
                $contentInfo,
4261
                $metadataUpdate
4262
            );
4263
        } catch (Exception $e) {
4264
            // Cleanup hanging transaction on error
4265
            $repository->rollback();
4266
            throw $e;
4267
        }
4268
4269
        // Rollback all changes.
4270
        $repository->rollback();
4271
4272
        // Load current remoteId
4273
        $remoteIdReloaded = $this->contentService->loadContentInfo($contentId)->remoteId;
4274
4275
        $this->assertEquals($remoteId, $remoteIdReloaded);
4276
    }
4277
4278
    /**
4279
     * Test for the updateContentMetadata() method.
4280
     *
4281
     * @see \eZ\Publish\API\Repository\ContentService::updateContentMetadata()
4282
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testUpdateContentMetadata
4283
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
4284
     */
4285
    public function testUpdateContentMetadataInTransactionWithCommit()
4286
    {
4287
        $repository = $this->getRepository();
4288
4289
        $contentId = $this->generateId('object', self::ADMINISTRATORS_USER_GROUP_ID);
4290
4291
        // Load a ContentInfo object
4292
        $contentInfo = $this->contentService->loadContentInfo($contentId);
4293
4294
        // Store remoteId for later testing
4295
        $remoteId = $contentInfo->remoteId;
4296
4297
        // Start a transaction
4298
        $repository->beginTransaction();
4299
4300
        try {
4301
            // Get metadata update struct and change remoteId
4302
            $metadataUpdate = $this->contentService->newContentMetadataUpdateStruct();
4303
            $metadataUpdate->remoteId = md5(microtime(true));
4304
4305
            // Update the metadata of the published content object
4306
            $this->contentService->updateContentMetadata(
4307
                $contentInfo,
4308
                $metadataUpdate
4309
            );
4310
4311
            // Commit all changes.
4312
            $repository->commit();
4313
        } catch (Exception $e) {
4314
            // Cleanup hanging transaction on error
4315
            $repository->rollback();
4316
            throw $e;
4317
        }
4318
4319
        // Load current remoteId
4320
        $remoteIdReloaded = $this->contentService->loadContentInfo($contentId)->remoteId;
4321
4322
        $this->assertNotEquals($remoteId, $remoteIdReloaded);
4323
    }
4324
4325
    /**
4326
     * Test for the deleteVersion() method.
4327
     *
4328
     * @see \eZ\Publish\API\Repository\ContentService::deleteVersion()
4329
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
4330
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
4331
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentDrafts
4332
     */
4333
    public function testDeleteVersionInTransactionWithRollback()
4334
    {
4335
        $repository = $this->getRepository();
4336
4337
        $contentId = $this->generateId('object', self::ADMINISTRATORS_USER_GROUP_ID);
4338
4339
        // Start a new transaction
4340
        $repository->beginTransaction();
4341
4342
        try {
4343
            // Create a new draft
4344
            $draft = $this->contentService->createContentDraft(
4345
                $this->contentService->loadContentInfo($contentId)
4346
            );
4347
4348
            $this->contentService->deleteVersion($draft->getVersionInfo());
4349
        } catch (Exception $e) {
4350
            // Cleanup hanging transaction on error
4351
            $repository->rollback();
4352
            throw $e;
4353
        }
4354
4355
        // Rollback all changes.
4356
        $repository->rollback();
4357
4358
        // This array will be empty
4359
        $drafts = $this->contentService->loadContentDrafts();
4360
4361
        $this->assertSame([], $drafts);
4362
    }
4363
4364
    /**
4365
     * Test for the deleteVersion() method.
4366
     *
4367
     * @see \eZ\Publish\API\Repository\ContentService::deleteVersion()
4368
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCreateContent
4369
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
4370
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentDrafts
4371
     */
4372
    public function testDeleteVersionInTransactionWithCommit()
4373
    {
4374
        $repository = $this->getRepository();
4375
4376
        $contentId = $this->generateId('object', self::ADMINISTRATORS_USER_GROUP_ID);
4377
4378
        // Start a new transaction
4379
        $repository->beginTransaction();
4380
4381
        try {
4382
            // Create a new draft
4383
            $draft = $this->contentService->createContentDraft(
4384
                $this->contentService->loadContentInfo($contentId)
4385
            );
4386
4387
            $this->contentService->deleteVersion($draft->getVersionInfo());
4388
4389
            // Commit all changes.
4390
            $repository->commit();
4391
        } catch (Exception $e) {
4392
            // Cleanup hanging transaction on error
4393
            $repository->rollback();
4394
            throw $e;
4395
        }
4396
4397
        // This array will contain no element
4398
        $drafts = $this->contentService->loadContentDrafts();
4399
4400
        $this->assertSame([], $drafts);
4401
    }
4402
4403
    /**
4404
     * Test for the deleteContent() method.
4405
     *
4406
     * @see \eZ\Publish\API\Repository\ContentService::deleteContent()
4407
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testDeleteContent
4408
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
4409
     */
4410
    public function testDeleteContentInTransactionWithRollback()
4411
    {
4412
        $repository = $this->getRepository();
4413
4414
        $contentId = $this->generateId('object', self::MEMBERS_USER_GROUP_ID);
4415
4416
        // Load a ContentInfo instance
4417
        $contentInfo = $this->contentService->loadContentInfo($contentId);
4418
4419
        // Start a new transaction
4420
        $repository->beginTransaction();
4421
4422
        try {
4423
            // Delete content object
4424
            $this->contentService->deleteContent($contentInfo);
4425
        } catch (Exception $e) {
4426
            // Cleanup hanging transaction on error
4427
            $repository->rollback();
4428
            throw $e;
4429
        }
4430
4431
        // Rollback all changes
4432
        $repository->rollback();
4433
4434
        // This call will return the original content object
4435
        $contentInfo = $this->contentService->loadContentInfo($contentId);
4436
4437
        $this->assertEquals($contentId, $contentInfo->id);
4438
    }
4439
4440
    /**
4441
     * Test for the deleteContent() method.
4442
     *
4443
     * @see \eZ\Publish\API\Repository\ContentService::deleteContent()
4444
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testDeleteContent
4445
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testLoadContentInfo
4446
     */
4447
    public function testDeleteContentInTransactionWithCommit()
4448
    {
4449
        $repository = $this->getRepository();
4450
4451
        $contentId = $this->generateId('object', self::MEMBERS_USER_GROUP_ID);
4452
4453
        // Load a ContentInfo instance
4454
        $contentInfo = $this->contentService->loadContentInfo($contentId);
4455
4456
        // Start a new transaction
4457
        $repository->beginTransaction();
4458
4459
        try {
4460
            // Delete content object
4461
            $this->contentService->deleteContent($contentInfo);
4462
4463
            // Commit all changes
4464
            $repository->commit();
4465
        } catch (Exception $e) {
4466
            // Cleanup hanging transaction on error
4467
            $repository->rollback();
4468
            throw $e;
4469
        }
4470
4471
        // Deleted content info is not found anymore
4472
        try {
4473
            $this->contentService->loadContentInfo($contentId);
4474
        } catch (NotFoundException $e) {
4475
            return;
4476
        }
4477
4478
        $this->fail('Can still load ContentInfo after commit.');
4479
    }
4480
4481
    /**
4482
     * Test for the copyContent() method.
4483
     *
4484
     * @see \eZ\Publish\API\Repository\ContentService::copyContent()
4485
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCopyContent
4486
     * @depend(s) eZ\Publish\API\Repository\Tests\LocationServiceTest::testNewLocationCreateStruct
4487
     * @depend(s) eZ\Publish\API\Repository\Tests\LocationServiceTest::testLoadLocationChildren
4488
     * @depend(s) eZ\Publish\API\Repository\Tests\LocationServiceTest::testLoadLocation
4489
     */
4490
    public function testCopyContentInTransactionWithRollback()
4491
    {
4492
        $repository = $this->getRepository();
4493
4494
        $contentId = $this->generateId('object', self::MEMBERS_USER_GROUP_ID);
4495
        $locationId = $this->generateId('location', self::ADMINISTRATORS_USER_GROUP_LOCATION_ID);
4496
4497
        // Load content object to copy
4498
        $content = $this->contentService->loadContent($contentId);
4499
4500
        // Create new target location
4501
        $locationCreate = $this->locationService->newLocationCreateStruct($locationId);
4502
4503
        // Start a new transaction
4504
        $repository->beginTransaction();
4505
4506
        try {
4507
            // Copy content with all versions and drafts
4508
            $this->contentService->copyContent(
4509
                $content->contentInfo,
4510
                $locationCreate
4511
            );
4512
        } catch (Exception $e) {
4513
            // Cleanup hanging transaction on error
4514
            $repository->rollback();
4515
            throw $e;
4516
        }
4517
4518
        // Rollback all changes
4519
        $repository->rollback();
4520
4521
        $this->refreshSearch($repository);
4522
4523
        // This array will only contain a single admin user object
4524
        $locations = $this->locationService->loadLocationChildren(
4525
            $this->locationService->loadLocation($locationId)
4526
        )->locations;
4527
4528
        $this->assertEquals(1, count($locations));
4529
    }
4530
4531
    /**
4532
     * Test for the copyContent() method.
4533
     *
4534
     * @see \eZ\Publish\API\Repository\ContentService::copyContent()
4535
     * @depends eZ\Publish\API\Repository\Tests\ContentServiceTest::testCopyContent
4536
     * @depend(s) eZ\Publish\API\Repository\Tests\LocationServiceTest::testNewLocationCreateStruct
4537
     * @depend(s) eZ\Publish\API\Repository\Tests\LocationServiceTest::testLoadLocationChildren
4538
     * @depend(s) eZ\Publish\API\Repository\Tests\LocationServiceTest::testLoadLocation
4539
     */
4540
    public function testCopyContentInTransactionWithCommit()
4541
    {
4542
        $repository = $this->getRepository();
4543
4544
        $contentId = $this->generateId('object', self::MEMBERS_USER_GROUP_ID);
4545
        $locationId = $this->generateId('location', self::ADMINISTRATORS_USER_GROUP_LOCATION_ID);
4546
4547
        // Load content object to copy
4548
        $content = $this->contentService->loadContent($contentId);
4549
4550
        // Create new target location
4551
        $locationCreate = $this->locationService->newLocationCreateStruct($locationId);
4552
4553
        // Start a new transaction
4554
        $repository->beginTransaction();
4555
4556
        try {
4557
            // Copy content with all versions and drafts
4558
            $this->contentService->copyContent(
4559
                $content->contentInfo,
4560
                $locationCreate
4561
            );
4562
4563
            // Commit all changes
4564
            $repository->commit();
4565
        } catch (Exception $e) {
4566
            // Cleanup hanging transaction on error
4567
            $repository->rollback();
4568
            throw $e;
4569
        }
4570
4571
        $this->refreshSearch($repository);
4572
4573
        // This will contain the admin user and the new child location
4574
        $locations = $this->locationService->loadLocationChildren(
4575
            $this->locationService->loadLocation($locationId)
4576
        )->locations;
4577
4578
        $this->assertEquals(2, count($locations));
4579
    }
4580
4581
    public function testURLAliasesCreatedForNewContent()
4582
    {
4583
        $urlAliasService = $this->getRepository()->getURLAliasService();
4584
4585
        $draft = $this->createContentDraftVersion1();
4586
4587
        // Automatically creates a new URLAlias for the content
4588
        $liveContent = $this->contentService->publishVersion($draft->getVersionInfo());
4589
4590
        $location = $this->locationService->loadLocation(
4591
            $liveContent->getVersionInfo()->getContentInfo()->mainLocationId
4592
        );
4593
4594
        $aliases = $urlAliasService->listLocationAliases($location, false);
4595
4596
        $this->assertAliasesCorrect(
4597
            [
4598
                '/Design/Plain-site/An-awesome-forum' => [
4599
                    'type' => URLAlias::LOCATION,
4600
                    'destination' => $location->id,
4601
                    'path' => '/Design/Plain-site/An-awesome-forum',
4602
                    'languageCodes' => [self::ENG_US],
4603
                    'isHistory' => false,
4604
                    'isCustom' => false,
4605
                    'forward' => false,
4606
                ],
4607
            ],
4608
            $aliases
4609
        );
4610
    }
4611
4612
    public function testURLAliasesCreatedForUpdatedContent()
4613
    {
4614
        $urlAliasService = $this->getRepository()->getURLAliasService();
4615
4616
        $draft = $this->createUpdatedDraftVersion2();
4617
4618
        $location = $this->locationService->loadLocation(
4619
            $draft->getVersionInfo()->getContentInfo()->mainLocationId
4620
        );
4621
4622
        // Load and assert URL aliases before publishing updated Content, so that
4623
        // SPI cache is warmed up and cache invalidation is also tested.
4624
        $aliases = $urlAliasService->listLocationAliases($location, false);
4625
4626
        $this->assertAliasesCorrect(
4627
            [
4628
                '/Design/Plain-site/An-awesome-forum' => [
4629
                    'type' => URLAlias::LOCATION,
4630
                    'destination' => $location->id,
4631
                    'path' => '/Design/Plain-site/An-awesome-forum',
4632
                    'languageCodes' => [self::ENG_US],
4633
                    'alwaysAvailable' => true,
4634
                    'isHistory' => false,
4635
                    'isCustom' => false,
4636
                    'forward' => false,
4637
                ],
4638
            ],
4639
            $aliases
4640
        );
4641
4642
        // Automatically marks old aliases for the content as history
4643
        // and creates new aliases, based on the changes
4644
        $liveContent = $this->contentService->publishVersion($draft->getVersionInfo());
4645
4646
        $location = $this->locationService->loadLocation(
4647
            $liveContent->getVersionInfo()->getContentInfo()->mainLocationId
4648
        );
4649
4650
        $aliases = $urlAliasService->listLocationAliases($location, false);
4651
4652
        $this->assertAliasesCorrect(
4653
            [
4654
                '/Design/Plain-site/An-awesome-forum2' => [
4655
                    'type' => URLAlias::LOCATION,
4656
                    'destination' => $location->id,
4657
                    'path' => '/Design/Plain-site/An-awesome-forum2',
4658
                    'languageCodes' => [self::ENG_US],
4659
                    'alwaysAvailable' => true,
4660
                    'isHistory' => false,
4661
                    'isCustom' => false,
4662
                    'forward' => false,
4663
                ],
4664
                '/Design/Plain-site/An-awesome-forum23' => [
4665
                    'type' => URLAlias::LOCATION,
4666
                    'destination' => $location->id,
4667
                    'path' => '/Design/Plain-site/An-awesome-forum23',
4668
                    'languageCodes' => [self::ENG_GB],
4669
                    'alwaysAvailable' => true,
4670
                    'isHistory' => false,
4671
                    'isCustom' => false,
4672
                    'forward' => false,
4673
                ],
4674
            ],
4675
            $aliases
4676
        );
4677
    }
4678
4679
    public function testCustomURLAliasesNotHistorizedOnUpdatedContent()
4680
    {
4681
        $urlAliasService = $this->getRepository()->getURLAliasService();
4682
4683
        $content = $this->createContentVersion1();
4684
4685
        // Create a custom URL alias
4686
        $urlAliasService->createUrlAlias(
4687
            $this->locationService->loadLocation(
4688
                $content->getVersionInfo()->getContentInfo()->mainLocationId
4689
            ),
4690
            '/my/fancy/story-about-ez-publish',
4691
            self::ENG_US
4692
        );
4693
4694
        $draftVersion2 = $this->contentService->createContentDraft($content->contentInfo);
4695
4696
        $contentUpdate = $this->contentService->newContentUpdateStruct();
4697
        $contentUpdate->initialLanguageCode = self::ENG_US;
4698
        $contentUpdate->setField('name', 'Amazing Bielefeld forum');
4699
4700
        $draftVersion2 = $this->contentService->updateContent(
4701
            $draftVersion2->getVersionInfo(),
4702
            $contentUpdate
4703
        );
4704
4705
        // Only marks auto-generated aliases as history
4706
        // the custom one is left untouched
4707
        $liveContent = $this->contentService->publishVersion($draftVersion2->getVersionInfo());
4708
4709
        $location = $this->locationService->loadLocation(
4710
            $liveContent->getVersionInfo()->getContentInfo()->mainLocationId
4711
        );
4712
4713
        $aliases = $urlAliasService->listLocationAliases($location);
4714
4715
        $this->assertAliasesCorrect(
4716
            [
4717
                '/my/fancy/story-about-ez-publish' => [
4718
                    'type' => URLAlias::LOCATION,
4719
                    'destination' => $location->id,
4720
                    'path' => '/my/fancy/story-about-ez-publish',
4721
                    'languageCodes' => [self::ENG_US],
4722
                    'isHistory' => false,
4723
                    'isCustom' => true,
4724
                    'forward' => false,
4725
                    'alwaysAvailable' => false,
4726
                ],
4727
            ],
4728
            $aliases
4729
        );
4730
    }
4731
4732
    /**
4733
     * Test to ensure that old versions are not affected by updates to newer
4734
     * drafts.
4735
     */
4736
    public function testUpdatingDraftDoesNotUpdateOldVersions()
4737
    {
4738
        $contentVersion2 = $this->createContentVersion2();
4739
4740
        $loadedContent1 = $this->contentService->loadContent($contentVersion2->id, null, 1);
4741
        $loadedContent2 = $this->contentService->loadContent($contentVersion2->id, null, 2);
4742
4743
        $this->assertNotEquals(
4744
            $loadedContent1->getFieldValue('name', self::ENG_US),
4745
            $loadedContent2->getFieldValue('name', self::ENG_US)
4746
        );
4747
    }
4748
4749
    /**
4750
     * Test scenario with writer and publisher users.
4751
     * Writer can only create content. Publisher can publish this content.
4752
     */
4753
    public function testPublishWorkflow()
4754
    {
4755
        $this->createRoleWithPolicies('Publisher', [
4756
            ['module' => 'content', 'function' => 'read'],
4757
            ['module' => 'content', 'function' => 'create'],
4758
            ['module' => 'content', 'function' => 'publish'],
4759
        ]);
4760
4761
        $this->createRoleWithPolicies('Writer', [
4762
            ['module' => 'content', 'function' => 'read'],
4763
            ['module' => 'content', 'function' => 'create'],
4764
        ]);
4765
4766
        $writerUser = $this->createCustomUserWithLogin(
4767
            'writer',
4768
            '[email protected]',
4769
            self::WRITERS_USER_GROUP_NAME,
4770
            'Writer'
4771
        );
4772
4773
        $publisherUser = $this->createCustomUserWithLogin(
4774
            'publisher',
4775
            '[email protected]',
4776
            'Publishers',
4777
            'Publisher'
4778
        );
4779
4780
        $this->permissionResolver->setCurrentUserReference($writerUser);
4781
        $draft = $this->createContentDraftVersion1();
4782
4783
        $this->permissionResolver->setCurrentUserReference($publisherUser);
4784
        $content = $this->contentService->publishVersion($draft->versionInfo);
4785
4786
        $this->contentService->loadContent($content->id);
4787
    }
4788
4789
    /**
4790
     * Test publish / content policy is required to be able to publish content.
4791
     */
4792
    public function testPublishContentWithoutPublishPolicyThrowsException()
4793
    {
4794
        $this->createRoleWithPolicies('Writer', [
4795
            ['module' => 'content', 'function' => 'read'],
4796
            ['module' => 'content', 'function' => 'create'],
4797
            ['module' => 'content', 'function' => 'edit'],
4798
        ]);
4799
        $writerUser = $this->createCustomUserWithLogin(
4800
            'writer',
4801
            '[email protected]',
4802
            self::WRITERS_USER_GROUP_NAME,
4803
            'Writer'
4804
        );
4805
        $this->permissionResolver->setCurrentUserReference($writerUser);
4806
4807
        $this->expectException(CoreUnauthorizedException::class);
4808
        $this->expectExceptionMessageRegExp('/User does not have access to \'publish\' \'content\'/');
4809
4810
        $this->createContentVersion1();
4811
    }
4812
4813
    /**
4814
     * Test removal of the specific translation from all the Versions of a Content Object.
4815
     *
4816
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslation
4817
     */
4818
    public function testDeleteTranslation()
4819
    {
4820
        $content = $this->createContentVersion2();
4821
4822
        // create multiple versions to exceed archive limit
4823
        for ($i = 0; $i < 5; ++$i) {
4824
            $contentDraft = $this->contentService->createContentDraft($content->contentInfo);
4825
            $contentUpdateStruct = $this->contentService->newContentUpdateStruct();
4826
            $contentDraft = $this->contentService->updateContent(
4827
                $contentDraft->versionInfo,
4828
                $contentUpdateStruct
4829
            );
4830
            $this->contentService->publishVersion($contentDraft->versionInfo);
4831
        }
4832
4833
        $this->contentService->deleteTranslation($content->contentInfo, self::ENG_GB);
4834
4835
        $this->assertTranslationDoesNotExist(self::ENG_GB, $content->id);
4836
    }
4837
4838
    /**
4839
     * Test deleting a Translation which is initial for some Version, updates initialLanguageCode
4840
     * with mainLanguageCode (assuming they are different).
4841
     */
4842
    public function testDeleteTranslationUpdatesInitialLanguageCodeVersion()
4843
    {
4844
        $content = $this->createContentVersion2();
4845
        // create another, copied, version
4846
        $contentDraft = $this->contentService->updateContent(
4847
            $this->contentService->createContentDraft($content->contentInfo)->versionInfo,
4848
            $this->contentService->newContentUpdateStruct()
4849
        );
4850
        $publishedContent = $this->contentService->publishVersion($contentDraft->versionInfo);
4851
4852
        // remove first version with only one translation as it is not the subject of this test
4853
        $this->contentService->deleteVersion(
4854
            $this->contentService->loadVersionInfo($publishedContent->contentInfo, 1)
4855
        );
4856
4857
        // sanity check
4858
        self::assertEquals(self::ENG_US, $content->contentInfo->mainLanguageCode);
4859
        self::assertEquals(self::ENG_US, $content->versionInfo->initialLanguageCode);
4860
4861
        // update mainLanguageCode so it is different than initialLanguageCode for Version
4862
        $contentMetadataUpdateStruct = $this->contentService->newContentMetadataUpdateStruct();
4863
        $contentMetadataUpdateStruct->mainLanguageCode = self::ENG_GB;
4864
        $content = $this->contentService->updateContentMetadata($publishedContent->contentInfo, $contentMetadataUpdateStruct);
4865
4866
        $this->contentService->deleteTranslation($content->contentInfo, self::ENG_US);
4867
4868
        $this->assertTranslationDoesNotExist(self::ENG_US, $content->id);
4869
    }
4870
4871
    /**
4872
     * Test removal of the specific translation properly updates languages of the URL alias.
4873
     *
4874
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslation
4875
     */
4876
    public function testDeleteTranslationUpdatesUrlAlias()
4877
    {
4878
        $urlAliasService = $this->getRepository()->getURLAliasService();
4879
4880
        $content = $this->createContentVersion2();
4881
        $mainLocation = $this->locationService->loadLocation($content->contentInfo->mainLocationId);
4882
4883
        // create custom URL alias for Content main Location
4884
        $urlAliasService->createUrlAlias($mainLocation, '/my-custom-url', self::ENG_GB);
4885
4886
        // create secondary Location for Content
4887
        $secondaryLocation = $this->locationService->createLocation(
4888
            $content->contentInfo,
4889
            $this->locationService->newLocationCreateStruct(2)
4890
        );
4891
4892
        // create custom URL alias for Content secondary Location
4893
        $urlAliasService->createUrlAlias($secondaryLocation, '/my-secondary-url', self::ENG_GB);
4894
4895
        // delete Translation
4896
        $this->contentService->deleteTranslation($content->contentInfo, self::ENG_GB);
4897
4898
        foreach ([$mainLocation, $secondaryLocation] as $location) {
4899
            // check auto-generated URL aliases
4900
            foreach ($urlAliasService->listLocationAliases($location, false) as $alias) {
4901
                self::assertNotContains(self::ENG_GB, $alias->languageCodes);
4902
            }
4903
4904
            // check custom URL aliases
4905
            foreach ($urlAliasService->listLocationAliases($location) as $alias) {
4906
                self::assertNotContains(self::ENG_GB, $alias->languageCodes);
4907
            }
4908
        }
4909
    }
4910
4911
    /**
4912
     * Test removal of a main translation throws BadStateException.
4913
     *
4914
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslation
4915
     */
4916
    public function testDeleteTranslationMainLanguageThrowsBadStateException()
4917
    {
4918
        $content = $this->createContentVersion2();
4919
4920
        // delete first version which has only one translation
4921
        $this->contentService->deleteVersion($this->contentService->loadVersionInfo($content->contentInfo, 1));
4922
4923
        // try to delete main translation
4924
        $this->expectException(BadStateException::class);
4925
        $this->expectExceptionMessage('Specified translation is the main translation of the Content Object');
4926
4927
        $this->contentService->deleteTranslation($content->contentInfo, $content->contentInfo->mainLanguageCode);
4928
    }
4929
4930
    /**
4931
     * Test removal of a Translation is possible when some archived Versions have only this Translation.
4932
     *
4933
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslation
4934
     */
4935
    public function testDeleteTranslationDeletesSingleTranslationVersions()
4936
    {
4937
        // content created by the createContentVersion1 method has eng-US translation only.
4938
        $content = $this->createContentVersion1();
4939
4940
        // create new version and add eng-GB translation
4941
        $contentDraft = $this->contentService->createContentDraft($content->contentInfo);
4942
        $contentUpdateStruct = $this->contentService->newContentUpdateStruct();
4943
        $contentUpdateStruct->setField('name', 'Awesome Board', self::ENG_GB);
4944
        $contentDraft = $this->contentService->updateContent($contentDraft->versionInfo, $contentUpdateStruct);
4945
        $publishedContent = $this->contentService->publishVersion($contentDraft->versionInfo);
4946
4947
        // update mainLanguageCode to avoid exception related to that
4948
        $contentMetadataUpdateStruct = $this->contentService->newContentMetadataUpdateStruct();
4949
        $contentMetadataUpdateStruct->mainLanguageCode = self::ENG_GB;
4950
4951
        $content = $this->contentService->updateContentMetadata($publishedContent->contentInfo, $contentMetadataUpdateStruct);
4952
4953
        $this->contentService->deleteTranslation($content->contentInfo, self::ENG_US);
4954
4955
        $this->assertTranslationDoesNotExist(self::ENG_US, $content->id);
4956
    }
4957
4958
    /**
4959
     * Test removal of the translation by the user who is not allowed to delete a content
4960
     * throws UnauthorizedException.
4961
     *
4962
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslation
4963
     */
4964
    public function testDeleteTranslationThrowsUnauthorizedException()
4965
    {
4966
        $content = $this->createContentVersion2();
4967
4968
        // create user that can read/create/edit but cannot delete content
4969
        $this->createRoleWithPolicies('Writer', [
4970
            ['module' => 'content', 'function' => 'read'],
4971
            ['module' => 'content', 'function' => 'versionread'],
4972
            ['module' => 'content', 'function' => 'create'],
4973
            ['module' => 'content', 'function' => 'edit'],
4974
        ]);
4975
        $writerUser = $this->createCustomUserWithLogin(
4976
            'writer',
4977
            '[email protected]',
4978
            self::WRITERS_USER_GROUP_NAME,
4979
            'Writer'
4980
        );
4981
        $this->permissionResolver->setCurrentUserReference($writerUser);
4982
4983
        $this->expectException(UnauthorizedException::class);
4984
        $this->expectExceptionMessage('User does not have access to \'remove\' \'content\'');
4985
4986
        $this->contentService->deleteTranslation($content->contentInfo, self::ENG_GB);
4987
    }
4988
4989
    /**
4990
     * Test removal of a non-existent translation throws InvalidArgumentException.
4991
     *
4992
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslation
4993
     */
4994
    public function testDeleteTranslationThrowsInvalidArgumentException()
4995
    {
4996
        // content created by the createContentVersion1 method has eng-US translation only.
4997
        $content = $this->createContentVersion1();
4998
4999
        $this->expectException(APIInvalidArgumentException::class);
5000
        $this->expectExceptionMessage('Argument \'$languageCode\' is invalid: ger-DE does not exist in the Content item');
5001
5002
        $this->contentService->deleteTranslation($content->contentInfo, self::GER_DE);
5003
    }
5004
5005
    /**
5006
     * Test deleting a Translation from Draft.
5007
     *
5008
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslationFromDraft
5009
     */
5010
    public function testDeleteTranslationFromDraft()
5011
    {
5012
        $languageCode = self::ENG_GB;
5013
        $content = $this->createMultipleLanguageContentVersion2();
5014
        $draft = $this->contentService->createContentDraft($content->contentInfo);
5015
        $draft = $this->contentService->deleteTranslationFromDraft($draft->versionInfo, $languageCode);
5016
        $content = $this->contentService->publishVersion($draft->versionInfo);
5017
5018
        $loadedContent = $this->contentService->loadContent($content->id);
5019
        self::assertNotContains($languageCode, $loadedContent->versionInfo->languageCodes);
5020
        self::assertEmpty($loadedContent->getFieldsByLanguage($languageCode));
5021
    }
5022
5023
    /**
5024
     * Get values for multilingual field.
5025
     *
5026
     * @return array
5027
     */
5028
    public function providerForDeleteTranslationFromDraftRemovesUrlAliasOnPublishing()
5029
    {
5030
        return [
5031
            [
5032
                [self::ENG_US => 'US Name', self::ENG_GB => 'GB Name'],
5033
            ],
5034
            [
5035
                [self::ENG_US => 'Same Name', self::ENG_GB => 'Same Name'],
5036
            ],
5037
        ];
5038
    }
5039
5040
    /**
5041
     * Test deleting a Translation from Draft removes previously stored URL aliases for published Content.
5042
     *
5043
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslationFromDraft
5044
     *
5045
     * @dataProvider providerForDeleteTranslationFromDraftRemovesUrlAliasOnPublishing
5046
     *
5047
     * @param string[] $fieldValues translated field values
5048
     *
5049
     * @throws \eZ\Publish\API\Repository\Exceptions\BadStateException
5050
     * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException
5051
     * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException
5052
     * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException
5053
     */
5054
    public function testDeleteTranslationFromDraftRemovesUrlAliasOnPublishing(array $fieldValues)
5055
    {
5056
        $urlAliasService = $this->getRepository()->getURLAliasService();
5057
5058
        // set language code to be removed
5059
        $languageCode = self::ENG_GB;
5060
        $draft = $this->createMultilingualContentDraft(
5061
            'folder',
5062
            2,
5063
            self::ENG_US,
5064
            [
5065
                'name' => [
5066
                    self::ENG_GB => $fieldValues[self::ENG_GB],
5067
                    self::ENG_US => $fieldValues[self::ENG_US],
5068
                ],
5069
            ]
5070
        );
5071
        $content = $this->contentService->publishVersion($draft->versionInfo);
5072
5073
        // create secondary location
5074
        $this->locationService->createLocation(
5075
            $content->contentInfo,
5076
            $this->locationService->newLocationCreateStruct(5)
5077
        );
5078
5079
        // sanity check
5080
        $locations = $this->locationService->loadLocations($content->contentInfo);
5081
        self::assertCount(2, $locations, 'Sanity check: Expected to find 2 Locations');
5082
        foreach ($locations as $location) {
5083
            $urlAliasService->createUrlAlias($location, '/us-custom_' . $location->id, self::ENG_US);
5084
            $urlAliasService->createUrlAlias($location, '/gb-custom_' . $location->id, self::ENG_GB);
5085
5086
            // check default URL aliases
5087
            $aliases = $urlAliasService->listLocationAliases($location, false, $languageCode);
5088
            self::assertNotEmpty($aliases, 'Sanity check: URL alias for the translation does not exist');
5089
5090
            // check custom URL aliases
5091
            $aliases = $urlAliasService->listLocationAliases($location, true, $languageCode);
5092
            self::assertNotEmpty($aliases, 'Sanity check: Custom URL alias for the translation does not exist');
5093
        }
5094
5095
        // delete translation and publish new version
5096
        $draft = $this->contentService->createContentDraft($content->contentInfo);
5097
        $draft = $this->contentService->deleteTranslationFromDraft($draft->versionInfo, $languageCode);
5098
        $this->contentService->publishVersion($draft->versionInfo);
5099
5100
        // check that aliases does not exist
5101
        foreach ($locations as $location) {
5102
            // check default URL aliases
5103
            $aliases = $urlAliasService->listLocationAliases($location, false, $languageCode);
5104
            self::assertEmpty($aliases, 'URL alias for the deleted translation still exists');
5105
5106
            // check custom URL aliases
5107
            $aliases = $urlAliasService->listLocationAliases($location, true, $languageCode);
5108
            self::assertEmpty($aliases, 'Custom URL alias for the deleted translation still exists');
5109
        }
5110
    }
5111
5112
    /**
5113
     * Test that URL aliases for deleted Translations are properly archived.
5114
     */
5115
    public function testDeleteTranslationFromDraftArchivesUrlAliasOnPublishing()
5116
    {
5117
        $urlAliasService = $this->getRepository()->getURLAliasService();
5118
5119
        $content = $this->contentService->publishVersion(
5120
            $this->createMultilingualContentDraft(
5121
                'folder',
5122
                2,
5123
                self::ENG_US,
5124
                [
5125
                    'name' => [
5126
                        self::ENG_GB => 'BritishEnglishContent',
5127
                        self::ENG_US => 'AmericanEnglishContent',
5128
                    ],
5129
                ]
5130
            )->versionInfo
5131
        );
5132
5133
        $unrelatedContent = $this->contentService->publishVersion(
5134
            $this->createMultilingualContentDraft(
5135
                'folder',
5136
                2,
5137
                self::ENG_US,
5138
                [
5139
                    'name' => [
5140
                        self::ENG_GB => 'AnotherBritishContent',
5141
                        self::ENG_US => 'AnotherAmericanContent',
5142
                    ],
5143
                ]
5144
            )->versionInfo
5145
        );
5146
5147
        $urlAlias = $urlAliasService->lookup('/BritishEnglishContent');
5148
        self::assertFalse($urlAlias->isHistory);
5149
        self::assertEquals($urlAlias->path, '/BritishEnglishContent');
5150
        self::assertEquals($urlAlias->destination, $content->contentInfo->mainLocationId);
5151
5152
        $draft = $this->contentService->deleteTranslationFromDraft(
5153
            $this->contentService->createContentDraft($content->contentInfo)->versionInfo,
5154
            self::ENG_GB
5155
        );
5156
        $content = $this->contentService->publishVersion($draft->versionInfo);
5157
5158
        $urlAlias = $urlAliasService->lookup('/BritishEnglishContent');
5159
        self::assertTrue($urlAlias->isHistory);
5160
        self::assertEquals($urlAlias->path, '/BritishEnglishContent');
5161
        self::assertEquals($urlAlias->destination, $content->contentInfo->mainLocationId);
5162
5163
        $unrelatedUrlAlias = $urlAliasService->lookup('/AnotherBritishContent');
5164
        self::assertFalse($unrelatedUrlAlias->isHistory);
5165
        self::assertEquals($unrelatedUrlAlias->path, '/AnotherBritishContent');
5166
        self::assertEquals($unrelatedUrlAlias->destination, $unrelatedContent->contentInfo->mainLocationId);
5167
    }
5168
5169
    /**
5170
     * Test deleting a Translation from Draft which has single Translation throws BadStateException.
5171
     *
5172
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslationFromDraft
5173
     */
5174
    public function testDeleteTranslationFromDraftThrowsBadStateExceptionOnSingleTranslation()
5175
    {
5176
        // create Content with single Translation
5177
        $publishedContent = $this->contentService->publishVersion(
5178
            $this->createContentDraft(
5179
                self::FORUM_IDENTIFIER,
5180
                2,
5181
                ['name' => 'Eng-US Version name']
5182
            )->versionInfo
5183
        );
5184
5185
        // update mainLanguageCode to avoid exception related to trying to delete main Translation
5186
        $contentMetadataUpdateStruct = $this->contentService->newContentMetadataUpdateStruct();
5187
        $contentMetadataUpdateStruct->mainLanguageCode = self::ENG_GB;
5188
        $publishedContent = $this->contentService->updateContentMetadata(
5189
            $publishedContent->contentInfo,
5190
            $contentMetadataUpdateStruct
5191
        );
5192
5193
        // create single Translation Version from the first one
5194
        $draft = $this->contentService->createContentDraft(
5195
            $publishedContent->contentInfo,
5196
            $publishedContent->versionInfo
5197
        );
5198
5199
        $this->expectException(BadStateException::class);
5200
        $this->expectExceptionMessage('Specified Translation is the only one Content Object Version has');
5201
5202
        // attempt to delete Translation
5203
        $this->contentService->deleteTranslationFromDraft($draft->versionInfo, self::ENG_US);
5204
    }
5205
5206
    /**
5207
     * Test deleting the Main Translation from Draft throws BadStateException.
5208
     *
5209
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslationFromDraft
5210
     */
5211
    public function testDeleteTranslationFromDraftThrowsBadStateExceptionOnMainTranslation()
5212
    {
5213
        $mainLanguageCode = self::ENG_US;
5214
        $draft = $this->createMultilingualContentDraft(
5215
            self::FORUM_IDENTIFIER,
5216
            2,
5217
            $mainLanguageCode,
5218
            [
5219
                'name' => [
5220
                    self::ENG_US => 'An awesome eng-US forum',
5221
                    self::ENG_GB => 'An awesome eng-GB forum',
5222
                ],
5223
            ]
5224
        );
5225
5226
        $this->expectException(BadStateException::class);
5227
        $this->expectExceptionMessage('Specified Translation is the main Translation of the Content Object');
5228
5229
        $this->contentService->deleteTranslationFromDraft($draft->versionInfo, $mainLanguageCode);
5230
    }
5231
5232
    /**
5233
     * Test deleting the Translation from Published Version throws BadStateException.
5234
     *
5235
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslationFromDraft
5236
     */
5237
    public function testDeleteTranslationFromDraftThrowsBadStateExceptionOnPublishedVersion()
5238
    {
5239
        $languageCode = self::ENG_US;
5240
        $content = $this->createMultipleLanguageContentVersion2();
5241
        $draft = $this->contentService->createContentDraft($content->contentInfo);
5242
        $publishedContent = $this->contentService->publishVersion($draft->versionInfo);
5243
5244
        $this->expectException(BadStateException::class);
5245
        $this->expectExceptionMessage('Version is not a draft');
5246
5247
        $this->contentService->deleteTranslationFromDraft($publishedContent->versionInfo, $languageCode);
5248
    }
5249
5250
    /**
5251
     * Test deleting a Translation from Draft throws UnauthorizedException if user cannot edit Content.
5252
     *
5253
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslationFromDraft
5254
     */
5255
    public function testDeleteTranslationFromDraftThrowsUnauthorizedException()
5256
    {
5257
        $languageCode = self::ENG_GB;
5258
        $content = $this->createMultipleLanguageContentVersion2();
5259
        $draft = $this->contentService->createContentDraft($content->contentInfo);
5260
5261
        // create user that can read/create/delete but cannot edit or content
5262
        $this->createRoleWithPolicies('Writer', [
5263
            ['module' => 'content', 'function' => 'read'],
5264
            ['module' => 'content', 'function' => 'versionread'],
5265
            ['module' => 'content', 'function' => 'create'],
5266
            ['module' => 'content', 'function' => 'delete'],
5267
        ]);
5268
        $writerUser = $this->createCustomUserWithLogin(
5269
            'user',
5270
            '[email protected]',
5271
            self::WRITERS_USER_GROUP_NAME,
5272
            'Writer'
5273
        );
5274
        $this->permissionResolver->setCurrentUserReference($writerUser);
5275
5276
        $this->expectException(UnauthorizedException::class);
5277
        $this->expectExceptionMessage('User does not have access to \'edit\' \'content\'');
5278
5279
        $this->contentService->deleteTranslationFromDraft($draft->versionInfo, $languageCode);
5280
    }
5281
5282
    /**
5283
     * Test deleting a non-existent Translation from Draft throws InvalidArgumentException.
5284
     *
5285
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteTranslationFromDraft
5286
     */
5287
    public function testDeleteTranslationFromDraftThrowsInvalidArgumentException()
5288
    {
5289
        $languageCode = self::GER_DE;
5290
        $content = $this->createMultipleLanguageContentVersion2();
5291
        $draft = $this->contentService->createContentDraft($content->contentInfo);
5292
        $this->expectException(APIInvalidArgumentException::class);
5293
        $this->expectExceptionMessageRegExp('/The Version \(ContentId=\d+, VersionNo=\d+\) is not translated into ger-DE/');
5294
        $this->contentService->deleteTranslationFromDraft($draft->versionInfo, $languageCode);
5295
    }
5296
5297
    /**
5298
     * Test loading list of Content items.
5299
     */
5300
    public function testLoadContentListByContentInfo()
5301
    {
5302
        $allLocationsCount = $this->locationService->getAllLocationsCount();
5303
        $contentInfoList = array_map(
5304
            function (Location $location) {
5305
                return $location->contentInfo;
5306
            },
5307
            $this->locationService->loadAllLocations(0, $allLocationsCount)
5308
        );
5309
5310
        $contentList = $this->contentService->loadContentListByContentInfo($contentInfoList);
5311
        self::assertCount(count($contentInfoList), $contentList);
5312
        foreach ($contentList as $content) {
5313
            try {
5314
                $loadedContent = $this->contentService->loadContent($content->id);
5315
                self::assertEquals($loadedContent, $content, "Failed to properly bulk-load Content {$content->id}");
5316
            } catch (NotFoundException $e) {
5317
                self::fail("Failed to load Content {$content->id}: {$e->getMessage()}");
5318
            } catch (UnauthorizedException $e) {
5319
                self::fail("Failed to load Content {$content->id}: {$e->getMessage()}");
5320
            }
5321
        }
5322
    }
5323
5324
    /**
5325
     * Test loading content versions after removing exactly two drafts.
5326
     *
5327
     * @see https://jira.ez.no/browse/EZP-30271
5328
     *
5329
     * @covers \eZ\Publish\Core\Repository\ContentService::deleteVersion
5330
     */
5331
    public function testLoadVersionsAfterDeletingTwoDrafts()
5332
    {
5333
        $content = $this->createFolder([self::ENG_GB => 'Foo'], 2);
5334
5335
        // First update and publish
5336
        $modifiedContent = $this->updateFolder($content, [self::ENG_GB => 'Foo1']);
5337
        $content = $this->contentService->publishVersion($modifiedContent->versionInfo);
5338
5339
        // Second update and publish
5340
        $modifiedContent = $this->updateFolder($content, [self::ENG_GB => 'Foo2']);
5341
        $content = $this->contentService->publishVersion($modifiedContent->versionInfo);
5342
5343
        // Create drafts
5344
        $this->updateFolder($content, [self::ENG_GB => 'Foo3']);
5345
        $this->updateFolder($content, [self::ENG_GB => 'Foo4']);
5346
5347
        $versions = $this->contentService->loadVersions($content->contentInfo);
5348
5349
        foreach ($versions as $key => $version) {
5350
            if ($version->isDraft()) {
5351
                $this->contentService->deleteVersion($version);
5352
                unset($versions[$key]);
5353
            }
5354
        }
5355
5356
        $this->assertEquals($versions, $this->contentService->loadVersions($content->contentInfo));
5357
    }
5358
5359
    /**
5360
     * Tests loading list of content versions of status draft.
5361
     */
5362
    public function testLoadVersionsOfStatusDraft()
5363
    {
5364
        $content = $this->createContentVersion1();
5365
5366
        $this->contentService->createContentDraft($content->contentInfo);
5367
        $this->contentService->createContentDraft($content->contentInfo);
5368
        $this->contentService->createContentDraft($content->contentInfo);
5369
5370
        $versions = $this->contentService->loadVersions($content->contentInfo, VersionInfo::STATUS_DRAFT);
5371
5372
        $this->assertSame(\count($versions), 3);
5373
    }
5374
5375
    /**
5376
     * Tests loading list of content versions of status archived.
5377
     */
5378
    public function testLoadVersionsOfStatusArchived()
5379
    {
5380
        $content = $this->createContentVersion1();
5381
5382
        $draft1 = $this->contentService->createContentDraft($content->contentInfo);
5383
        $this->contentService->publishVersion($draft1->versionInfo);
5384
5385
        $draft2 = $this->contentService->createContentDraft($content->contentInfo);
5386
        $this->contentService->publishVersion($draft2->versionInfo);
5387
5388
        $versions = $this->contentService->loadVersions($content->contentInfo, VersionInfo::STATUS_ARCHIVED);
5389
5390
        $this->assertSame(\count($versions), 2);
5391
    }
5392
5393
    /**
5394
     * Asserts that all aliases defined in $expectedAliasProperties with the
5395
     * given properties are available in $actualAliases and not more.
5396
     *
5397
     * @param array $expectedAliasProperties
5398
     * @param array $actualAliases
5399
     */
5400
    private function assertAliasesCorrect(array $expectedAliasProperties, array $actualAliases)
5401
    {
5402
        foreach ($actualAliases as $actualAlias) {
5403
            if (!isset($expectedAliasProperties[$actualAlias->path])) {
5404
                $this->fail(
5405
                    sprintf(
5406
                        'Alias with path "%s" in languages "%s" not expected.',
5407
                        $actualAlias->path,
5408
                        implode(', ', $actualAlias->languageCodes)
5409
                    )
5410
                );
5411
            }
5412
5413
            foreach ($expectedAliasProperties[$actualAlias->path] as $propertyName => $propertyValue) {
5414
                $this->assertEquals(
5415
                    $propertyValue,
5416
                    $actualAlias->$propertyName,
5417
                    sprintf(
5418
                        'Property $%s incorrect on alias with path "%s" in languages "%s".',
5419
                        $propertyName,
5420
                        $actualAlias->path,
5421
                        implode(', ', $actualAlias->languageCodes)
5422
                    )
5423
                );
5424
            }
5425
5426
            unset($expectedAliasProperties[$actualAlias->path]);
5427
        }
5428
5429
        if (!empty($expectedAliasProperties)) {
5430
            $this->fail(
5431
                sprintf(
5432
                    'Missing expected aliases with paths "%s".',
5433
                    implode('", "', array_keys($expectedAliasProperties))
5434
                )
5435
            );
5436
        }
5437
    }
5438
5439
    /**
5440
     * Asserts that the given fields are equal to the default fields fixture.
5441
     *
5442
     * @param \eZ\Publish\API\Repository\Values\Content\Field[] $fields
5443
     */
5444
    private function assertAllFieldsEquals(array $fields)
5445
    {
5446
        $actual = $this->normalizeFields($fields);
5447
        $expected = $this->normalizeFields($this->createFieldsFixture());
5448
5449
        $this->assertEquals($expected, $actual);
5450
    }
5451
5452
    /**
5453
     * Asserts that the given fields are equal to a language filtered set of the
5454
     * default fields fixture.
5455
     *
5456
     * @param \eZ\Publish\API\Repository\Values\Content\Field[] $fields
5457
     * @param string $languageCode
5458
     */
5459
    private function assertLocaleFieldsEquals(array $fields, $languageCode)
5460
    {
5461
        $actual = $this->normalizeFields($fields);
5462
5463
        $expected = [];
5464
        foreach ($this->normalizeFields($this->createFieldsFixture()) as $field) {
5465
            if ($field->languageCode !== $languageCode) {
5466
                continue;
5467
            }
5468
            $expected[] = $field;
5469
        }
5470
5471
        $this->assertEquals($expected, $actual);
5472
    }
5473
5474
    /**
5475
     * This method normalizes a set of fields and returns a normalized set.
5476
     *
5477
     * Normalization means it resets the storage specific field id to zero and
5478
     * it sorts the field by their identifier and their language code. In
5479
     * addition, the field value is removed, since this one depends on the
5480
     * specific FieldType, which is tested in a dedicated integration test.
5481
     *
5482
     * @param \eZ\Publish\API\Repository\Values\Content\Field[] $fields
5483
     *
5484
     * @return \eZ\Publish\API\Repository\Values\Content\Field[]
5485
     */
5486
    private function normalizeFields(array $fields)
5487
    {
5488
        $normalized = [];
5489
        foreach ($fields as $field) {
5490
            $normalized[] = new Field(
5491
                [
5492
                    'id' => 0,
5493
                    'value' => $field->value !== null,
5494
                    'languageCode' => $field->languageCode,
5495
                    'fieldDefIdentifier' => $field->fieldDefIdentifier,
5496
                    'fieldTypeIdentifier' => $field->fieldTypeIdentifier,
5497
                ]
5498
            );
5499
        }
5500
        usort(
5501
            $normalized,
5502
            function ($field1, $field2) {
5503
                if (0 === ($return = strcasecmp($field1->fieldDefIdentifier, $field2->fieldDefIdentifier))) {
5504
                    return strcasecmp($field1->languageCode, $field2->languageCode);
5505
                }
5506
5507
                return $return;
5508
            }
5509
        );
5510
5511
        return $normalized;
5512
    }
5513
5514
    /**
5515
     * Asserts that given Content has default ContentStates.
5516
     *
5517
     * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo
5518
     */
5519
    private function assertDefaultContentStates(ContentInfo $contentInfo)
5520
    {
5521
        $objectStateService = $this->getRepository()->getObjectStateService();
5522
5523
        $objectStateGroups = $objectStateService->loadObjectStateGroups();
5524
5525
        foreach ($objectStateGroups as $objectStateGroup) {
5526
            $contentState = $objectStateService->getContentState($contentInfo, $objectStateGroup);
5527
            foreach ($objectStateService->loadObjectStates($objectStateGroup) as $objectState) {
5528
                // Only check the first object state which is the default one.
5529
                $this->assertEquals(
5530
                    $objectState,
5531
                    $contentState
5532
                );
5533
                break;
5534
            }
5535
        }
5536
    }
5537
5538
    /**
5539
     * Assert that given Content has no references to a translation specified by the $languageCode.
5540
     *
5541
     * @param string $languageCode
5542
     * @param int $contentId
5543
     */
5544
    private function assertTranslationDoesNotExist($languageCode, $contentId)
5545
    {
5546
        $content = $this->contentService->loadContent($contentId);
5547
5548
        foreach ($content->fields as $field) {
5549
            /** @var array $field */
5550
            self::assertArrayNotHasKey($languageCode, $field);
5551
            self::assertNotEquals($languageCode, $content->contentInfo->mainLanguageCode);
5552
            self::assertArrayNotHasKey($languageCode, $content->versionInfo->getNames());
5553
            self::assertNotEquals($languageCode, $content->versionInfo->initialLanguageCode);
5554
            self::assertNotContains($languageCode, $content->versionInfo->languageCodes);
5555
        }
5556
        foreach ($this->contentService->loadVersions($content->contentInfo) as $versionInfo) {
5557
            self::assertArrayNotHasKey($languageCode, $versionInfo->getNames());
5558
            self::assertNotEquals($languageCode, $versionInfo->contentInfo->mainLanguageCode);
5559
            self::assertNotEquals($languageCode, $versionInfo->initialLanguageCode);
5560
            self::assertNotContains($languageCode, $versionInfo->languageCodes);
5561
        }
5562
    }
5563
5564
    /**
5565
     * Returns the default fixture of fields used in most tests.
5566
     *
5567
     * @return \eZ\Publish\API\Repository\Values\Content\Field[]
5568
     */
5569
    private function createFieldsFixture()
5570
    {
5571
        return [
5572
            new Field(
5573
                [
5574
                    'id' => 0,
5575
                    'value' => 'Foo',
5576
                    'languageCode' => self::ENG_US,
5577
                    'fieldDefIdentifier' => 'description',
5578
                    'fieldTypeIdentifier' => 'ezrichtext',
5579
                ]
5580
            ),
5581
            new Field(
5582
                [
5583
                    'id' => 0,
5584
                    'value' => 'Bar',
5585
                    'languageCode' => self::ENG_GB,
5586
                    'fieldDefIdentifier' => 'description',
5587
                    'fieldTypeIdentifier' => 'ezrichtext',
5588
                ]
5589
            ),
5590
            new Field(
5591
                [
5592
                    'id' => 0,
5593
                    'value' => 'An awesome multi-lang forum²',
5594
                    'languageCode' => self::ENG_US,
5595
                    'fieldDefIdentifier' => 'name',
5596
                    'fieldTypeIdentifier' => 'ezstring',
5597
                ]
5598
            ),
5599
            new Field(
5600
                [
5601
                    'id' => 0,
5602
                    'value' => 'An awesome multi-lang forum²³',
5603
                    'languageCode' => self::ENG_GB,
5604
                    'fieldDefIdentifier' => 'name',
5605
                    'fieldTypeIdentifier' => 'ezstring',
5606
                ]
5607
            ),
5608
        ];
5609
    }
5610
5611
    /**
5612
     * Gets expected property values for the "Media" ContentInfo ValueObject.
5613
     *
5614
     * @return array
5615
     */
5616
    private function getExpectedMediaContentInfoProperties()
5617
    {
5618
        return [
5619
            'id' => self::MEDIA_CONTENT_ID,
5620
            'contentTypeId' => 1,
5621
            'name' => 'Media',
5622
            'sectionId' => 3,
5623
            'currentVersionNo' => 1,
5624
            'published' => true,
5625
            'ownerId' => 14,
5626
            'modificationDate' => $this->createDateTime(1060695457),
5627
            'publishedDate' => $this->createDateTime(1060695457),
5628
            'alwaysAvailable' => 1,
5629
            'remoteId' => self::MEDIA_REMOTE_ID,
5630
            'mainLanguageCode' => self::ENG_US,
5631
            'mainLocationId' => 43,
5632
            'status' => ContentInfo::STATUS_PUBLISHED,
5633
        ];
5634
    }
5635
5636
    /**
5637
     * @covers \eZ\Publish\API\Repository\ContentService::hideContent
5638
     *
5639
     * @throws \eZ\Publish\API\Repository\Exceptions\BadStateException
5640
     * @throws \eZ\Publish\API\Repository\Exceptions\ContentFieldValidationException
5641
     * @throws \eZ\Publish\API\Repository\Exceptions\ContentValidationException
5642
     * @throws \eZ\Publish\API\Repository\Exceptions\ForbiddenException
5643
     * @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException
5644
     * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException
5645
     * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException
5646
     */
5647
    public function testHideContent(): void
5648
    {
5649
        $contentTypeService = $this->getRepository()->getContentTypeService();
5650
5651
        $locationCreateStructs = array_map(
5652
            function (Location $parentLocation) {
5653
                return $this->locationService->newLocationCreateStruct($parentLocation->id);
5654
            },
5655
            $this->createParentLocationsForHideReveal(2)
5656
        );
5657
5658
        $contentType = $contentTypeService->loadContentTypeByIdentifier('folder');
5659
5660
        $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
5661
        $contentCreate->setField('name', 'Folder to hide');
5662
5663
        $content = $this->contentService->createContent(
5664
            $contentCreate,
5665
            $locationCreateStructs
5666
        );
5667
5668
        $publishedContent = $this->contentService->publishVersion($content->versionInfo);
5669
        $locations = $this->locationService->loadLocations($publishedContent->contentInfo);
5670
5671
        // Sanity check
5672
        $this->assertCount(3, $locations);
5673
        $this->assertCount(0, $this->filterHiddenLocations($locations));
5674
5675
        $this->contentService->hideContent($publishedContent->contentInfo);
5676
5677
        $locations = $this->locationService->loadLocations($publishedContent->contentInfo);
5678
        $this->assertCount(3, $locations);
5679
        $this->assertCount(3, $this->filterHiddenLocations($locations));
5680
    }
5681
5682
    /**
5683
     * @covers \eZ\Publish\API\Repository\ContentService::revealContent
5684
     *
5685
     * @throws \eZ\Publish\API\Repository\Exceptions\ForbiddenException
5686
     * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException
5687
     * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException
5688
     */
5689
    public function testRevealContent()
5690
    {
5691
        $contentTypeService = $this->getRepository()->getContentTypeService();
5692
5693
        $locationCreateStructs = array_map(
5694
            function (Location $parentLocation) {
5695
                return $this->locationService->newLocationCreateStruct($parentLocation->id);
5696
            },
5697
            $this->createParentLocationsForHideReveal(2)
5698
        );
5699
5700
        $contentType = $contentTypeService->loadContentTypeByIdentifier('folder');
5701
5702
        $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
5703
        $contentCreate->setField('name', 'Folder to hide');
5704
5705
        $locationCreateStructs[0]->hidden = true;
5706
5707
        $content = $this->contentService->createContent(
5708
            $contentCreate,
5709
            $locationCreateStructs
5710
        );
5711
5712
        $publishedContent = $this->contentService->publishVersion($content->versionInfo);
5713
        $locations = $this->locationService->loadLocations($publishedContent->contentInfo);
5714
5715
        // Sanity check
5716
        $hiddenLocations = $this->filterHiddenLocations($locations);
5717
        $this->assertCount(3, $locations);
5718
        $this->assertCount(1, $hiddenLocations);
5719
5720
        $this->contentService->hideContent($publishedContent->contentInfo);
5721
        $this->assertCount(
5722
            3,
5723
            $this->filterHiddenLocations(
5724
                $this->locationService->loadLocations($publishedContent->contentInfo)
5725
            )
5726
        );
5727
5728
        $this->contentService->revealContent($publishedContent->contentInfo);
5729
5730
        $locations = $this->locationService->loadLocations($publishedContent->contentInfo);
5731
        $hiddenLocationsAfterReveal = $this->filterHiddenLocations($locations);
5732
        $this->assertCount(3, $locations);
5733
        $this->assertCount(1, $hiddenLocationsAfterReveal);
5734
        $this->assertEquals($hiddenLocations, $hiddenLocationsAfterReveal);
5735
    }
5736
5737
    /**
5738
     * @depends testRevealContent
5739
     */
5740
    public function testRevealContentWithHiddenParent()
5741
    {
5742
        $contentTypeService = $this->getRepository()->getContentTypeService();
5743
5744
        $contentType = $contentTypeService->loadContentTypeByIdentifier('folder');
5745
5746
        $contentNames = [
5747
            'Parent Content',
5748
            'Child (Nesting 1)',
5749
            'Child (Nesting 2)',
5750
            'Child (Nesting 3)',
5751
            'Child (Nesting 4)',
5752
        ];
5753
5754
        $parentLocation = $this->locationService->newLocationCreateStruct(
5755
            $this->generateId('location', 2)
5756
        );
5757
5758
        /** @var Content[] $contents */
5759
        $contents = [];
5760
5761
        foreach ($contentNames as $contentName) {
5762
            $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
5763
            $contentCreate->setField('name', $contentName);
5764
5765
            $content = $this->contentService->createContent($contentCreate, [$parentLocation]);
5766
            $contents[] = $publishedContent = $this->contentService->publishVersion($content->versionInfo);
5767
5768
            $parentLocation = $this->locationService->newLocationCreateStruct(
5769
                $this->generateId('location', $publishedContent->contentInfo->mainLocationId)
5770
            );
5771
        }
5772
5773
        $this->contentService->hideContent($contents[0]->contentInfo);
5774
        $this->contentService->hideContent($contents[2]->contentInfo);
5775
        $this->contentService->revealContent($contents[2]->contentInfo);
5776
5777
        $parentContent = $this->contentService->loadContent($contents[0]->id);
5778
        $parentLocation = $this->locationService->loadLocation($parentContent->contentInfo->mainLocationId);
5779
        $parentSublocations = $this->locationService->loadLocationList([
5780
            $contents[1]->contentInfo->mainLocationId,
5781
            $contents[2]->contentInfo->mainLocationId,
5782
            $contents[3]->contentInfo->mainLocationId,
5783
            $contents[4]->contentInfo->mainLocationId,
5784
        ]);
5785
5786
        // Parent remains invisible
5787
        self::assertTrue($parentLocation->invisible);
5788
5789
        // All parent sublocations remain invisible as well
5790
        foreach ($parentSublocations as $parentSublocation) {
5791
            self::assertTrue($parentSublocation->invisible);
5792
        }
5793
    }
5794
5795
    /**
5796
     * @depends testRevealContent
5797
     */
5798
    public function testRevealContentWithHiddenChildren()
5799
    {
5800
        $contentTypeService = $this->getRepository()->getContentTypeService();
5801
5802
        $contentType = $contentTypeService->loadContentTypeByIdentifier('folder');
5803
5804
        $contentNames = [
5805
            'Parent Content',
5806
            'Child (Nesting 1)',
5807
            'Child (Nesting 2)',
5808
            'Child (Nesting 3)',
5809
            'Child (Nesting 4)',
5810
        ];
5811
5812
        $parentLocation = $this->locationService->newLocationCreateStruct(
5813
            $this->generateId('location', 2)
5814
        );
5815
5816
        /** @var Content[] $contents */
5817
        $contents = [];
5818
5819
        foreach ($contentNames as $contentName) {
5820
            $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
5821
            $contentCreate->setField('name', $contentName);
5822
5823
            $content = $this->contentService->createContent($contentCreate, [$parentLocation]);
5824
            $contents[] = $publishedContent = $this->contentService->publishVersion($content->versionInfo);
5825
5826
            $parentLocation = $this->locationService->newLocationCreateStruct(
5827
                $this->generateId('location', $publishedContent->contentInfo->mainLocationId)
5828
            );
5829
        }
5830
5831
        $this->contentService->hideContent($contents[0]->contentInfo);
5832
        $this->contentService->hideContent($contents[2]->contentInfo);
5833
        $this->contentService->revealContent($contents[0]->contentInfo);
5834
5835
        $directChildContent = $this->contentService->loadContent($contents[1]->id);
5836
        $directChildLocation = $this->locationService->loadLocation($directChildContent->contentInfo->mainLocationId);
5837
5838
        $childContent = $this->contentService->loadContent($contents[2]->id);
5839
        $childLocation = $this->locationService->loadLocation($childContent->contentInfo->mainLocationId);
5840
        $childSublocations = $this->locationService->loadLocationList([
5841
            $contents[3]->contentInfo->mainLocationId,
5842
            $contents[4]->contentInfo->mainLocationId,
5843
        ]);
5844
5845
        // Direct child content is not hidden
5846
        self::assertFalse($directChildContent->contentInfo->isHidden);
5847
5848
        // Direct child content location is still invisible
5849
        self::assertFalse($directChildLocation->invisible);
5850
5851
        // Child content is still hidden
5852
        self::assertTrue($childContent->contentInfo->isHidden);
5853
5854
        // Child content location is still invisible
5855
        self::assertTrue($childLocation->invisible);
5856
5857
        // All childs sublocations remain invisible as well
5858
        foreach ($childSublocations as $childSublocation) {
5859
            self::assertTrue($childSublocation->invisible);
5860
        }
5861
    }
5862
5863
    public function testHideContentWithParentLocation()
5864
    {
5865
        $contentTypeService = $this->getRepository()->getContentTypeService();
5866
5867
        $contentType = $contentTypeService->loadContentTypeByIdentifier('folder');
5868
5869
        $contentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
5870
        $contentCreate->setField('name', 'Parent');
5871
5872
        $content = $this->contentService->createContent(
5873
            $contentCreate,
5874
            [
5875
                $this->locationService->newLocationCreateStruct(
5876
                    $this->generateId('location', 2)
5877
                ),
5878
            ]
5879
        );
5880
5881
        $publishedContent = $this->contentService->publishVersion($content->versionInfo);
5882
5883
        $this->contentService->hideContent($publishedContent->contentInfo);
5884
5885
        $locations = $this->locationService->loadLocations($publishedContent->contentInfo);
5886
5887
        $childContentCreate = $this->contentService->newContentCreateStruct($contentType, self::ENG_US);
5888
        $childContentCreate->setField('name', 'Child');
5889
5890
        $childContent = $this->contentService->createContent(
5891
            $childContentCreate,
5892
            [
5893
                $this->locationService->newLocationCreateStruct(
5894
                    $locations[0]->id
5895
                ),
5896
            ]
5897
        );
5898
5899
        $publishedChildContent = $this->contentService->publishVersion($childContent->versionInfo);
5900
5901
        $childLocations = $this->locationService->loadLocations($publishedChildContent->contentInfo);
5902
5903
        $this->assertTrue($locations[0]->hidden);
5904
        $this->assertTrue($locations[0]->invisible);
5905
5906
        $this->assertFalse($childLocations[0]->hidden);
5907
        $this->assertTrue($childLocations[0]->invisible);
5908
    }
5909
5910
    public function testChangeContentName()
5911
    {
5912
        $contentDraft = $this->createContentDraft(
5913
            'folder',
5914
            $this->generateId('location', 2),
5915
            [
5916
                'name' => 'Marco',
5917
            ]
5918
        );
5919
5920
        $publishedContent = $this->contentService->publishVersion($contentDraft->versionInfo);
5921
        $contentMetadataUpdateStruct = new ContentMetadataUpdateStruct([
5922
            'name' => 'Polo',
5923
        ]);
5924
        $this->contentService->updateContentMetadata($publishedContent->contentInfo, $contentMetadataUpdateStruct);
5925
5926
        $updatedContent = $this->contentService->loadContent($publishedContent->id);
5927
5928
        $this->assertEquals('Marco', $publishedContent->contentInfo->name);
5929
        $this->assertEquals('Polo', $updatedContent->contentInfo->name);
5930
    }
5931
5932
    public function testCopyTranslationsFromPublishedToDraft()
5933
    {
5934
        $contentDraft = $this->createContentDraft(
5935
            'folder',
5936
            $this->generateId('location', 2),
5937
            [
5938
                'name' => 'Folder US',
5939
            ]
5940
        );
5941
5942
        $publishedContent = $this->contentService->publishVersion($contentDraft->versionInfo);
5943
5944
        $deDraft = $this->contentService->createContentDraft($publishedContent->contentInfo);
5945
5946
        $contentUpdateStruct = new ContentUpdateStruct([
5947
            'initialLanguageCode' => self::GER_DE,
5948
            'fields' => $contentDraft->getFields(),
5949
        ]);
5950
5951
        $contentUpdateStruct->setField('name', 'Folder GER', self::GER_DE);
5952
5953
        $deContent = $this->contentService->updateContent($deDraft->versionInfo, $contentUpdateStruct);
5954
5955
        $updatedContent = $this->contentService->loadContent($deContent->id, null, $deContent->versionInfo->versionNo);
5956
        $this->assertEquals(
5957
            [
5958
                self::ENG_US => 'Folder US',
5959
                self::GER_DE => 'Folder GER',
5960
            ],
5961
            $updatedContent->fields['name']
5962
        );
5963
5964
        $gbDraft = $this->contentService->createContentDraft($publishedContent->contentInfo);
5965
5966
        $contentUpdateStruct = new ContentUpdateStruct([
5967
            'initialLanguageCode' => self::ENG_GB,
5968
            'fields' => $contentDraft->getFields(),
5969
        ]);
5970
5971
        $contentUpdateStruct->setField('name', 'Folder GB', self::ENG_GB);
5972
5973
        $gbContent = $this->contentService->updateContent($gbDraft->versionInfo, $contentUpdateStruct);
5974
        $this->contentService->publishVersion($gbDraft->versionInfo);
5975
        $updatedContent = $this->contentService->loadContent($gbContent->id, null, $gbContent->versionInfo->versionNo);
5976
        $this->assertEquals(
5977
            [
5978
                self::ENG_US => 'Folder US',
5979
                self::ENG_GB => 'Folder GB',
5980
            ],
5981
            $updatedContent->fields['name']
5982
        );
5983
5984
        $dePublished = $this->contentService->publishVersion($deDraft->versionInfo);
5985
        $this->assertEquals(
5986
            [
5987
                self::ENG_US => 'Folder US',
5988
                self::GER_DE => 'Folder GER',
5989
                self::ENG_GB => 'Folder GB',
5990
            ],
5991
            $dePublished->fields['name']
5992
        );
5993
    }
5994
5995
    /**
5996
     * Create structure of parent folders with Locations to be used for Content hide/reveal tests.
5997
     *
5998
     * @param int $parentLocationId
5999
     *
6000
     * @return \eZ\Publish\API\Repository\Values\Content\Location[] A list of Locations aimed to be parents
6001
     *
6002
     * @throws \eZ\Publish\API\Repository\Exceptions\ForbiddenException
6003
     * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException
6004
     * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException
6005
     */
6006
    private function createParentLocationsForHideReveal(int $parentLocationId): array
6007
    {
6008
        $parentFoldersLocationsIds = [
6009
            $this->createFolder([self::ENG_US => 'P1'], $parentLocationId)->contentInfo->mainLocationId,
6010
            $this->createFolder([self::ENG_US => 'P2'], $parentLocationId)->contentInfo->mainLocationId,
6011
            $this->createFolder([self::ENG_US => 'P3'], $parentLocationId)->contentInfo->mainLocationId,
6012
        ];
6013
6014
        return array_values($this->locationService->loadLocationList($parentFoldersLocationsIds));
6015
    }
6016
6017
    /**
6018
     * Filter Locations list by hidden only.
6019
     *
6020
     * @param \eZ\Publish\API\Repository\Values\Content\Location[] $locations
6021
     *
6022
     * @return array
6023
     */
6024
    private function filterHiddenLocations(array $locations): array
6025
    {
6026
        return array_values(
6027
            array_filter(
6028
                $locations,
6029
                function (Location $location) {
6030
                    return $location->hidden;
6031
                }
6032
            )
6033
        );
6034
    }
6035
6036
    public function testPublishVersionWithSelectedLanguages()
6037
    {
6038
        $publishedContent = $this->createFolder(
6039
            [
6040
                self::ENG_US => 'Published US',
6041
                self::GER_DE => 'Published DE',
6042
            ],
6043
            $this->generateId('location', 2)
6044
        );
6045
6046
        $draft = $this->contentService->createContentDraft($publishedContent->contentInfo);
6047
        $contentUpdateStruct = new ContentUpdateStruct([
6048
            'initialLanguageCode' => self::ENG_US,
6049
        ]);
6050
        $contentUpdateStruct->setField('name', 'Draft 1 US', self::ENG_US);
6051
        $contentUpdateStruct->setField('name', 'Draft 1 DE', self::GER_DE);
6052
6053
        $this->contentService->updateContent($draft->versionInfo, $contentUpdateStruct);
6054
6055
        $this->contentService->publishVersion($draft->versionInfo, [self::GER_DE]);
6056
        $content = $this->contentService->loadContent($draft->contentInfo->id);
6057
        $this->assertEquals(
6058
            [
6059
                self::ENG_US => 'Published US',
6060
                self::GER_DE => 'Draft 1 DE',
6061
            ],
6062
            $content->fields['name']
6063
        );
6064
    }
6065
6066
    public function testCreateContentWithRomanianSpecialCharsInTitle()
6067
    {
6068
        $baseName = 'ȘșțȚdfdf';
6069
        $expectedPath = '/SstTdfdf';
6070
6071
        $this->createFolder([self::ENG_US => $baseName], 2);
6072
6073
        $urlAliasService = $this->getRepository()->getURLAliasService();
6074
        $urlAlias = $urlAliasService->lookup($expectedPath);
6075
        $this->assertSame($expectedPath, $urlAlias->path);
6076
    }
6077
6078
    /**
6079
     * @param int $amountOfDrafts
6080
     *
6081
     * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException
6082
     */
6083
    private function createContentDrafts(int $amountOfDrafts): void
6084
    {
6085
        if (0 >= $amountOfDrafts) {
6086
            throw new InvalidArgumentException('$amountOfDrafts', 'Must be greater then 0');
6087
        }
6088
6089
        $publishedContent = $this->createContentVersion1();
6090
6091
        for ($i = 1; $i <= $amountOfDrafts; ++$i) {
6092
            $this->contentService->createContentDraft($publishedContent->contentInfo);
6093
        }
6094
    }
6095
6096
    /**
6097
     * @param array $limitationValues
6098
     *
6099
     * @return \eZ\Publish\API\Repository\Values\User\User
6100
     *
6101
     * @throws \eZ\Publish\API\Repository\Exceptions\ForbiddenException
6102
     * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException
6103
     * @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException
6104
     */
6105
    private function createUserWithVersionReadLimitations(array $limitationValues = []): User
6106
    {
6107
        $limitations = [
6108
            new LocationLimitation(['limitationValues' => $limitationValues]),
6109
        ];
6110
6111
        return $this->createUserWithPolicies(
6112
            'user',
6113
            [
6114
                ['module' => 'content', 'function' => 'versionread', 'limitations' => $limitations],
6115
                ['module' => 'content', 'function' => 'create'],
6116
                ['module' => 'content', 'function' => 'read'],
6117
                ['module' => 'content', 'function' => 'edit'],
6118
            ]
6119
        );
6120
    }
6121
}
6122