ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
MediaCastStandardGUIRequestTest Class Reference
+ Inheritance diagram for MediaCastStandardGUIRequestTest:
+ Collaboration diagram for MediaCastStandardGUIRequestTest:

Public Member Functions

 testRefId ()
 
 testMimeTypes ()
 
 testItemIds ()
 
 testSeconds ()
 

Protected Member Functions

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

Detailed Description

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

Definition at line 24 of file MediaCastStandardGUIRequestTest.php.

Member Function Documentation

◆ getRequest()

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

Definition at line 32 of file MediaCastStandardGUIRequestTest.php.

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

Referenced by testItemIds(), testMimeTypes(), testRefId(), and testSeconds().

32  : \ILIAS\MediaCast\StandardGUIRequest
33  {
34  $http_mock = $this->createMock(ILIAS\HTTP\Services::class);
35  $lng_mock = $this->createMock(ilLanguage::class);
36  $data = new \ILIAS\Data\Factory();
37  $refinery = new \ILIAS\Refinery\Factory($data, $lng_mock);
38  return new \ILIAS\MediaCast\StandardGUIRequest(
39  $http_mock,
40  $refinery,
41  $get,
42  $post
43  );
44  }
Interface Observer Contains several chained tasks and infos about them.
$post
Definition: ltitoken.php:46
+ Here is the caller graph for this function:

◆ tearDown()

MediaCastStandardGUIRequestTest::tearDown ( )
protected

Definition at line 28 of file MediaCastStandardGUIRequestTest.php.

28  : void
29  {
30  }

◆ testItemIds()

MediaCastStandardGUIRequestTest::testItemIds ( )

Definition at line 76 of file MediaCastStandardGUIRequestTest.php.

References getRequest().

76  : void
77  {
78  $request = $this->getRequest(
79  [
80  ],
81  [
82  "item_id" => ["4", "7", "8"]
83  ]
84  );
85 
86  $this->assertEquals(
87  [4,7,8],
88  $request->getItemIds()
89  );
90  }
+ Here is the call graph for this function:

◆ testMimeTypes()

MediaCastStandardGUIRequestTest::testMimeTypes ( )

Definition at line 61 of file MediaCastStandardGUIRequestTest.php.

References getRequest().

61  : void
62  {
63  $request = $this->getRequest(
64  [
65  "mimetypes" => "a,b"
66  ],
67  []
68  );
69 
70  $this->assertEquals(
71  "a,b",
72  $request->getMimeTypes()
73  );
74  }
+ Here is the call graph for this function:

◆ testRefId()

MediaCastStandardGUIRequestTest::testRefId ( )

Definition at line 46 of file MediaCastStandardGUIRequestTest.php.

References getRequest().

46  : void
47  {
48  $request = $this->getRequest(
49  [
50  "ref_id" => "5"
51  ],
52  []
53  );
54 
55  $this->assertEquals(
56  5,
57  $request->getRefId()
58  );
59  }
+ Here is the call graph for this function:

◆ testSeconds()

MediaCastStandardGUIRequestTest::testSeconds ( )

Definition at line 92 of file MediaCastStandardGUIRequestTest.php.

References getRequest().

92  : void
93  {
94  $request = $this->getRequest(
95  [
96  "sec" => "5"
97  ],
98  []
99  );
100 
101  $this->assertEquals(
102  5,
103  $request->getSeconds()
104  );
105  }
+ Here is the call graph for this function:

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