TYPO3 CMS  TYPO3_8-7
FontawesomeIconProviderTest.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 
19 
23 class FontawesomeIconProviderTest extends \TYPO3\TestingFramework\Core\Unit\UnitTestCase
24 {
28  protected $subject = null;
29 
33  protected $icon = null;
34 
38  protected function setUp()
39  {
40  $this->subject = new \TYPO3\CMS\Core\Imaging\IconProvider\FontawesomeIconProvider();
41  $this->icon = GeneralUtility::makeInstance(Icon::class);
42  $this->icon->setIdentifier('foo');
43  $this->icon->setSize(Icon::SIZE_SMALL);
44  }
45 
50  {
51  $this->subject->prepareIconMarkup($this->icon, ['name' => 'times']);
52  $this->assertEquals('<span class="icon-unify"><i class="fa fa-times"></i></span>', $this->icon->getMarkup());
53  }
54 
60  public function wrongNamesDataProvider()
61  {
62  return [
63  'name with spaces' => ['name with spaces', 1440754979],
64  'name with spaces and umlauts' => ['name with spaces äöü', 1440754979],
65  'name umlauts' => ['häuser', 1440754979],
66  'name with underscore' => ['name_with_underscore', 1440754979],
67  'name is empty' => ['', 1440754978],
68  ];
69  }
70 
77  public function prepareIconMarkupWithInvalidNameThrowsException($name, $expectedExceptionCode)
78  {
79  $this->expectException(\InvalidArgumentException::class);
80  $this->expectExceptionCode($expectedExceptionCode);
81 
82  $this->subject->prepareIconMarkup($this->icon, ['name' => $name]);
83  }
84 }
static makeInstance($className,... $constructorArguments)