Skip to content
Snippets Groups Projects
Commit bcbc7268 authored by Stefan Neufeind's avatar Stefan Neufeind Committed by Ernesto Baschny
Browse files

[BUGFIX] Follow-up: Fix fileinfo property mapping in ResourceStorage

Adjust unittest to changed conditions.

Change-Id: Ia885ba544a159cb1666464cece30c3e6ea3558b6
Fixes: #49386
Releases: 6.2, 6.1, 6.0
Reviewed-on: https://review.typo3.org/23716
Reviewed-by: Ernesto Baschny
Tested-by: Ernesto Baschny
parent 08c78c7b
Branches
Tags
No related merge requests found
......@@ -407,18 +407,33 @@ class ResourceStorageTest extends \TYPO3\CMS\Core\Tests\Unit\Resource\BaseTestCa
public function setFileContentsUpdatesObjectProperties() {
$this->initializeVfs();
$this->prepareFixture(array(), TRUE);
$fileProperties = array(
'someProperty' => 'value',
'someOtherProperty' => 42
$fileInfo = array(
'storage' => 'A',
'identifier' => 'B',
'mtime' => 'C',
'ctime' => 'D',
'mimetype' => 'E',
'size' => 'F',
'name' => 'G',
);
$newProperties = array(
'storage' => $fileInfo['storage'],
'identifier' => $fileInfo['identifier'],
'tstamp' => $fileInfo['mtime'],
'crdate' => $fileInfo['ctime'],
'mime_type' => $fileInfo['mimetype'],
'size' => $fileInfo['size'],
'name' => $fileInfo['name']
);
$hash = 'asdfg';
$driver = $this->getMock('TYPO3\\CMS\\Core\\Resource\\Driver\\LocalDriver', array(), array(array('basePath' => $this->getMountRootUrl())));
$driver->expects($this->once())->method('getFileInfo')->will($this->returnValue($fileProperties));
$driver->expects($this->once())->method('getFileInfoByIdentifier')->will($this->returnValue($fileInfo));
$driver->expects($this->once())->method('hash')->will($this->returnValue($hash));
$this->fixture->setDriver($driver);
$mockedFile = $this->getMock('TYPO3\\CMS\\Core\\Resource\\File', array(), array(), '', FALSE);
$mockedFile->expects($this->any())->method('getIdentifier')->will($this->returnValue('/file.ext'));
$mockedFile->expects($this->once())->method('updateProperties')->with($this->equalTo(array_merge($fileProperties, array('sha1' => $hash))));
$mockedFile->expects($this->at(1))->method('updateProperties')->with($this->equalTo(array('sha1' => $hash)));
$mockedFile->expects($this->at(3))->method('updateProperties')->with($this->equalTo($newProperties));
$this->fixture->setFileContents($mockedFile, uniqid());
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment