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

65 lines
1.7 KiB
PHP
Raw Normal View History

<?php
/**
2016-09-05 05:51:28 +03:00
* Test Parsedown against the CommonMark spec
*
2014-09-14 01:02:11 +04:00
* @link http://commonmark.org/ CommonMark
*/
class CommonMarkTest extends PHPUnit_Framework_TestCase
{
const SPEC_URL = 'https://raw.githubusercontent.com/jgm/stmd/master/spec.txt';
2016-09-05 05:51:28 +03:00
protected $parsedown;
protected function setUp()
{
2016-09-05 15:38:47 +03:00
$this->parsedown = new TestParsedown();
2016-09-05 05:51:28 +03:00
$this->parsedown->setUrlsLinked(false);
}
2014-11-29 22:34:46 +03:00
/**
* @dataProvider data
2014-11-30 00:53:38 +03:00
* @param $section
2014-11-29 22:34:46 +03:00
* @param $markdown
* @param $expectedHtml
*/
2016-09-05 05:51:28 +03:00
public function testExample($section, $markdown, $expectedHtml)
2014-11-29 22:34:46 +03:00
{
2016-09-05 05:51:28 +03:00
$actualHtml = $this->parsedown->text($markdown);
2014-11-29 22:34:46 +03:00
$this->assertEquals($expectedHtml, $actualHtml);
}
2016-09-05 05:51:28 +03:00
/**
* @return array
*/
public function data()
{
2014-11-29 21:18:23 +03:00
$spec = file_get_contents(self::SPEC_URL);
2016-09-05 05:51:28 +03:00
if ($spec === false) {
$this->fail('Unable to load CommonMark spec from ' . self::SPEC_URL);
}
2016-09-05 05:51:28 +03:00
$spec = str_replace("\r\n", "\n", $spec);
$spec = strstr($spec, '<!-- END TESTS -->', true);
2016-09-05 05:51:28 +03:00
$matches = array();
preg_match_all('/^`{32} example\n((?s).*?)\n\.\n((?s).*?)\n`{32}$|^#{1,6} *(.*?)$/m', $spec, $matches, PREG_SET_ORDER);
2016-09-05 05:51:28 +03:00
$data = array();
$currentSection = '';
foreach ($matches as $match) {
if (isset($match[3])) {
$currentSection = $match[3];
} else {
$data[] = array(
'section' => $currentSection,
'markdown' => str_replace('→', "\t", $match[1]),
'expectedHtml' => str_replace('→', "\t", $match[2])
);
}
}
2016-09-05 05:51:28 +03:00
return $data;
}
}