ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ContRefStandardGUIRequestTest Class Reference

Test clipboard repository. More...

+ Inheritance diagram for ContRefStandardGUIRequestTest:
+ Collaboration diagram for ContRefStandardGUIRequestTest:

Public Member Functions

 testRefId ()
 Test ref id. More...
 
 testNoRefId ()
 Test no ref id. More...
 
 testTargetId ()
 Test target id. More...
 
 testNewType ()
 Test new type. More...
 
 testCreationMode ()
 Test creation mode. More...
 

Protected Member Functions

 tearDown ()
 
 getRequest (array $get, array $post)
 

Detailed Description

Test clipboard repository.

Author
Alexander Killing killi.nosp@m.ng@l.nosp@m.eifos.nosp@m..de

Definition at line 28 of file ContRefStandardGUIRequestTest.php.

Member Function Documentation

◆ getRequest()

ContRefStandardGUIRequestTest::getRequest ( array  $get,
array  $post 
)
protected

Definition at line 34 of file ContRefStandardGUIRequestTest.php.

References $data, and ILIAS\UI\examples\Layout\Page\Standard\$refinery.

Referenced by testCreationMode(), testNewType(), testNoRefId(), testRefId(), and testTargetId().

34  : \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  }
Interface Observer Contains several chained tasks and infos about them.
$post
Definition: ltitoken.php:46
+ Here is the caller graph for this function:

◆ tearDown()

ContRefStandardGUIRequestTest::tearDown ( )
protected

Definition at line 30 of file ContRefStandardGUIRequestTest.php.

30  : void
31  {
32  }

◆ testCreationMode()

ContRefStandardGUIRequestTest::testCreationMode ( )

Test creation mode.

Definition at line 122 of file ContRefStandardGUIRequestTest.php.

References getRequest().

122  : 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  }
+ Here is the call graph for this function:

◆ testNewType()

ContRefStandardGUIRequestTest::testNewType ( )

Test new type.

Definition at line 104 of file ContRefStandardGUIRequestTest.php.

References getRequest().

104  : 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  }
+ Here is the call graph for this function:

◆ testNoRefId()

ContRefStandardGUIRequestTest::testNoRefId ( )

Test no ref id.

Definition at line 69 of file ContRefStandardGUIRequestTest.php.

References getRequest().

69  : void
70  {
71  $request = $this->getRequest(
72  [
73  ],
74  []
75  );
76 
77  $this->assertEquals(
78  0,
79  $request->getRefId()
80  );
81  }
+ Here is the call graph for this function:

◆ testRefId()

ContRefStandardGUIRequestTest::testRefId ( )

Test ref id.

Definition at line 51 of file ContRefStandardGUIRequestTest.php.

References getRequest().

51  : 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  }
+ Here is the call graph for this function:

◆ testTargetId()

ContRefStandardGUIRequestTest::testTargetId ( )

Test target id.

Definition at line 86 of file ContRefStandardGUIRequestTest.php.

References getRequest().

86  : 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  }
+ Here is the call graph for this function:

The documentation for this class was generated from the following file: