ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
ComponentEntryDescriptionTest Class Reference
+ Inheritance diagram for ComponentEntryDescriptionTest:
+ Collaboration diagram for ComponentEntryDescriptionTest:

Public Member Functions

 testEmptyDescription ()
 
 testInvalidDescription ()
 
 testInvalidCategories1 ()
 
 testInvalidCategories2 ()
 
 testInvalidCategoryItem ()
 
 testInvalidCategoryValue ()
 
 testCorrectDescription1 ()
 
 testCorrectDescription2 ()
 
 testParseProperEntryToArray ()
 

Protected Member Functions

 setUp ()
 

Protected Attributes

 $empty_description_array
 
 $invalid_categories1_array
 
 $invalid_categories2_array
 
 $invalid_category_item_array
 
 $invalid_category_value_array
 
 $correct_description1_array
 
 $correct_description2_array
 
 $correct_description2_array_return
 
 $parser
 
 $proper_entry
 

Detailed Description

Definition at line 11 of file ComponentEntryDescriptionTest.php.

Member Function Documentation

◆ setUp()

ComponentEntryDescriptionTest::setUp ( )
protected

Definition at line 68 of file ComponentEntryDescriptionTest.php.

◆ testCorrectDescription1()

ComponentEntryDescriptionTest::testCorrectDescription1 ( )
Exceptions
Crawler

Exception\CrawlerException

Definition at line 152 of file ComponentEntryDescriptionTest.php.

152 {
153 $description = new Entry\ComponentEntryDescription($this->correct_description1_array);
154 $this->assertEquals($this->correct_description1_array,$description->getDescription());
155
156 }

◆ testCorrectDescription2()

ComponentEntryDescriptionTest::testCorrectDescription2 ( )
Exceptions
Crawler

Exception\CrawlerException

Definition at line 161 of file ComponentEntryDescriptionTest.php.

161 {
162 $description = new Entry\ComponentEntryDescription($this->correct_description2_array);
163 $this->assertEquals($this->correct_description2_array_return,$description->getDescription());
164
165 }

◆ testEmptyDescription()

ComponentEntryDescriptionTest::testEmptyDescription ( )
Exceptions
Crawler

Exception\CrawlerException

Definition at line 78 of file ComponentEntryDescriptionTest.php.

78 {
79 $description = new Entry\ComponentEntryDescription();
80 $this->assertEquals($this->empty_description_array,$description->getDescription());
81
82 $description = new Entry\ComponentEntryDescription(array());
83 $this->assertEquals($this->empty_description_array,$description->getDescription());
84 }

◆ testInvalidCategories1()

ComponentEntryDescriptionTest::testInvalidCategories1 ( )
Exceptions
Crawler

Exception\CrawlerException

Definition at line 101 of file ComponentEntryDescriptionTest.php.

101 {
102 try{
103 new Entry\ComponentEntryDescription($this->invalid_categories1_array);
104 $this->assertFalse("This should not happen");
105
106 }catch(Crawler\Exception\CrawlerException $e){
107 $this->assertEquals($e->getCode(),Crawler\Exception\CrawlerException::INVALID_INDEX);
108 }
109 }

◆ testInvalidCategories2()

ComponentEntryDescriptionTest::testInvalidCategories2 ( )
Exceptions
Crawler

Exception\CrawlerException

Definition at line 113 of file ComponentEntryDescriptionTest.php.

113 {
114 try{
115 new Entry\ComponentEntryDescription($this->invalid_categories2_array);
116 $this->assertFalse("This should not happen");
117
118 }catch(Crawler\Exception\CrawlerException $e){
119 $this->assertEquals($e->getCode(),Crawler\Exception\CrawlerException::INVALID_INDEX);
120 }
121
122 }

◆ testInvalidCategoryItem()

ComponentEntryDescriptionTest::testInvalidCategoryItem ( )
Exceptions
Crawler

Exception\CrawlerException

Definition at line 126 of file ComponentEntryDescriptionTest.php.

126 {
127 try{
128 new Entry\ComponentEntryDescription($this->invalid_category_item_array);
129 $this->assertFalse("This should not happen");
130
131 }catch(Crawler\Exception\CrawlerException $e){
132 $this->assertEquals($e->getCode(),Crawler\Exception\CrawlerException::STRING_EXPECTED);
133 }
134
135 }

