1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00
parsedown/tests/CommonMarkTestWeak.php

88 lines
2.7 KiB
PHP
Raw Normal View History

2016-09-05 15:38:47 +03:00
<?php
2018-04-17 16:44:38 +03:00
namespace Erusev\Parsedown\Tests;
2016-09-05 15:38:47 +03:00
2019-01-20 05:55:12 +03:00
use Erusev\Parsedown\Html\Renderables\Element;
2016-09-05 15:38:47 +03:00
/**
* Test Parsedown against the CommonMark spec, but less aggressive
*
* The resulting HTML markup is cleaned up before comparison, so examples
* which would normally fail due to actually invisible differences (e.g.
* superfluous whitespaces), don't fail. However, cleanup relies on block
* element detection. The detection doesn't work correctly when a element's
* `display` CSS property is manipulated. According to that this test is only
* a interim solution on Parsedown's way to full CommonMark compatibility.
*
* @link http://commonmark.org/ CommonMark
*/
class CommonMarkTestWeak extends CommonMarkTestStrict
2016-09-05 15:38:47 +03:00
{
2019-02-11 01:38:34 +03:00
/** @var string */
2016-09-05 16:31:07 +03:00
protected $textLevelElementRegex;
2019-02-11 01:38:34 +03:00
/**
* @param string|null $name
* @param array $data
* @param string $dataName
*/
public function __construct($name = null, array $data = [], $dataName = '')
2016-09-05 15:38:47 +03:00
{
$textLevelElements = \array_keys(Element::$TEXT_LEVEL_ELEMENTS);
2019-01-20 05:55:12 +03:00
2019-02-11 01:38:34 +03:00
\array_walk(
$textLevelElements,
/**
* @param string &$element
* @return void
*/
function (&$element) {
$element = \preg_quote($element, '/');
}
);
2018-12-04 19:24:25 +03:00
$this->textLevelElementRegex = '\b(?:' . \implode('|', $textLevelElements) . ')\b';
2019-02-11 01:38:34 +03:00
parent::__construct($name, $data, $dataName);
2016-09-05 15:38:47 +03:00
}
/**
* @dataProvider data
2019-02-11 01:38:34 +03:00
* @param int $_
* @param string $__
* @param string $markdown
* @param string $expectedHtml
* @return void
* @throws \PHPUnit\Framework\AssertionFailedError
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
2016-09-05 15:38:47 +03:00
*/
2019-02-11 01:38:34 +03:00
public function testExample($_, $__, $markdown, $expectedHtml)
2016-09-05 15:38:47 +03:00
{
$expectedHtml = $this->cleanupHtml($expectedHtml);
2019-02-11 01:38:34 +03:00
$actualHtml = $this->Parsedown->text($markdown);
2016-09-05 15:38:47 +03:00
$actualHtml = $this->cleanupHtml($actualHtml);
$this->assertEquals($expectedHtml, $actualHtml);
}
2019-02-11 01:38:34 +03:00
/**
* @param string $markup
* @return string
*/
2016-09-05 15:38:47 +03:00
protected function cleanupHtml($markup)
{
// invisible whitespaces at the beginning and end of block elements
// however, whitespaces at the beginning of <pre> elements do matter
2018-12-04 19:24:25 +03:00
$markup = \preg_replace(
[
2016-09-05 16:17:52 +03:00
'/(<(?!(?:' . $this->textLevelElementRegex . '|\bpre\b))\w+\b[^>]*>(?:<' . $this->textLevelElementRegex . '[^>]*>)*)\s+/s',
'/\s+((?:<\/' . $this->textLevelElementRegex . '>)*<\/(?!' . $this->textLevelElementRegex . ')\w+\b>)/s'
2018-12-04 19:24:25 +03:00
],
2016-09-05 15:38:47 +03:00
'$1',
$markup
);
return $markup;
}
}