ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
InitCtrlServiceTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 2021 Thibeau Fuhrer <thf@studer-raimann.ch> Extended GPL, see docs/LICENSE */
6 
13 
18 final class InitCtrlServiceTest extends TestCase
19 {
21  {
22  $dic = new Container();
23  // $dic['ilDB'] = $this->createMock(ilDBInterface::class);
24  $dic['http'] = $this->createMock(HttpService::class);
25 
26  $this->expectException(ilCtrlException::class);
27  $this->expectExceptionMessage("Cannot initialize ilCtrl if Refinery Factory is not yet available.");
28  (new InitCtrlService())->init($dic);
29  }
30 
32  {
33  $dic = new Container();
34  // $dic['ilDB'] = $this->createMock(ilDBInterface::class);
35  $dic['refinery'] = $this->createMock(Refinery::class);
36 
37  $this->expectException(ilCtrlException::class);
38  $this->expectExceptionMessage("Cannot initialize ilCtrl if HTTP Services are not yet available.");
39  (new InitCtrlService())->init($dic);
40  }
41 
42  // public function testCtrlServiceInitializationWithoutDatabase() : void
43  // {
44  // $dic = new Container();
45  // $dic['refinery'] = $this->createMock(Refinery::class);
46  // $dic['http'] = $this->createMock(HttpService::class);
47  //
48  // $this->expectException(ilCtrlException::class);
49  // $this->expectExceptionMessage("Cannot initialize ilCtrl if Database is not yet available.");
50  // (new InitCtrlService())->init($dic);
51  // }
52 
53  public function testCtrlServiceInitializationSuccess(): void
54  {
55  $dic = new Container();
56  $dic['refinery'] = $this->createMock(Refinery::class);
57  // $dic['ilDB'] = $this->createMock(ilDBInterface::class);
58  $dic['http.response_sender_strategy'] = $this->createMock(DefaultResponseSenderStrategy::class);
59  $dic['http'] = $this->createMock(HttpService::class);
60  $dic['http']
61  ->method('request')
62  ->willReturn(
63  $this->createMock(ServerRequestInterface::class)
64  );
65  $dic['component.factory'] = $this->createMock(ilComponentFactory::class);
66 
67  $this->assertFalse(isset($dic['ilCtrl']));
68 
69  (new InitCtrlService())->init($dic);
70 
71  $this->assertTrue(isset($dic['ilCtrl']));
72  $this->assertInstanceOf(
73  ilCtrlInterface::class,
74  $dic->ctrl()
75  );
76  }
77 }
Class InitCtrlService wraps the initialization of ilCtrl.
Class InitCtrlServiceTest.
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:31
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
$dic
Definition: result.php:32