◆ testInvalidCategoryValue()

ComponentEntryDescriptionTest::testInvalidCategoryValue ( )
Exceptions
Crawler

Exception\CrawlerException

Definition at line 139 of file ComponentEntryDescriptionTest.php.

139 {
140 try{
141 new Entry\ComponentEntryDescription($this->invalid_category_value_array);
142 $this->assertFalse("This should not happen");
143
144 }catch(Crawler\Exception\CrawlerException $e){
145 $this->assertEquals($e->getCode(),Crawler\Exception\CrawlerException::STRING_EXPECTED);
146 }
147
148 }

◆ testInvalidDescription()

ComponentEntryDescriptionTest::testInvalidDescription ( )
Exceptions
Crawler

Exception\CrawlerException

Definition at line 88 of file ComponentEntryDescriptionTest.php.

88 {
89 try{
92 $this->assertFalse("This should not happen");
93
94 }catch(Crawler\Exception\CrawlerException $e){
95 $this->assertEquals($e->getCode(),Crawler\Exception\CrawlerException::ARRAY_EXPECTED);
96 }
97 }

◆ testParseProperEntryToArray()

ComponentEntryDescriptionTest::testParseProperEntryToArray ( )

Definition at line 167 of file ComponentEntryDescriptionTest.php.

167 {
168 $entry = $this->parser->parseArrayFromFile("tests/UI/Crawler/Fixture/ProperEntry.php")[0];
169
170 $entry["description"]['composition'] = "";
171 $entry["description"]['effect'] = "";
172
173 $description = new Entry\ComponentEntryDescription($entry["description"]);
174
175 $this->assertEquals($description->getDescription(),$entry["description"]);
176 }

Field Documentation

◆ $correct_description1_array

ComponentEntryDescriptionTest::$correct_description1_array
protected
Initial value:
= array(
"purpose"=>"Purpose Description",
"composition"=>"Composition Description",
"effect"=>"Effect Description",
"rivals"=>array("Element 1" => "Rival 1", "Element 2" => "Rival 2")
)

Definition at line 40 of file ComponentEntryDescriptionTest.php.

◆ $correct_description2_array

ComponentEntryDescriptionTest::$correct_description2_array
protected
Initial value:
= array(
"purpose"=>"Purpose Description"
)

Definition at line 47 of file ComponentEntryDescriptionTest.php.

◆ $correct_description2_array_return

ComponentEntryDescriptionTest::$correct_description2_array_return
protected
Initial value:
= array(
"purpose"=>"Purpose Description",
"composition"=>"",
"effect"=>"",
"rivals"=>array()
)

Definition at line 51 of file ComponentEntryDescriptionTest.php.

◆ $empty_description_array

ComponentEntryDescriptionTest::$empty_description_array
protected
Initial value:
= array(
"purpose"=>"",
"composition"=>"",
"effect"=>"",
"rivals"=>array()
)

Definition at line 16 of file ComponentEntryDescriptionTest.php.

◆ $invalid_categories1_array

ComponentEntryDescriptionTest::$invalid_categories1_array
protected
Initial value:
= array(
"purpose",
"wrong"
)

Definition at line 23 of file ComponentEntryDescriptionTest.php.

◆ $invalid_categories2_array

ComponentEntryDescriptionTest::$invalid_categories2_array
protected
Initial value:
= array(
"purpose"=>"",
"wrong"=>""
)

Definition at line 27 of file ComponentEntryDescriptionTest.php.

◆ $invalid_category_item_array

ComponentEntryDescriptionTest::$invalid_category_item_array
protected
Initial value:
= array(
"purpose"=>"Correct",
"composition"=>array("Wrong")
)

Definition at line 31 of file ComponentEntryDescriptionTest.php.

◆ $invalid_category_value_array

ComponentEntryDescriptionTest::$invalid_category_value_array
protected
Initial value:
= array(
"purpose"=>"Correct",
"rivals"=>array(array("wrong"))
)

Definition at line 35 of file ComponentEntryDescriptionTest.php.

◆ $parser

ComponentEntryDescriptionTest::$parser
protected

Definition at line 61 of file ComponentEntryDescriptionTest.php.

◆ $proper_entry

ComponentEntryDescriptionTest::$proper_entry
protected

Definition at line 66 of file ComponentEntryDescriptionTest.php.


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