19 declare(strict_types=1);
54 require_once __DIR__ .
'/../ContainerMock.php';
62 $this->assertInstanceOf(Blocks::class,
new Blocks(
'foo', $this->mock(Container::class), $this->mock(Provide::class)));
67 $instance =
new Blocks(
'foo', $this->mock(Container::class), $this->mock(Provide::class));
69 $this->assertInstanceOf(DefaultMappings::class, $instance->defaultMappings());
70 $this->assertInstanceOf(Marshal::class, $instance->marshal());
71 $this->assertInstanceOf(SelectSetting::class, $instance->selectSettingsFrom($this->mock(KeyValueStore::class)));
72 $this->assertInstanceOf(KeyValueStore::class, $instance->readOnlyStore($this->mock(KeyValueStore::class)));
73 $this->assertInstanceOf(KeyValueStore::class, $instance->userStore($this->mock(ilObjUser::class)));
74 $this->assertInstanceOf(KeyValueStore::class, $instance->sessionStore());
75 $this->assertInstanceOf(User::class, $instance->user(
76 $this->mock(Settings::class),
77 $this->mock(UserSettings::class),
78 $this->mock(ilObjUser::class)
86 $this->mockMethod(Container::class,
'settings', [], $this->mock(ilSetting::class)),
87 $this->mock(Provide::class)
90 $this->assertInstanceOf(KeyValueStore::class, $instance->globalStore());
97 $container->expects(self::once())->method(
'ui')->willReturn($this->mock(UIServices::class));
98 $container->expects(self::once())->method(
'language')->willReturn($this->mock(ilLanguage::class));
103 $this->mock(Provide::class)
106 $this->assertInstanceOf(UI::class, $instance->ui());
111 $container = $this->mockMethod(Container::class,
'ctrl', [], $this->mock(ilCtrl::class));
114 $this->assertInstanceOf(Routing::class, $instance->routing());
122 $refinery = $this->mock(Refinery::class);
123 $transformation = $this->mock(Transformation::class);
125 $container = $this->mockTree(Container::class, [
129 'query' => $this->mockMethod(ArrayBasedRequestWrapper::class,
'retrieve', [
'bar', $transformation], $selected)
135 $result = $instance->retrieveQueryParameter(
'bar',
function (
Refinery $r) use (&$called, $transformation,
$refinery):
object {
138 return $transformation;
141 $this->assertSame($selected, $result);
142 $this->assertTrue($called);
147 $result = $this->mockTree(Result::class, [
'value' =>
'dummy']);
148 $result->expects(self::once())->method(
'map')->willReturn($result);
149 $result->expects(self::once())->method(
'except')->willReturn($result);
150 $user = $this->mock(ilObjUser::class);
152 $ldoc_user = $this->mockTree(User::class, [
153 'agreeDate' => [
'value' => $date],
154 'acceptedVersion' => $result,
157 $language = $this->mock(ilLanguage::class);
158 $consecutive = [
'dummy lang',
'ldoc'];
159 $language->expects(self::exactly(2))->method(
'loadLanguageModule')->with(
160 $this->callback(
function ($value) use (&$consecutive) {
161 $this->assertSame(array_shift($consecutive), $value);
168 $this->mockTree(Container::class, [
'language' => $language]),
169 $this->mock(Provide::class),
171 $this->assertSame($date, $d);
172 return 'formatted date';
176 $this->assertSame($user, $u);
178 },
'foo',
'dummy lang');
180 $this->assertSame([
'foo' =>
'dummy'], $proc($user));
188 $container = $this->mockTree(Container::class, [
189 'http' => [
'request' => $this->mockMethod(ServerRequestInterface::class,
'getMethod', [],
'POST')],
192 $form = $this->mock(Form::class);
193 $form->expects(self::once())->method(
'withRequest')->with(
$container->http()->request())->willReturn($form);
194 $form->expects(self::once())->method(
'getData')->willReturn(
$data);
197 $this->assertSame($form, $instance->withRequest($form,
function ($x) use (
$data, &$called) {
198 $this->assertSame(
$data, $x);
201 $this->assertTrue($called);
206 $container = $this->mockTree(Container::class, [
207 'http' => [
'request' => [
'getMethod' =>
'GET']],
210 $form = $this->mock(Form::class);
213 $result = $instance->withRequest($form, $this->fail(...));
214 $this->assertSame($form, $result);
220 $container = $this->mockTree(Container::class, []);
222 $instance =
new Blocks(
'foo',
$container, $this->mock(Provide::class),
null,
function () use (&$called):
string {
228 $this->assertInstanceOf(PageContent::class, $result);
229 $this->assertTrue($called);
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