44 require_once __DIR__ .
'/../AbstractTestBase.php';
63 protected function setUp(): void
66 $this->storage_handler_mock = $this->createMock(StorageHandler::class);
67 $this->storage_handler_mock->expects($this->any())->method(
'isPrimary')->willReturn(
true);
69 $this->storage_handler_mock
71 $this->flavour_repo = $this->createMock(FlavourRepository::class);
72 $this->resource_builder = $this->createMock(ResourceBuilder::class);
73 $this->stream_access =
new StreamAccess(self::BASE_DIR, $this->storage_handler_factory);
81 $this->machine_factory,
82 $this->resource_builder,
83 $this->storage_handler_factory,
89 $flavour_definition = $this->createMock(FlavourDefinition::class);
90 $flavour_definition->expects($this->exactly(2))
91 ->method(
'getVariantName')
92 ->willReturn(str_repeat(
'a', 768));
94 $flavour_builder->has(
98 $this->assertTrue(
true);
101 $flavour_definition = $this->createMock(FlavourDefinition::class);
102 $flavour_definition->expects($this->exactly(2))
103 ->method(
'getVariantName')
104 ->willReturn(str_repeat(
'a', 769));
106 $this->expectException(\InvalidArgumentException::class);
107 $flavour_builder->has(
120 $this->machine_factory,
121 $this->resource_builder,
122 $this->storage_handler_factory,
123 $this->stream_access,
128 $flavour_definition = $this->createMock(FlavourDefinition::class);
129 $flavour_definition->expects($this->exactly(4))
130 ->method(
'getVariantName')
131 ->willReturn(
'short');
135 [[$rid_one, 0, $flavour_definition],
false],
136 [[$rid_two, 0, $flavour_definition],
true],
139 ->expects($this->exactly(2))
141 ->willReturnCallback(
142 function ($rid, $mid, $def) use (&$consecutive) {
143 [$expected, $ret] = array_shift($consecutive);
144 $this->assertEquals($expected, [$rid, $mid, $def]);
151 $flavour_builder->has(
157 $flavour_builder->has(
170 $this->machine_factory,
171 $this->resource_builder,
172 $this->storage_handler_factory,
173 $this->stream_access,
178 $flavour_definition = $this->createMock(FlavourDefinition::class);
179 $flavour_definition->expects($this->any())
180 ->method(
'getVariantName')
181 ->willReturn(
'short');
183 $this->flavour_repo->expects($this->once())
185 ->with($rid_one, 0, $flavour_definition)
188 $this->resource_builder->expects($this->exactly(1))
193 $revision = $this->createMock(FileRevision::class);
195 $revision->expects($this->once())
196 ->method(
'getInformation')
197 ->willReturn($this->createMock(FileInformation::class));
201 $resource = $this->createMock(StorableResource::class);
203 $this->resource_builder->expects($this->once())
206 ->willReturn($resource);
208 $resource->expects($this->any())
209 ->method(
'getCurrentRevision')
210 ->willReturn($revision);
213 $this->resource_builder->expects($this->exactly(1))
214 ->method(
'extractStream')
216 ->willReturn($stream);
220 $flavour = $flavour_builder->get(
224 $this->assertInstanceOf(Flavour::class, $flavour);
225 $stream_resolvers = $flavour->getStreamResolvers();
226 $this->assertCount(1, $stream_resolvers);
227 $first_stream_access = $stream_resolvers[0];
228 $this->assertInstanceOf(StreamResolver::class, $first_stream_access);
229 $resolved_stream = $first_stream_access->getStream();
230 $this->assertEquals(
'empty', (
string) $resolved_stream);
testDefinitionVariantNameLengths()
Class FileResourceHandler.
Interface Observer Contains several chained tasks and infos about them.
StreamAccess $stream_access
StorageHandler $storage_handler_mock
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class ResourceIdentification.
MockObject $resource_builder
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static ofString(string $string)
Creates a new stream with an initial value.
FlavourRepository $flavour_repo
Class StorageHandlerFactory.
Class ResourceBuilderTest.