19 declare(strict_types=1);
37 require_once __DIR__ .
'/../ContainerMock.php';
45 $this->assertInstanceOf(DocumentModal::class,
new DocumentModal($this->mock(UIServices::class), $this->fail(...)));
50 $content = $this->mockTree(DocumentContent::class, [
'title' =>
'foo']);
51 $component = $this->mock(Component::class);
52 $signal = $this->mock(Signal::class);
53 $modal_component = $this->mockTree(Lightbox::class, [
'getShowSignal' => $signal]);
54 $button_component = $this->mock(Shy::class);
55 $button_component->expects(self::once())->method(
'withOnClick')->with($signal)->willReturn($button_component);
57 $text_page = $this->mock(LightboxTextPage::class);
59 $modal = $this->mock(ModalFactory::class);
60 $modal->expects(self::once())->method(
'lightboxTextPage')->with(
'rendered',
'foo')->willReturn($text_page);
61 $modal->expects(self::once())->method(
'lightbox')->with([$text_page])->willReturn($modal_component);
63 $instance =
new DocumentModal($this->mockTree(UIServices::class, [
64 'renderer' => $this->mockMethod(Renderer::class,
'render', [$component],
'rendered'),
67 'button' => $this->mockMethod(ButtonFactory::class,
'shy', [
'foo',
''], $button_component),
70 $this->assertSame($content, $c);
74 $this->assertSame([$button_component, $modal_component], $instance->create($content));
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...