19 declare(strict_types=1);
53 require_once __DIR__ .
'/ContainerMock.php';
61 $this->assertInstanceOf(Conductor::class,
new Conductor($this->mock(Container::class), $this->mock(Internal::class), $this->mock(Routing::class)));
66 $instance =
new Conductor($this->mock(Container::class), $this->mock(Internal::class), $this->mock(Routing::class));
67 $this->assertInstanceOf(Provide::class, $instance->provide(
'foo'));
73 $this->mock(Component::class),
74 $this->mock(Component::class),
77 $space = $this->mock(Content::class);
79 $container = $this->mockTree(Container::class, [
81 'renderer' => $this->mockMethod(Renderer::class,
'render', [
87 $internal = $this->mockMethod(Internal::class,
'get', [
'show-on-login-page',
'foo'], fn() =>
$components);
91 $this->assertSame(
'rendered', $instance->loginPageHTML(
'foo'));
96 $constraint = $this->mock(Constraint::class);
97 $component = $this->mock(Component::class);
99 $container = $this->mockTree(Container::class, [
100 'refinery' => [
'to' => [
'string' => $constraint]],
101 'http' => [
'wrapper' => [
'query' => $this->mockMethod(ArrayBasedRequestWrapper::class,
'retrieve', [
'withdraw_consent', $constraint],
'foo')]],
102 'ui' => [
'renderer' => $this->mockMethod(Renderer::class,
'render', [$component],
'rendered')],
106 $internal = $this->mock(Internal::class);
107 $internal->method(
'get')->willReturnCallback(
function ($param1, $param2) use (&$called, $component) {
108 if ($param1 ===
'logout-text' && $param2 ===
'foo') {
109 return static function () use ($component):
Component {
119 $logoutText = $instance->logoutText();
121 $this->assertSame(
'rendered', $logoutText);
126 $footer = fn() =>
null;
128 $modify_footer =
function (
Closure $f) use ($footer) {
129 $this->assertSame($footer,
$f);
133 $instance =
new Conductor($this->mock(Container::class), $this->mockMethod(Internal::class,
'all', [
'footer'], [
136 ]), $this->mock(Routing::class));
138 $this->assertSame($footer, $instance->modifyFooter($footer));
144 public function testAgree(
string $gui,
string $key): void
146 $main_template = $this->mock(ilGlobalTemplateInterface::class);
147 $main_template->expects(self::once())->method(
'setContent')->with(
'rendered');
148 $this->
agreement(
'agree', $gui, $key, $main_template);
156 $this->assertSame(
'rendered', $this->
agreement(
'agreeContent', $gui, $key));
161 $this->expectExceptionMessage(
'Not available.');
162 $routing = $this->mock(Routing::class);
163 $routing->expects(self::once())->method(
'redirectToOriginalTarget');
164 $constraint = $this->mock(Constraint::class);
165 $container = $this->mockTree(Container::class, [
166 'refinery' => [
'to' => [
'string' => $constraint]],
167 'http' => [
'wrapper' => [
'query' => $this->mockMethod(ArrayBasedRequestWrapper::class,
'retrieve', [
'id', $constraint],
'foo')]],
169 $internal = $this->mock(Internal::class);
170 $internal = $this->mockMethod(Internal::class,
'get', [
'agreement-form',
'foo'],
function (
string $g,
string $cmd):
Result {
171 return new Error(
'Not available.');
174 $instance->agreeContent(ilLegalDocumentsAgreementGUI::class,
'foo');
179 $main_template = $this->mock(ilGlobalTemplateInterface::class);
180 $main_template->expects(self::once())->method(
'setContent')->with(
'rendered');
181 $this->
agreement(
'withdraw',
'foo',
'withdraw', $main_template);
186 $internal = $this->mockMethod(Internal::class,
'all', [
'filter-online-users'], [
190 $instance =
new Conductor($this->mock(Container::class), $internal, $this->mock(Routing::class));
193 [1, 2, 3, 4, 7, 8, 9],
194 $instance->usersWithHiddenOnlineStatus([1, 2, 3, 4, 5, 6, 7, 8, 9])
201 'foo' => $this->mock(Constraint::class),
202 'bar' => $this->mock(Constraint::class),
205 $series = $this->mock(Transformation::class);
207 $container = $this->mockTree(Container::class, [
208 'refinery' => [
'in' => $this->mockMethod(
211 [array_values($constraints)],
216 $internal = $this->mockMethod(Internal::class,
'all', [
'constrain-internal-mail'], $constraints);
219 $this->assertSame($series, $instance->userCanReadInternalMail());
225 'foo' => $this->mock(Constraint::class),
226 'bar' => $this->mock(Constraint::class),
229 $container = $this->mockTree(Container::class, [
230 'refinery' => [
'in' => $this->mockMethod(InGroup::class,
'series', [array_values($constraints)], $this->mock(Transformation::class))]
233 $internal = $this->mockMethod(Internal::class,
'all', [
'use-soap-api'], $constraints);
236 $this->assertInstanceOf(Transformation::class, $instance->canUseSoapApi());
241 $called = [
false,
false];
243 $internal = $this->mockMethod(Internal::class,
'all', [
'after-login'], [
244 function () use (&$called):
void {
247 function () use (&$called):
void {
252 $instance =
new Conductor($this->mock(Container::class), $internal, $this->mock(Routing::class));
254 $instance->afterLogin();
256 $this->assertSame([
true,
true], $called);
261 $foo = $this->mock(Target::class);
262 $internal = $this->mockMethod(Internal::class,
'all', [
'goto'], [
263 $this->mockTree(GotoLink::class, [
'name' =>
'bar']),
264 $this->mockTree(GotoLink::class, [
'name' =>
'foo',
'target' =>
$foo]),
267 $instance =
new Conductor($this->mock(Container::class), $internal, $this->mock(Routing::class));
269 $target = $instance->findGotoLink(
'foo');
270 $this->assertTrue($target->isOk());
271 $this->assertSame(
$foo, $target->value());
278 'foo' => $this->mock(Intercept::class),
279 'bar' => $this->mock(Intercept::class)
282 $internal = $this->mockMethod(Internal::class,
'all', [
'intercept'], $intercepting);
284 $instance =
new Conductor($this->mock(Container::class), $internal, $this->mock(Routing::class));
285 $this->assertSame($intercepting, $instance->intercepting());
290 $internal = $this->mockMethod(Internal::class,
'all', [
'self-registration'], [
291 $this->mock(SelfRegistration::class),
294 $instance =
new Conductor($this->mock(Container::class), $internal, $this->mock(Routing::class));
296 $this->assertInstanceOf(Bundle::class, $instance->selfRegistration());
301 $internal = $this->mockMethod(Internal::class,
'all', [
'user-management-fields'], [
302 fn() => [
'foo' =>
'bar',
'baz' =>
'hej'],
303 fn() => [
'hoo' =>
'har'],
306 $instance =
new Conductor($this->mock(Container::class), $internal, $this->mock(Routing::class));
312 ], $instance->userManagementFields($this->mock(ilObjUser::class)));
318 'Form type' => [ilLegalDocumentsAgreementGUI::class,
'agreement-form'],
319 'Public type' => [
'foo',
'public-page'],
325 $constraint = $this->mock(Constraint::class);
327 $ctrl = $this->mock(ilCtrl::class);
328 $ctrl->expects(self::once())->method(
'setParameterByClass')->with($gui,
'id',
'foo');
330 $container = $this->mockTree(Container::class, [
331 'refinery' => [
'to' => [
'string' => $constraint]],
332 'http' => [
'wrapper' => [
'query' => $this->mockMethod(ArrayBasedRequestWrapper::class,
'retrieve', [
'id', $constraint],
'foo')]],
334 'mainTemplate' => $main_template ?? $this->mock(ilGlobalTemplateInterface::class),
335 'renderer' => $this->mock(Renderer::class),
340 $fragment = $this->mockMethod(PageFragment::class,
'render', [
$container->ui()->mainTemplate(),
$container->ui()->renderer()],
'rendered');
342 $internal = $this->mockMethod(Internal::class,
'get', [$key,
'foo'],
function (
string $g,
string $cmd) use ($fragment, $gui):
Result {
343 $this->assertSame($gui, $g);
344 $this->assertSame(
'some cmd', $cmd);
345 return new Ok($fragment);
350 return $instance->$method($gui,
'some cmd');
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
agreement(string $method, string $gui, string $key, ?ilGlobalTemplateInterface $main_template=null)
A result encapsulates a value or an error and simplifies the handling of those.
testAgree(string $gui, string $key)
agreeTypes
testUserManagementFields()
testRedirectAgreeContent()
testUsersWithHiddenOnlineStatus()
testUserCanReadInternalMail()
testAgreeContent(string $gui, string $key)
agreeTypes