-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IBX-6833: Fixed copying empty fields from a published version
For more details see https://issues.ibexa.co/browse/IBX-6833 and #390 Key changes: * Fixed skipping copying empty fields when copying translations from published version * [Tests] Added integration coverage for the use case
- Loading branch information
Showing
2 changed files
with
122 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
118 changes: 118 additions & 0 deletions
118
...s/integration/Core/Repository/ContentService/CopyTranslationsFromPublishedVersionTest.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
<?php | ||
|
||
/** | ||
* @copyright Copyright (C) Ibexa AS. All rights reserved. | ||
* @license For full copyright and license information view LICENSE file distributed with this source code. | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Ibexa\Tests\Integration\Core\Repository\ContentService; | ||
|
||
use DateTime; | ||
use eZ\Publish\API\Repository\Values\ContentType\FieldDefinitionCreateStruct; | ||
use eZ\Publish\Core\FieldType\TextLine; | ||
use eZ\Publish\Core\Repository\Values\Content\ContentUpdateStruct; | ||
use Ibexa\Tests\Integration\Core\RepositoryTestCase; | ||
|
||
/** | ||
* @covers \eZ\Publish\API\Repository\ContentService | ||
*/ | ||
final class CopyTranslationsFromPublishedVersionTest extends RepositoryTestCase | ||
{ | ||
private const ENG_LANGUAGE_CODE = 'eng-GB'; | ||
private const GER_LANGUAGE_CODE = 'ger-DE'; | ||
private const US_LANGUAGE_CODE = 'eng-US'; | ||
private const CONTENT_TYPE_IDENTIFIER = 'custom'; | ||
|
||
/** | ||
* @throws \eZ\Publish\API\Repository\Exceptions\Exception | ||
*/ | ||
public function testCopyTranslationsFromPublishedVersionCopiesEmptyValues(): void | ||
{ | ||
$this->createContentType(); | ||
|
||
$contentService = self::getContentService(); | ||
$contentTypeService = self::getContentTypeService(); | ||
$locationService = self::getLocationService(); | ||
|
||
// Creating and publishing content in eng-GB language | ||
$contentType = $contentTypeService->loadContentTypeByIdentifier(self::CONTENT_TYPE_IDENTIFIER); | ||
$mainLanguageCode = self::ENG_LANGUAGE_CODE; | ||
$contentCreateStruct = $contentService->newContentCreateStruct($contentType, $mainLanguageCode); | ||
$contentCreateStruct->setField('title', 'Test title'); | ||
|
||
$contentDraft = $contentService->createContent( | ||
$contentCreateStruct, | ||
[ | ||
$locationService->newLocationCreateStruct(2), | ||
], | ||
); | ||
$publishedContent = $contentService->publishVersion($contentDraft->getVersionInfo()); | ||
|
||
// Creating a draft and publishing in ger-DE language with empty 'title' field | ||
$gerDraft = $contentService->createContentDraft($publishedContent->contentInfo); | ||
$usDraft = $contentService->createContentDraft($publishedContent->contentInfo); | ||
|
||
$contentUpdateStruct = new ContentUpdateStruct([ | ||
'initialLanguageCode' => self::GER_LANGUAGE_CODE, | ||
]); | ||
$contentUpdateStruct->setField('title', null); | ||
$gerContent = $contentService->updateContent($gerDraft->getVersionInfo(), $contentUpdateStruct); | ||
$contentService->publishVersion($gerContent->getVersionInfo(), [self::GER_LANGUAGE_CODE]); | ||
|
||
// Creating a draft and publishing in eng-US language with empty 'title' field | ||
$contentUpdateStruct = new ContentUpdateStruct([ | ||
'initialLanguageCode' => self::US_LANGUAGE_CODE, | ||
]); | ||
$contentUpdateStruct->setField('title', null); | ||
$usContent = $contentService->updateContent($usDraft->getVersionInfo(), $contentUpdateStruct); | ||
$publishedUsContent = $contentService->publishVersion($usContent->getVersionInfo(), [self::US_LANGUAGE_CODE]); | ||
|
||
$usFieldValueInUsContent = $publishedUsContent->getField('title', self::US_LANGUAGE_CODE)->getValue(); | ||
self::assertInstanceOf(TextLine\Value::class, $usFieldValueInUsContent); | ||
self::assertSame('', $usFieldValueInUsContent->text); | ||
|
||
$gerFieldValueInUsContent = $publishedUsContent->getField('title', self::GER_LANGUAGE_CODE)->getValue(); | ||
self::assertInstanceOf(TextLine\Value::class, $gerFieldValueInUsContent); | ||
self::assertSame('', $gerFieldValueInUsContent->text); | ||
} | ||
|
||
private function createContentType(): void | ||
{ | ||
$permissionResolver = self::getPermissionResolver(); | ||
$contentTypeService = self::getContentTypeService(); | ||
|
||
$typeCreate = $contentTypeService->newContentTypeCreateStruct(self::CONTENT_TYPE_IDENTIFIER); | ||
|
||
$typeCreate->mainLanguageCode = 'eng-GB'; | ||
$typeCreate->remoteId = '1234567890abcdef'; | ||
$typeCreate->urlAliasSchema = '<title>'; | ||
$typeCreate->nameSchema = '<title>'; | ||
$typeCreate->names = [ | ||
self::ENG_LANGUAGE_CODE => 'Some content type', | ||
]; | ||
$typeCreate->descriptions = [ | ||
self::ENG_LANGUAGE_CODE => '', | ||
]; | ||
$typeCreate->creatorId = $permissionResolver->getCurrentUserReference()->getUserId(); | ||
$typeCreate->creationDate = new DateTime(); | ||
|
||
$typeCreate->addFieldDefinition( | ||
new FieldDefinitionCreateStruct( | ||
[ | ||
'fieldTypeIdentifier' => 'ezstring', | ||
'identifier' => 'title', | ||
'names' => ['eng-GB' => 'Title'], | ||
'isRequired' => false, | ||
'isTranslatable' => true, | ||
], | ||
) | ||
); | ||
|
||
$contentTypeDraft = $contentTypeService->createContentType( | ||
$typeCreate, | ||
[$contentTypeService->loadContentTypeGroupByIdentifier('Content')], | ||
); | ||
$contentTypeService->publishContentTypeDraft($contentTypeDraft); | ||
} | ||
} |