ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
LinkStandardGUIRequestTest.php
Go to the documentation of this file.
1 <?php
2 
4 
8 class LinkStandardGUIRequestTest extends TestCase
9 {
10  protected function tearDown(): void
11  {
12  }
13 
14  protected function getRequest(array $get, array $post): \ILIAS\Link\StandardGUIRequest
15  {
16  $http_mock = $this->createMock(ILIAS\HTTP\Services::class);
17  $lng_mock = $this->createMock(ilLanguage::class);
18  $data = new \ILIAS\Data\Factory();
19  $refinery = new \ILIAS\Refinery\Factory($data, $lng_mock);
20  return new \ILIAS\Link\StandardGUIRequest(
21  $http_mock,
22  $refinery,
23  $get,
24  $post
25  );
26  }
27 
28  public function testSelectedId(): void
29  {
30  $request = $this->getRequest(
31  [
32  "sel_id" => "123"
33  ],
34  [
35  ]
36  );
37 
38  $this->assertEquals(
39  123,
40  $request->getSelectedId()
41  );
42  }
43 
44  public function testDo(): void
45  {
46  $request = $this->getRequest(
47  [
48  "do" => "set"
49  ],
50  [
51  ]
52  );
53 
54  $this->assertEquals(
55  "set",
56  $request->getDo()
57  );
58  }
59 
60  public function testMediaPoolFolder(): void
61  {
62  $request = $this->getRequest(
63  [
64  "mep_fold" => "14"
65  ],
66  [
67  ]
68  );
69 
70  $this->assertEquals(
71  14,
72  $request->getMediaPoolFolder()
73  );
74  }
75 
76  public function testLinkType(): void
77  {
78  $request = $this->getRequest(
79  [
80  "link_type" => "mytype"
81  ],
82  [
83  ]
84  );
85 
86  $this->assertEquals(
87  "mytype",
88  $request->getLinkType()
89  );
90  }
91 
92  public function testLinkParentObjId(): void
93  {
94  $request = $this->getRequest(
95  [
96  "link_par_obj_id" => "13"
97  ],
98  [
99  ]
100  );
101 
102  $this->assertEquals(
103  13,
104  $request->getLinkParentObjId()
105  );
106  }
107 
108  public function testLinkParentFolderId(): void
109  {
110  $request = $this->getRequest(
111  [
112  "link_par_fold_id" => "18"
113  ],
114  [
115  ]
116  );
117 
118  $this->assertEquals(
119  18,
120  $request->getLinkParentFolderId()
121  );
122  }
123 
124  public function testLinkParentRefId(): void
125  {
126  $request = $this->getRequest(
127  [
128  "link_par_ref_id" => "22"
129  ],
130  [
131  ]
132  );
133 
134  $this->assertEquals(
135  22,
136  $request->getLinkParentRefId()
137  );
138  }
139 
140  public function testUserSearchString(): void
141  {
142  $request = $this->getRequest(
143  [
144  ],
145  [
146  "usr_search_str" => "term"
147  ]
148  );
149 
150  $this->assertEquals(
151  "term",
152  $request->getUserSearchStr()
153  );
154  }
155 }
Class ChatMainBarProvider .
getRequest(array $get, array $post)
$post
Definition: ltitoken.php:49
Refinery Factory $refinery