ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilKioskModeServiceTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 2021 - Daniel Weise <daniel.weise@concepts-and-training.de> - Extended GPL, see LICENSE */
6 
8 
9 require_once "class.ilDummyKioskModeView.php";
10 
11 class ilKioskModeServiceTest extends TestCase
12 {
13  public function test_createObject(): void
14  {
15  $ctrl = $this->createMock(ilCtrl::class);
16  $lng = $this->createMock(ilLanguage::class);
17  $access = $this->createMock(ilAccess::class);
18  $obj_definition = $this->createMock(ilObjectDefinition::class);
19 
20  $obj = new ilKioskModeService($ctrl, $lng, $access, $obj_definition);
21 
22  $this->assertInstanceOf(ilKioskModeService::class, $obj);
23  }
24 
25  public function test_getViewFor_non_existing_type(): void
26  {
27  $ctrl = $this->createMock(ilCtrl::class);
28  $lng = $this->createMock(ilLanguage::class);
29  $access = $this->createMock(ilAccess::class);
30 
31  $ilObject = $this->createMock(ilObject::class);
32  $ilObject
33  ->expects($this->once())
34  ->method("getType")
35  ->willReturn("testtype")
36  ;
37 
38  $obj_definition = $this->createMock(ilObjectDefinition::class);
39  $obj_definition
40  ->expects($this->exactly(1))
41  ->method("getClassName")
42  ->with("testtype")
43  ->willReturn("wrong")
44  ;
45 
46 
47  $obj = new ilKioskModeService($ctrl, $lng, $access, $obj_definition);
48  $this->assertNull($obj->getViewFor($ilObject));
49  }
50 
51  public function test_getViewFor(): void
52  {
53  $ctrl = $this->createMock(ilCtrl::class);
54  $lng = $this->createMock(ilLanguage::class);
55  $access = $this->createMock(ilAccess::class);
56 
57  $ilObject = $this->createMock(ilObject::class);
58  $ilObject
59  ->expects($this->once())
60  ->method("getType")
61  ->willReturn("testtype")
62  ;
63 
64  $obj_definition = $this->createMock(ilObjectDefinition::class);
65  $obj_definition
66  ->expects($this->exactly(2))
67  ->method("getClassName")
68  ->with("testtype")
69  ->willReturn("Dummy")
70  ;
71 
72 
73  $obj = new ilKioskModeService($ctrl, $lng, $access, $obj_definition);
74  $result = $obj->getViewFor($ilObject);
75 
76  $this->assertInstanceOf(ilDummyKioskModeView::class, $result);
77  }
78 }
$lng
Central entry point for users of the service.