24 private $id =
'dummy';
92 protected function setUp() : void
96 $this->storage_handler = $this->createMock(StorageHandler::class);
97 $this->revision_repository = $this->createMock(RevisionRepository::class);
98 $this->resource_repository = $this->createMock(ResourceRepository::class);
99 $this->information_repository = $this->createMock(InformationRepository::class);
101 $this->storage_handler,
102 $this->revision_repository,
103 $this->resource_repository,
104 $this->information_repository
106 $this->information = $this->createMock(Information::class);
107 $this->revision = $this->createMock(Revision::class);
113 $file_id =
'my_file_id';
114 $file_name =
'testfile.txt';
115 $file_mime_type =
'application/base64';
119 $identification = $r->getUniqueResourceIdentification();
120 $result = $this->getUploadResult($file_name, $file_mime_type, $file_size);
122 $this->storage_handler->expects($this->once())
123 ->method(
'getIdentificationGenerator')
126 $this->resource_repository->expects($this->once())
128 ->with($identification)
131 $this->revision_repository->expects($this->once())
135 $resource = $this->resource_builder->new(
$result);
136 $revision = $resource->getCurrentRevision();
138 $this->assertEquals($identification->serialize(), $resource->getIdentification()->serialize());
139 $this->assertEquals($file_id, $resource->getIdentification()->serialize());
140 $this->assertEquals($file_name, $revision->getInformation()->getTitle());
141 $this->assertEquals($file_mime_type, $revision->getInformation()->getMimeType());
142 $this->assertEquals($file_size, $revision->getInformation()->getSize());
145 $this->resource_repository->expects($this->once())->method(
'store')->with($resource);
146 $this->storage_handler->expects($this->once())->method(
'storeUpload')->with($revision);
147 $this->revision_repository->expects($this->once())->method(
'store')->with($revision);
148 $this->information_repository->expects($this->once())->method(
'store')->with($revision->getInformation(), $revision);
149 $this->resource_builder->store($resource);
Class UniqueIDIdentificationGenerator.
Interface Identification.
__construct(string $id)
DummyIDGenerator constructor.
Class StorableFileResource.
Class UploadedFileRevision.
Class EntryLockingStringMap.
getUniqueResourceIdentification()
Class ResourceBuilderTest.
getUploadResult(string $file_name, string $mime_type, int $size)