5 require_once(__DIR__ .
"/TestComponent.php");
6 require_once(__DIR__ .
"/../Base.php");
8 use \ILIAS\UI\Component as
C;
9 use \ILIAS\UI\Implementation\DefaultRenderer;
10 use \ILIAS\UI\Implementation\Glyph\Renderer as GlyphRenderer;
11 use \ILIAS\UI\Renderer;
12 use \ILIAS\UI\Implementation\Render\ComponentRenderer;
20 $r = $dr->_getRendererFor(
new \
ILIAS\
UI\Implementation\
Component\Symbol\Glyph\Glyph(
"up",
"up"));
21 $this->assertInstanceOf(\
ILIAS\
UI\Implementation\Render\ComponentRenderer::class, $r);
27 $r1 = $dr->_getRendererFor(
new \
ILIAS\
UI\Implementation\
Component\Symbol\Glyph\Glyph(
"up",
"up"));
28 $r2 = $dr->_getRendererFor(
new \
ILIAS\
UI\Implementation\
Component\Symbol\Glyph\Glyph(
"up",
"up"));
29 $this->assertTrue($r1 === $r2,
"Instances not equal");
34 $this->resource_registry = parent::getResourceRegistry();
35 return $this->resource_registry;
41 $component = new \ILIAS\UI\Component\Test\TestComponent(
"foo");
43 $dr->render($component);
45 $this->assertEquals(array(
"test.js"), $this->resource_registry->resources);
51 $component = new \ILIAS\UI\Component\Test\TestComponent(
"foo");
52 $dr2 = $dr->withAdditionalContext($component);
53 $this->assertNotSame($dr, $dr2);
59 $c1 = new \ILIAS\UI\Component\Test\TestComponent(
"foo");
60 $c2 = new \ILIAS\UI\Component\Test\TestComponent(
"bar");
62 ->withAdditionalContext($c1)
63 ->withAdditionalContext($c2);
64 $this->assertEquals([], $dr->_getContexts());
65 $this->assertEquals([$c1, $c2], $dr2->_getContexts());
71 ->getMockBuilder(\
ILIAS\
UI\Implementation\Render\Loader::class)
72 ->setMethods([
"getRendererFor",
"getRendererFactoryFor"])
77 $c1 = new \ILIAS\UI\Component\Test\TestComponent(
"foo");
78 $c2 = new \ILIAS\UI\Component\Test\TestComponent(
"bar");
81 ->withAdditionalContext($c1)
82 ->withAdditionalContext($c2);
85 ->expects($this->once())
86 ->method(
"getRendererFor")
87 ->with($c1, [$c1, $c2]);
89 $renderer->_getRendererFor($c1);
94 $c1 = new \ILIAS\UI\Component\Test\TestComponent(
"foo");
96 $html = $renderer->render($c1);
97 $this->assertEquals(
"foo", $html);
102 $c1 = new \ILIAS\UI\Component\Test\TestComponent(
"foo");
104 new \
ILIAS\
UI\Implementation\Render\ilJavaScriptBinding(
108 $html = $renderer->renderAsync($c1);
109 $this->assertEquals(
"foo", $html);
114 $c1 = new \ILIAS\UI\Component\Test\JSTestComponent(
"foo");
116 new \
ILIAS\
UI\Implementation\Render\ilJavaScriptBinding($this->
getTemplateFactory()->getTemplate(
"tpl.main.html",
false,
false))
118 $html = $renderer->renderAsync($c1);
119 $this->assertEquals(
'foo<script data-replace-marker="script">id:foo.id content:foo</script>', $html);
124 $c1 = new \ILIAS\UI\Component\Test\TestComponent(
"foo");
125 $c2 = new \ILIAS\UI\Component\Test\JSTestComponent(
"foo");
127 new \
ILIAS\
UI\Implementation\Render\ilJavaScriptBinding($this->
getTemplateFactory()->getTemplate(
"tpl.main.html",
false,
false))
129 $html = $renderer->renderAsync($c2);
130 $this->assertEquals(
'foo<script data-replace-marker="script">id:foo.id content:foo</script>', $html);
131 $html = $renderer->renderAsync($c1);
132 $this->assertEquals(
"foo", $html);
133 $html = $renderer->renderAsync($c2);
134 $this->assertEquals(
'foo<script data-replace-marker="script">id:foo.id content:foo</script>', $html);
139 $c1 = new \ILIAS\UI\Component\Test\TestComponent(
"foo");
142 new \
ILIAS\
UI\Implementation\Render\ilJavaScriptBinding($this->
getTemplateFactory()->getTemplate(
"tpl.main.html",
false,
false))
144 $html = $renderer->renderAsync([$c1,$c1]);
145 $this->assertEquals(
'foofoo', $html);
153 $this->component_renderer = $this->createMock(ComponentRenderer::class);
154 $component = $this->createMock(
C\Component::class);
162 protected function getRendererFor(
C\
Component $component)
164 return $this->
self->component_renderer;
167 protected function getJSCodeForAsyncRenderingFor(
C\
Component $component)
173 $this->component_renderer->expects($this->once())
175 ->with($component, $renderer);
177 $renderer->$render_type($component);
185 $this->component_renderer = $this->createMock(ComponentRenderer::class);
186 $component = $this->createMock(
C\Component::class);
187 $root = $this->createMock(Renderer::class);
195 protected function getRendererFor(
C\
Component $component)
197 return $this->
self->component_renderer;
200 protected function getJSCodeForAsyncRenderingFor(
C\
Component $component)
206 $this->component_renderer->expects($this->once())
208 ->with($component, $root);
210 $renderer->$render_type($component, $root);
223 $component = $this->createMock(
C\Component::class);
224 $root = $this->createMock(Renderer::class);
233 $root->expects($this->exactly(2))
238 $res = $renderer->render([$component, $component], $root);
239 $this->assertEquals(
"..",
$res);
test_render_async_array()
test_passesContextsToComponentRendererLoader()
test_component_list_uses_root_to_render()
test_passes_other_on_as_root($render_type)
render_type
Class ChatMainBarProvider .
test_render_async_with_js_twice()
test_render_async_with_js()
test_render_async_no_js()
foreach($_POST as $key=> $value) $res
Provides common functionality for UI tests.
test_passes_self_as_root_if_no_root_exist($render_type)
render_type
test_getRenderer_caching()
test_getRenderer_successfully()
test_withAdditionalContext_clones()
__construct(Container $dic, ilPlugin $plugin)
getDefaultRenderer(JavaScriptBinding $js_binding=null, $with_stub_renderings=[])