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

improve consistency

This commit is contained in:
Emanuil Rusev 2014-11-29 21:34:46 +02:00
parent 28a202ee9e
commit 6fb534bc34

View File

@ -12,29 +12,46 @@ class CommonMarkTest extends PHPUnit_Framework_TestCase
{
const SPEC_URL = 'https://raw.githubusercontent.com/jgm/stmd/master/spec.txt';
public function getCommonMarkRules()
/**
* @dataProvider data
* @param $markdown
* @param $expectedHtml
*/
function test_($markdown, $expectedHtml)
{
$parsedown = new Parsedown();
$actualHtml = $parsedown->text($markdown);
# trim for better compatibility of the HTML output
$actualHtml = trim($actualHtml);
$expectedHtml = trim($expectedHtml);
$this->assertEquals($expectedHtml, $actualHtml);
}
function data()
{
$spec = file_get_contents(self::SPEC_URL);
$spec = strstr($spec, '<!-- END TESTS -->', true);
$tests = array();
$testsCount = 0;
$testCount = 0;
$currentSection = '';
$spec = strstr($spec, '<!-- END TESTS -->', true);
preg_replace_callback(
'/^\.\n([\s\S]*?)^\.\n([\s\S]*?)^\.$|^#{1,6} *(.*)$/m',
function($matches) use (&$tests, &$currentSection, &$testsCount) {
function($matches) use ( & $tests, & $currentSection, & $testCount) {
if (isset($matches[3]) and $matches[3]) {
$currentSection = $matches[3];
} else {
$testsCount++;
$testCount++;
$markdown = preg_replace('/→/', "\t", $matches[1]);
$tests []= array(
$markdown, // markdown
$matches[2], // html
$currentSection, // section
$testsCount, // number
$markdown, # markdown
$matches[2], # html
$currentSection, # section
$testCount, # number
);
}
},
@ -43,20 +60,4 @@ class CommonMarkTest extends PHPUnit_Framework_TestCase
return $tests;
}
/**
* @dataProvider getCommonMarkRules
*/
public function testAgainstCommonMark($markdown, $expectedHtml, $section, $number)
{
$parsedown = new Parsedown();
$actualHtml = $parsedown->text($markdown);
// Trim for better compatibility of the HTML output
$actualHtml = trim($actualHtml);
$expectedHtml = trim($expectedHtml);
$this->assertEquals($expectedHtml, $actualHtml);
}
}