eZ\Publish\Core\Repository\Tests\Service\Mock\ContentTest::assertForTestUpdateContentRequiredField PHP Method

assertForTestUpdateContentRequiredField() public method

public assertForTestUpdateContentRequiredField ( $initialLanguageCode, $structFields, $existingFields, $fieldDefinitions )
    public function assertForTestUpdateContentRequiredField($initialLanguageCode, $structFields, $existingFields, $fieldDefinitions)
    {
        $repositoryMock = $this->getRepositoryMock();
        $mockedService = $this->getPartlyMockedContentService(array('loadContent'));
        /** @var \PHPUnit_Framework_MockObject_MockObject $languageHandlerMock */
        $languageHandlerMock = $this->getPersistenceMock()->contentLanguageHandler();
        $contentTypeServiceMock = $this->getContentTypeServiceMock();
        $fieldTypeServiceMock = $this->getFieldTypeServiceMock();
        $fieldTypeMock = $this->getMock('eZ\\Publish\\SPI\\FieldType\\FieldType');
        $existingLanguageCodes = array_map(function (Field $field) {
            return $field->languageCode;
        }, $existingFields);
        $versionInfo = new VersionInfo(array('contentInfo' => new ContentInfo(array('id' => 42, 'contentTypeId' => 24, 'mainLanguageCode' => 'eng-GB')), 'versionNo' => 7, 'languageCodes' => $existingLanguageCodes, 'status' => VersionInfo::STATUS_DRAFT));
        $content = new Content(array('versionInfo' => $versionInfo, 'internalFields' => $existingFields));
        $contentType = new ContentType(array('fieldDefinitions' => $fieldDefinitions));
        $languageHandlerMock->expects($this->any())->method('loadByLanguageCode')->with($this->isType('string'))->will($this->returnCallback(function () {
            return new Language(array('id' => 4242));
        }));
        $mockedService->expects($this->once())->method('loadContent')->with($this->equalTo(42), $this->equalTo(null), $this->equalTo(7))->will($this->returnValue($content));
        $repositoryMock->expects($this->once())->method('canUser')->with($this->equalTo('content'), $this->equalTo('edit'), $this->equalTo($content))->will($this->returnValue(true));
        $contentTypeServiceMock->expects($this->once())->method('loadContentType')->with($this->equalTo(24))->will($this->returnValue($contentType));
        $repositoryMock->expects($this->once())->method('getContentTypeService')->will($this->returnValue($contentTypeServiceMock));
        $fieldTypeMock->expects($this->any())->method('acceptValue')->will($this->returnCallback(function ($valueString) {
            return new ValueStub($valueString);
        }));
        $emptyValue = self::EMPTY_FIELD_VALUE;
        $fieldTypeMock->expects($this->any())->method('isEmptyValue')->will($this->returnCallback(function (ValueStub $value) use($emptyValue) {
            return $emptyValue === (string) $value;
        }));
        $fieldTypeMock->expects($this->any())->method('validate')->with($this->isInstanceOf('eZ\\Publish\\API\\Repository\\Values\\ContentType\\FieldDefinition'), $this->isInstanceOf('eZ\\Publish\\Core\\FieldType\\Value'));
        $this->getFieldTypeRegistryMock()->expects($this->any())->method('getFieldType')->will($this->returnValue($fieldTypeMock));
        $contentUpdateStruct = new ContentUpdateStruct(array('fields' => $structFields, 'initialLanguageCode' => $initialLanguageCode));
        return array($content->versionInfo, $contentUpdateStruct);
    }
ContentTest