3 include_once(
"Services/Style/System/classes/Utilities/class.ilSkinStyleXML.php");
4 include_once(
"Services/Style/System/classes/Utilities/class.ilSkinXML.php");
5 include_once(
"Services/Style/System/classes/Utilities/class.ilSystemStyleSkinContainer.php");
6 include_once(
"Services/Style/System/test/fixtures/mocks/ilSystemStyleConfigMock.php");
7 include_once(
"Services/Style/System/test/fixtures/mocks/ilSystemStyleDICMock.php");
9 include_once(
"Services/Style/System/classes/Icons/class.ilSystemStyleIcon.php");
49 protected function setUp() : void
53 $this->save_dic =
$DIC;
59 mkdir($this->system_style_config->test_skin_temp_path);
63 $this->style = $this->container->getSkin()->getStyle(
"style1");
75 $path = $this->container->getImagesSkinPath($this->style->getId()) .
"/" . $this->icon_name;
79 $this->assertEquals($icon->getPath(), $path);
85 $path = $this->container->getImagesSkinPath($this->style->getId()) .
"/" . $this->icon_name;
88 $this->assertEquals($icon->getDirRelToCustomizing(),
"");
91 $rel_path =
"global/skin/unibe50/images";
92 $path =
"./Customizing" . $rel_path .
"/" .
$name;
95 $this->assertEquals($icon->getDirRelToCustomizing(), $rel_path);
100 $path = $this->container->getImagesSkinPath($this->style->getId()) .
"/" . $this->icon_name;
108 $expected_color_set->addColor($color1);
109 $expected_color_set->addColor($color2);
110 $expected_color_set->addColor($color3);
111 $expected_color_set->addColor($color4);
113 $this->assertEquals($expected_color_set, $icon->getColorSet());
118 $path = $this->container->getImagesSkinPath($this->style->getId()) .
"/" . $this->icon_name;
121 $icon->changeColors([
'505050' =>
'555555']);
128 $expected_color_set->addColor($color1);
129 $expected_color_set->addColor($color2);
130 $expected_color_set->addColor($color3);
131 $expected_color_set->addColor($color4);
133 $this->assertEquals($expected_color_set, $icon->getColorSet());
138 $path = $this->container->getImagesSkinPath($this->style->getId()) .
"/" . $this->icon_name;
141 $icon->changeColors([
'505050' =>
'555555']);
148 $expected_color_set->addColor($color1);
149 $expected_color_set->addColor($color2);
150 $expected_color_set->addColor($color3);
151 $expected_color_set->addColor($color4);
155 $this->assertEquals($expected_color_set, $icon_new->getColorSet());
testGetDirRelToCustomizing()
Abstracts an Icon and the necessary actions to get all colors out of an svg Icon. ...
static recursiveRemoveDir($dir)
Recursive delete of a folder.
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...
testChangeColorInIconFile()
static xCopy($src, $dest)
Recursive copy of a folder.