25 require_once(
'AbstractTestBase.php');
27 require_once(
'DummyIDGenerator.php');
108 $this->storage_handler = $this->createMock(StorageHandler::class);
109 $this->storage_handler_factory = $this->createMock(StorageHandlerFactory::class);
110 $this->storage_handler_factory->method(
'getPrimary')->willReturn($this->storage_handler);
111 $this->revision_repository = $this->createMock(RevisionRepository::class);
112 $this->resource_repository = $this->createMock(ResourceRepository::class);
113 $this->collection_repository = $this->createMock(CollectionRepository::class);
114 $this->information_repository = $this->createMock(InformationRepository::class);
115 $this->stakeholder_repository = $this->createMock(StakeholderRepository::class);
116 $this->flavour_repository = $this->createMock(FlavourRepository::class);
118 $this->revision_repository,
119 $this->resource_repository,
120 $this->collection_repository,
121 $this->information_repository,
122 $this->stakeholder_repository,
123 $this->flavour_repository
125 $this->locking = $this->createMock(LockHandler::class);
126 $this->stream_access = $this->createMock(StreamAccess::class);
127 $this->information = $this->createMock(Information::class);
128 $this->revision = $this->createMock(Revision::class);
135 string $expected_file_name,
136 string $expected_mime_type,
138 int $expected_version_number,
139 int $expected_owner_id
141 $identification = $this->id_generator->getUniqueResourceIdentification();
151 $expected_version_number,
158 $this->resource_repository->expects($this->once())
160 ->willReturn($blank_resource);
164 $this->revision_repository->expects($this->once())
165 ->method(
'blankFromUpload')
171 ->willReturn($blank_revision);
MockObject $stream_access
MockObject $revision_repository
Class AbstractBaseResourceBuilderTestCase.
MockObject $collection_repository
MockObject $flavour_repository
getDummyUploadResult(string $file_name, string $mime_type, int $size)
Class UploadedFileRevision.
MockObject $storage_handler_factory
mockResourceAndRevision(string $expected_file_name, string $expected_mime_type, int $expected_size, int $expected_version_number, int $expected_owner_id)
ResourceBuilder $resource_builder
MockObject $resource_repository
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
MockObject $information_repository
Repositories $repositories
MockObject $storage_handler
setVersionNumber(int $version_number)
Class ResourceBuilderTest.
MockObject $stakeholder_repository