class RemoveHtmlCommentsTest in Twig - Remove HTML comments 8
Tests the RemoveHtmlComments class.
@package Drupal\Tests\twig_remove_html_comments\Unit @coversDefaultClass \Drupal\twig_remove_html_comments\TwigExtension\RemoveHtmlComments @group twig_remove_html_comments
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\twig_remove_html_comments\Unit\RemoveHtmlCommentsTest
Expanded class hierarchy of RemoveHtmlCommentsTest
File
- tests/
Unit/ RemoveHtmlCommentsTest.php, line 16
Namespace
Drupal\Tests\twig_remove_html_comments\UnitView source
class RemoveHtmlCommentsTest extends UnitTestCase {
/**
* The object to test.
*
* @var \Drupal\twig_remove_html_comments\TwigExtension\RemoveHtmlComments
*/
protected $removeHtmlComments;
/**
* Sets up to object to test.
*/
protected function setUp() : void {
parent::setUp();
$this->removeHtmlComments = new RemoveHtmlComments();
}
/**
* @covers ::getName
*/
public function testGetName() : void {
$this
->assertTrue(!empty($this->removeHtmlComments
->getName()));
}
/**
* @covers ::getFilters
*/
public function testGetFilters() : void {
$filters = $this->removeHtmlComments
->getFilters();
$this
->assertTrue(is_array($filters));
foreach ($filters as $filter) {
$this
->assertTrue($filter instanceof TwigFilter);
}
}
/**
* @covers ::removeHtmlCommentsFromString
*/
public function testRemoveHtmlCommentsFromString() : void {
$stringWithSingleComment = '<!-- This is a HTML comment --><p>HTML p tag</p><h1>HTML 1 tag</h1>';
$this
->assertEquals('<p>HTML p tag</p><h1>HTML 1 tag</h1>', $this->removeHtmlComments
->removeHtmlCommentsFromString($stringWithSingleComment));
$stringWithMultipleComments = '<!-- This is a HTML comment --><p>HTML p tag</p><h1>HTML 1 tag</h1><!-- This is another HTML comment -->';
$this
->assertEquals('<p>HTML p tag</p><h1>HTML 1 tag</h1>', $this->removeHtmlComments
->removeHtmlCommentsFromString($stringWithMultipleComments));
$stringWithoutComments = '<span>This is a normal string without any HTML comments</span>';
$this
->assertEquals('<span>This is a normal string without any HTML comments</span>', $this->removeHtmlComments
->removeHtmlCommentsFromString($stringWithoutComments));
$stringWithoutHTML = 'This is a string without any HTML';
$this
->assertEquals('This is a string without any HTML', $this->removeHtmlComments
->removeHtmlCommentsFromString($stringWithoutHTML));
$this
->assertEquals('', $this->removeHtmlComments
->removeHtmlCommentsFromString(NULL));
}
/**
* @covers ::removeHtmlCommentsAsRenderArray
*/
public function testRemoveHtmlCommentsAsRenderArray() : void {
$stringWithSingleComment = '<!-- This is a HTML comment --><p>HTML p tag</p><h1>HTML 1 tag</h1>';
$this
->assertEquals([
'#markup' => '<p>HTML p tag</p><h1>HTML 1 tag</h1>',
], $this->removeHtmlComments
->removeHtmlCommentsAsRenderArray($stringWithSingleComment));
$stringWithMultipleComments = '<!-- This is a HTML comment --><p>HTML p tag</p><h1>HTML 1 tag</h1><!-- This is another HTML comment -->';
$this
->assertEquals([
'#markup' => '<p>HTML p tag</p><h1>HTML 1 tag</h1>',
], $this->removeHtmlComments
->removeHtmlCommentsAsRenderArray($stringWithMultipleComments));
$stringWithoutComments = '<span>This is a normal string without any HTML comments</span>';
$this
->assertEquals([
'#markup' => '<span>This is a normal string without any HTML comments</span>',
], $this->removeHtmlComments
->removeHtmlCommentsAsRenderArray($stringWithoutComments));
$simpleStringWithoutHTML = 'This is a string without any HTML';
$this
->assertEquals([
'#markup' => 'This is a string without any HTML',
], $this->removeHtmlComments
->removeHtmlCommentsAsRenderArray($simpleStringWithoutHTML));
$this
->assertEquals([
'#markup' => '',
], $this->removeHtmlComments
->removeHtmlCommentsAsRenderArray(NULL));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
RemoveHtmlCommentsTest:: |
protected | property | The object to test. | |
RemoveHtmlCommentsTest:: |
protected | function |
Sets up to object to test. Overrides UnitTestCase:: |
|
RemoveHtmlCommentsTest:: |
public | function | @covers ::getFilters | |
RemoveHtmlCommentsTest:: |
public | function | @covers ::getName | |
RemoveHtmlCommentsTest:: |
public | function | @covers ::removeHtmlCommentsAsRenderArray | |
RemoveHtmlCommentsTest:: |
public | function | @covers ::removeHtmlCommentsFromString | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |