MarkdownParser/test/commonmark/CommonMarkTest.php

63 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/**
* Test Parsedown against the CommonMark spec.
*
* Some code based on the original JavaScript test runner by jgm.
*
2014-09-13 23:02:11 +02:00
* @link http://commonmark.org/ CommonMark
* @link http://git.io/8WtRvQ JavaScript test runner
*/
class CommonMarkTest extends PHPUnit_Framework_TestCase
{
const SPEC_URL = 'https://raw.githubusercontent.com/jgm/stmd/master/spec.txt';
public function getCommonMarkRules()
{
2014-11-29 19:18:23 +01:00
$spec = file_get_contents(self::SPEC_URL);
$tests = array();
$testsCount = 0;
$currentSection = '';
2014-11-29 19:18:23 +01:00
$spec = strstr($spec, '<!-- END TESTS -->', true);
preg_replace_callback(
'/^\.\n([\s\S]*?)^\.\n([\s\S]*?)^\.$|^#{1,6} *(.*)$/m',
function($matches) use (&$tests, &$currentSection, &$testsCount) {
if (isset($matches[3]) and $matches[3]) {
$currentSection = $matches[3];
} else {
$testsCount++;
$markdown = preg_replace('/→/', "\t", $matches[1]);
$tests []= array(
$markdown, // markdown
$matches[2], // html
$currentSection, // section
$testsCount, // number
);
}
},
$spec
);
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);
}
}