ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ContentStyleStandardGUIRequestTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
8 
14 class ContentStyleStandardGUIRequestTest extends TestCase
15 {
16  protected function tearDown(): void
17  {
18  }
19 
20  protected function getRequest(array $get, array $post): StandardGUIRequest
21  {
22  $http_mock = $this->createMock(ILIAS\HTTP\Services::class);
23  $lng_mock = $this->createMock(ilLanguage::class);
24  $data = new Factory();
25  $refinery = new \ILIAS\Refinery\Factory($data, $lng_mock);
26  return new StandardGUIRequest(
27  $http_mock,
28  $refinery,
29  $get,
30  $post
31  );
32  }
33 
34  public function testRefId(): void
35  {
36  $request = $this->getRequest(
37  [
38  "ref_id" => "5"
39  ],
40  []
41  );
42 
43  $this->assertEquals(
44  5,
45  $request->getRefId()
46  );
47  }
48 
49 
50  public function testTemplateId(): void
51  {
52  $request = $this->getRequest(
53  [
54  "t_id" => "7"
55  ],
56  []
57  );
58 
59  $this->assertEquals(
60  7,
61  $request->getTemplateId()
62  );
63  }
64 
65  public function testCharacteristics(): void
66  {
67  $request = $this->getRequest(
68  [
69  ],
70  [
71  "char" => [
72  "Foo",
73  "Bar"
74  ]
75  ]
76  );
77 
78  $this->assertEquals(
79  ["Foo", "Bar"],
80  $request->getCharacteristics()
81  );
82  }
83 }
Class ChatMainBarProvider .
$post
Definition: ltitoken.php:49
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Refinery Factory $refinery