ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ContRefStandardGUIRequestTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
29 {
30  protected function tearDown(): void
31  {
32  }
33 
34  protected function getRequest(array $get, array $post): \ILIAS\ContainerReference\StandardGUIRequest
35  {
36  $http_mock = $this->createMock(ILIAS\HTTP\Services::class);
37  $lng_mock = $this->createMock(ilLanguage::class);
38  $data = new \ILIAS\Data\Factory();
39  $refinery = new \ILIAS\Refinery\Factory($data, $lng_mock);
40  return new \ILIAS\ContainerReference\StandardGUIRequest(
41  $http_mock,
42  $refinery,
43  $get,
44  $post
45  );
46  }
47 
51  public function testRefId(): void
52  {
53  $request = $this->getRequest(
54  [
55  "ref_id" => "5"
56  ],
57  []
58  );
59 
60  $this->assertEquals(
61  5,
62  $request->getRefId()
63  );
64  }
65 
69  public function testNoRefId(): void
70  {
71  $request = $this->getRequest(
72  [
73  ],
74  []
75  );
76 
77  $this->assertEquals(
78  0,
79  $request->getRefId()
80  );
81  }
82 
86  public function testTargetId(): void
87  {
88  $request = $this->getRequest(
89  [
90  "target_id" => "14"
91  ],
92  []
93  );
94 
95  $this->assertEquals(
96  14,
97  $request->getTargetId()
98  );
99  }
100 
104  public function testNewType(): void
105  {
106  $request = $this->getRequest(
107  [
108  "new_type" => "cat"
109  ],
110  []
111  );
112 
113  $this->assertEquals(
114  "cat",
115  $request->getNewType()
116  );
117  }
118 
122  public function testCreationMode(): void
123  {
124  $request = $this->getRequest(
125  [
126  "creation_mode" => "1"
127  ],
128  []
129  );
130 
131  $this->assertEquals(
132  1,
133  $request->getCreationMode()
134  );
135  }
136 }
Interface Observer Contains several chained tasks and infos about them.
$post
Definition: ltitoken.php:46