22 require_once(
'AbstractBaseTest.php');
24 require_once(
'DummyIDGenerator.php');
99 protected function setUp(): void
102 $this->storage_handler = $this->createMock(StorageHandler::class);
103 $this->storage_handler_factory = $this->createMock(StorageHandlerFactory::class);
104 $this->storage_handler_factory->method(
'getPrimary')->willReturn($this->storage_handler);
105 $this->revision_repository = $this->createMock(RevisionRepository::class);
106 $this->resource_repository = $this->createMock(ResourceRepository::class);
107 $this->collection_repository = $this->createMock(CollectionRepository::class);
108 $this->information_repository = $this->createMock(InformationRepository::class);
109 $this->stakeholder_repository = $this->createMock(StakeholderRepository::class);
111 $this->revision_repository,
112 $this->resource_repository,
113 $this->collection_repository,
114 $this->information_repository,
115 $this->stakeholder_repository
117 $this->locking = $this->createMock(LockHandler::class);
118 $this->stream_access = $this->createMock(StreamAccess::class);
119 $this->information = $this->createMock(Information::class);
120 $this->revision = $this->createMock(Revision::class);
127 string $expected_file_name,
128 string $expected_mime_type,
130 int $expected_version_number,
131 int $expected_owner_id
133 $identification = $this->id_generator->getUniqueResourceIdentification();
143 $expected_version_number,
150 $this->resource_repository->expects($this->once())
152 ->willReturn($blank_resource);
156 $this->revision_repository->expects($this->once())
157 ->method(
'blankFromUpload')
163 ->willReturn($blank_revision);
ILIAS ResourceStorage Resource ResourceBuilder $resource_builder
Class ResourceBuilderTest.
Class UploadedFileRevision.
Repositories $repositories
Class AbstractBaseResourceBuilderTest.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
mockResourceAndRevision(string $expected_file_name, string $expected_mime_type, int $expected_size, int $expected_version_number, int $expected_owner_id)
Class StorableFileResource.
setVersionNumber(int $version_number)
getDummyUploadResult(string $file_name, string $mime_type, int $size)