3 declare(strict_types=1);
21 require_once(
"libs/composer/vendor/autoload.php");
22 include_once(
"tests/UI/Crawler/Fixture/Fixture.php");
37 "responsiveness" => [],
52 "usage" => [
"Correct"],
53 "composition" =>
"Wrong" 57 "usage" => [
"Correct"],
58 "composition" => [[
"wrong"]]
62 "usage" => [1 =>
"Usage Rule 1", 2 =>
"Usage Rule 2"],
63 "composition" => [1 =>
"composition Rule 1", 2 =>
"composition Rule 2"],
64 "interaction" => [1 =>
"interaction Rule 1", 2 =>
"interaction Rule 2"],
65 "wording" => [1 =>
"wording Rule 1", 2 =>
"wording Rule 2"],
66 "ordering" => [1 =>
"ordering Rule 1", 2 =>
"ordering Rule 2"],
67 "style" => [1 =>
"style Rule 1", 2 =>
"style Rule 2"],
68 "responsiveness" => [1 =>
"responsiveness Rule 1", 2 =>
"responsiveness Rule 2"],
69 "accessibility" => [1 =>
"accessibility Rule 1", 2 =>
"accessibility Rule 2"]
73 "usage" => [1 =>
"Usage Rule 1", 2 =>
"Usage Rule 2"],
78 "usage" => [1 =>
"Usage Rule 1", 2 =>
"Usage Rule 2"],
84 "responsiveness" => [],
91 protected function setUp(): void
103 $rule =
new Entry\ComponentEntryRules();
104 $this->assertEquals($this->empty_rules_array, $rule->getRules());
106 $rule =
new Entry\ComponentEntryRules(array());
107 $this->assertEquals($this->empty_rules_array, $rule->getRules());
115 $rules =
new Entry\ComponentEntryRules($this->empty_rules_array);
116 $this->assertFalse($rules->hasRules());
117 $rules =
new Entry\ComponentEntryRules($this->correct_rules1_array);
118 $this->assertTrue($rules->hasRules());
126 $this->expectException(TypeError::class);
127 new Entry\ComponentEntryRules(null);
129 $this->expectException(TypeError::class);
130 new Entry\ComponentEntryRules(
'rule1');
139 new Entry\ComponentEntryRules($this->invalid_categories1_array);
140 $this->assertFalse(
"This should not happen");
142 $this->assertEquals(
Crawler\
Exception\CrawlerException::INVALID_INDEX, $e->getCode());
152 new Entry\ComponentEntryRules($this->invalid_categories2_array);
153 $this->assertFalse(
"This should not happen");
155 $this->assertEquals(
Crawler\
Exception\CrawlerException::INVALID_INDEX, $e->getCode());
165 new Entry\ComponentEntryRules($this->invalid_category_item_array);
166 $this->assertFalse(
"This should not happen");
168 $this->assertEquals(
Crawler\
Exception\CrawlerException::ARRAY_EXPECTED, $e->getCode());
178 new Entry\ComponentEntryRules($this->invalid_category_value_array);
179 $this->assertFalse(
"This should not happen");
181 $this->assertEquals(
Crawler\
Exception\CrawlerException::STRING_EXPECTED, $e->getCode());
190 $rules =
new Entry\ComponentEntryRules($this->correct_rules1_array);
191 $this->assertEquals($this->correct_rules1_array, $rules->getRules());
199 $rules =
new Entry\ComponentEntryRules($this->correct_rules2_array);
200 $this->assertEquals($this->correct_rules2_array_return, $rules->getRules());
205 $entry = $this->parser->parseArrayFromFile(
"tests/UI/Crawler/Fixture/ProperEntry.php")[0];
207 $entry[
"rules"][
'composition'] = [];
208 $entry[
"rules"][
'interaction'] = [];
209 $entry[
"rules"][
'wording'] = [];
210 $entry[
"rules"][
'ordering'] = [];
211 $entry[
"rules"][
'responsiveness'] = [];
212 $entry[
"rules"][
'accessibility'] = [];
214 $rules =
new Entry\ComponentEntryRules($entry[
"rules"]);
215 $this->assertEquals($rules->getRules(), $entry[
"rules"]);
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
array array array $correct_rules2_array_return
array array array Crawler EntriesYamlParser $parser
array $correct_rules1_array
array array $correct_rules2_array
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testInvalidCategoryValue()
array $invalid_category_value_array
array $invalid_categories2_array
testInvalidCategoryItem()
array $invalid_categories1_array
array $invalid_category_item_array
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testParseProperEntryToArray()
ProperEntryFixture $proper_entry
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...