TYPO3 CMS  TYPO3_7-6
SvgIconProviderTest.php
Go to the documentation of this file.
1 <?php
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
20 
25 {
29  protected $subject = null;
30 
34  protected $icon = null;
35 
39  protected $testFileName;
40 
46  protected function setUp()
47  {
48  $this->subject = new \TYPO3\CMS\Core\Imaging\IconProvider\SvgIconProvider();
49  $this->icon = GeneralUtility::makeInstance(Icon::class);
50  $this->icon->setIdentifier('foo');
51  $this->icon->setSize(Icon::SIZE_SMALL);
52 
53  $svgTestFileContent = '<?xml version="1.0" encoding="ISO-8859-1" standalone="no" ?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="#CD201F" d="M11 12l3-2v6H2v-6l3 2 3-2 3 2z"></path><script><![CDATA[ function alertMe() {} ]]></script></svg>';
54  $this->testFileName = GeneralUtility::tempnam(uniqid('svg_') . '.svg');
55  file_put_contents($this->testFileName, $svgTestFileContent);
56  }
57 
61  protected function tearDown()
62  {
63  unlink($this->testFileName);
64  }
65 
70  {
71  $this->subject->prepareIconMarkup($this->icon, ['source' => 'fileadmin/foo.svg']);
72  $this->assertEquals('<img src="fileadmin/foo.svg" width="16" height="16" />', $this->icon->getMarkup());
73  }
74 
79  {
80  $this->subject->prepareIconMarkup($this->icon, ['source' => '/fileadmin/foo.svg']);
81  $this->assertEquals('<img src="/fileadmin/foo.svg" width="16" height="16" />', $this->icon->getMarkup());
82  }
83 
88  {
89  $this->subject->prepareIconMarkup($this->icon, ['source' => 'EXT:core/Resources/Public/Images/foo.svg']);
90  $this->assertEquals('<img src="typo3/sysext/core/Resources/Public/Images/foo.svg" width="16" height="16" />', $this->icon->getMarkup());
91  }
92 
97  {
98  $this->subject->prepareIconMarkup($this->icon, ['source' => $this->testFileName]);
99  $this->assertEquals('<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="#CD201F" d="M11 12l3-2v6H2v-6l3 2 3-2 3 2z"/></svg>', $this->icon->getMarkup(SvgIconProvider::MARKUP_IDENTIFIER_INLINE));
100  }
101 }
static tempnam($filePrefix, $fileSuffix='')