◆ setUp()
ilSystemStyleStyleLessFileTest::setUp |
( |
| ) |
|
|
protected |
Definition at line 37 of file ilSystemStyleStyleLessFileTest.php.
References $DIC, ilSystemStyleSkinContainer\generateFromId(), and ilSystemStyleSkinContainer\xCopy().
41 $this->save_dic =
$DIC;
46 mkdir($this->system_style_config->test_skin_temp_path);
50 $this->style = $this->container->getSkin()->getStyle(
"style1");
static generateFromId($skin_id, ilSystemStyleMessageStack $message_stack=null, ilSystemStyleConfig $system_styles_conf=null)
Generate the container class by parsing the corresponding XML.
ilSystemStyleConfig wraps all 'constants' to ensure the testability of all classes using those 'const...
static xCopy($src, $dest)
Recursive copy of a folder.
◆ tearDown()
ilSystemStyleStyleLessFileTest::tearDown |
( |
| ) |
|
|
protected |
◆ testAddAndWriteItems()
ilSystemStyleStyleLessFileTest::testAddAndWriteItems |
( |
| ) |
|
Definition at line 204 of file ilSystemStyleStyleLessFileTest.php.
213 $expected_variable13 =
new ilSystemStyleLessVariable(
"variable13",
"@variable11",
"comment variable 13",
"Category 1", [
"variable11"]);
219 $expected_variable21 =
new ilSystemStyleLessVariable(
"variable21",
"@variable11",
"comment variable 21",
"Category 2", [
"variable11"]);
221 $expected_variable23 =
new ilSystemStyleLessVariable(
"variable23",
"@variable21",
"comment variable 23",
"Category 2", [
"variable21"]);
223 $expected_items = [$expected_category1,
224 $expected_comment2,$expected_comment3,
225 $expected_variable11,$expected_variable12,$expected_variable13,
228 $expected_comment6,$expected_comment7,$expected_comment8,
229 $expected_variable21,$expected_variable22,$expected_variable23];
231 foreach ($expected_items as $item) {
232 $empty_less->addItem($item);
234 $empty_less->write();
237 $this->assertEquals($expected_items, $new_less->getItems());
Capsules data of a less category in the variables to less file.
◆ testChangeVariable()
ilSystemStyleStyleLessFileTest::testChangeVariable |
( |
| ) |
|
Definition at line 172 of file ilSystemStyleStyleLessFileTest.php.
174 $file =
new ilSystemStyleLessFile($this->container->getLessVariablesFilePath($this->style->getId()));
175 $variable = $file->getVariableByName(
"variable11");
176 $variable->setValue(
"newvalue11");
181 $expected_variable11 =
new ilSystemStyleLessVariable(
"variable11",
"newvalue11",
"comment variable 11",
"Category 1", []);
183 $expected_variable13 =
new ilSystemStyleLessVariable(
"variable13",
"@variable11",
"comment variable 13",
"Category 1", [
"variable11"]);
189 $expected_variable21 =
new ilSystemStyleLessVariable(
"variable21",
"@variable11",
"comment variable 21",
"Category 2", [
"variable11"]);
191 $expected_variable23 =
new ilSystemStyleLessVariable(
"variable23",
"@variable21",
"comment variable 23",
"Category 2", [
"variable21"]);
193 $expected_items = [$expected_category1,
194 $expected_comment2,$expected_comment3,
195 $expected_variable11,$expected_variable12,$expected_variable13,
198 $expected_comment6,$expected_comment7,$expected_comment8,
199 $expected_variable21,$expected_variable22,$expected_variable23];
201 $this->assertEquals($expected_items, $file->getItems());
Capsules data of a less category in the variables to less file.
◆ testConstructAndRead()
ilSystemStyleStyleLessFileTest::testConstructAndRead |
( |
| ) |
|
◆ testGetCategory()
ilSystemStyleStyleLessFileTest::testGetCategory |
( |
| ) |
|
Definition at line 98 of file ilSystemStyleStyleLessFileTest.php.
100 $file =
new ilSystemStyleLessFile($this->container->getLessVariablesFilePath($this->style->getId()));
104 $expected_categories = [$expected_category1,$expected_category2];
106 $this->assertEquals($expected_categories, $file->getCategories());
Capsules data of a less category in the variables to less file.
◆ testGetContent()
ilSystemStyleStyleLessFileTest::testGetContent |
( |
| ) |
|
Definition at line 139 of file ilSystemStyleStyleLessFileTest.php.
141 $file =
new ilSystemStyleLessFile($this->container->getLessVariablesFilePath($this->style->getId()));
142 $expected_content = file_get_contents($this->container->getLessVariablesFilePath($this->style->getId()));
143 $this->assertEquals($expected_content, $file->getContent());
◆ testGetItems()
ilSystemStyleStyleLessFileTest::testGetItems |
( |
| ) |
|
Definition at line 109 of file ilSystemStyleStyleLessFileTest.php.
111 $file =
new ilSystemStyleLessFile($this->container->getLessVariablesFilePath($this->style->getId()));
118 $expected_variable13 =
new ilSystemStyleLessVariable(
"variable13",
"@variable11",
"comment variable 13",
"Category 1", [
"variable11"]);
124 $expected_variable21 =
new ilSystemStyleLessVariable(
"variable21",
"@variable11",
"comment variable 21",
"Category 2", [
"variable11"]);
126 $expected_variable23 =
new ilSystemStyleLessVariable(
"variable23",
"@variable21",
"comment variable 23",
"Category 2", [
"variable21"]);
128 $expected_items = [$expected_category1,
129 $expected_comment2,$expected_comment3,
130 $expected_variable11,$expected_variable12,$expected_variable13,
133 $expected_comment6,$expected_comment7,$expected_comment8,
134 $expected_variable21,$expected_variable22,$expected_variable23];
136 $this->assertEquals($expected_items, $file->getItems());
Capsules data of a less category in the variables to less file.
◆ testGetItemsEdgeCases()
ilSystemStyleStyleLessFileTest::testGetItemsEdgeCases |
( |
| ) |
|
Definition at line 275 of file ilSystemStyleStyleLessFileTest.php.
287 $expected_variable21 =
new ilSystemStyleLessVariable(
"variableNoValidSection1",
"value21",
"",
"Category 1 no valid section", []);
288 $expected_variable22 =
new ilSystemStyleLessVariable(
"variableNoValidSection2",
"value22",
"comment",
"Category 1 no valid section", []);
295 $expected_variable32 =
new ilSystemStyleLessVariable(
"variable21",
"floor((@regular * 1.6)) * lighten(@regular, 20%)",
"Hard references",
"Category 2", [
"regular"]);
302 $expected_items = [$expected_comment1,$expected_comment2,
303 $expected_variable11,$expected_variable12,
304 $expected_category1,$expected_variable21,$expected_variable22,
306 $expected_category2,$expected_variable31,$expected_variable32,
308 $expected_category3,$expected_variable41];
310 $this->assertEquals($expected_items, $file->getItems());
Capsules data of a less category in the variables to less file.
◆ testGetVariableByName()
ilSystemStyleStyleLessFileTest::testGetVariableByName |
( |
| ) |
|
Definition at line 77 of file ilSystemStyleStyleLessFileTest.php.
83 $expected_variable13 =
new ilSystemStyleLessVariable(
"variable13",
"@variable11",
"comment variable 13",
"Category 1", [
"variable11"]);
85 $expected_variable21 =
new ilSystemStyleLessVariable(
"variable21",
"@variable11",
"comment variable 21",
"Category 2", [
"variable11"]);
87 $expected_variable23 =
new ilSystemStyleLessVariable(
"variable23",
"@variable21",
"comment variable 23",
"Category 2", [
"variable21"]);
89 $this->assertEquals($expected_variable11, $file->getVariableByName(
"variable11"));
90 $this->assertEquals($expected_variable12, $file->getVariableByName(
"variable12"));
91 $this->assertEquals($expected_variable13, $file->getVariableByName(
"variable13"));
93 $this->assertEquals($expected_variable21, $file->getVariableByName(
"variable21"));
94 $this->assertEquals($expected_variable22, $file->getVariableByName(
"variable22"));
95 $this->assertEquals($expected_variable23, $file->getVariableByName(
"variable23"));
◆ testGetVariableReferences()
ilSystemStyleStyleLessFileTest::testGetVariableReferences |
( |
| ) |
|
Definition at line 240 of file ilSystemStyleStyleLessFileTest.php.
242 $file =
new ilSystemStyleLessFile($this->container->getLessVariablesFilePath($this->style->getId()));
244 $this->assertEquals([
"variable13",
"variable21"], $file->getReferencesToVariable(
"variable11"));
245 $this->assertEquals([], $file->getReferencesToVariable(
"variable12"));
246 $this->assertEquals([], $file->getReferencesToVariable(
"variable13"));
248 $this->assertEquals([
"variable23"], $file->getReferencesToVariable(
"variable21"));
249 $this->assertEquals([], $file->getReferencesToVariable(
"variable22"));
250 $this->assertEquals([], $file->getReferencesToVariable(
"variable23"));
◆ testGetVariableReferencesAsString()
ilSystemStyleStyleLessFileTest::testGetVariableReferencesAsString |
( |
| ) |
|
Definition at line 253 of file ilSystemStyleStyleLessFileTest.php.
255 $file =
new ilSystemStyleLessFile($this->container->getLessVariablesFilePath($this->style->getId()));
257 $this->assertEquals(
"variable13; variable21; ", $file->getReferencesToVariableAsString(
"variable11"));
258 $this->assertEquals(
"", $file->getReferencesToVariableAsString(
"variable12"));
259 $this->assertEquals(
"", $file->getReferencesToVariableAsString(
"variable13"));
261 $this->assertEquals(
"variable23; ", $file->getReferencesToVariableAsString(
"variable21"));
262 $this->assertEquals(
"", $file->getReferencesToVariableAsString(
"variable22"));
263 $this->assertEquals(
"", $file->getReferencesToVariableAsString(
"variable23"));
◆ testReadCorrectTypes()
ilSystemStyleStyleLessFileTest::testReadCorrectTypes |
( |
| ) |
|
Definition at line 67 of file ilSystemStyleStyleLessFileTest.php.
71 $this->assertEquals(2, count($file->getCategories()));
72 $this->assertEquals(6, count($file->getVariablesIds()));
73 $this->assertEquals(6, count($file->getCommentsIds()));
◆ testReadCorrectTypesEdgeCases()
ilSystemStyleStyleLessFileTest::testReadCorrectTypesEdgeCases |
( |
| ) |
|
Definition at line 266 of file ilSystemStyleStyleLessFileTest.php.
270 $this->assertEquals(3, count($file->getCategories()));
271 $this->assertEquals(7, count($file->getVariablesIds()));
272 $this->assertEquals(4, count($file->getCommentsIds()));
◆ testReadWriteDouble()
ilSystemStyleStyleLessFileTest::testReadWriteDouble |
( |
| ) |
|
Definition at line 146 of file ilSystemStyleStyleLessFileTest.php.
148 $expected_content = file_get_contents($this->container->getLessVariablesFilePath($this->style->getId()));
150 $file =
new ilSystemStyleLessFile($this->container->getLessVariablesFilePath($this->style->getId()));
152 $file =
new ilSystemStyleLessFile($this->container->getLessVariablesFilePath($this->style->getId()));
154 $file =
new ilSystemStyleLessFile($this->container->getLessVariablesFilePath($this->style->getId()));
156 $this->assertEquals($expected_content, $file->getContent());
◆ testReadWriteDoubleFullLess()
ilSystemStyleStyleLessFileTest::testReadWriteDoubleFullLess |
( |
| ) |
|
Definition at line 159 of file ilSystemStyleStyleLessFileTest.php.
References ilSystemStyleLessFile\write().
161 $expected_content = file_get_contents($this->container->getSkinDirectory() .
"full.less");
169 $this->assertEquals($expected_content, $file->getContent());
write()
Write the complete file back to the file system (including comments and random content) ...
◆ $container
ilSystemStyleStyleLessFileTest::$container |
|
protected |
◆ $save_dic
ilSystemStyleStyleLessFileTest::$save_dic = null |
|
protected |
◆ $style
ilSystemStyleStyleLessFileTest::$style |
|
protected |
◆ $system_style_config
ilSystemStyleStyleLessFileTest::$system_style_config |
|
protected |
The documentation for this class was generated from the following file: