mirror of
https://github.com/erusev/parsedown.git
synced 2023-08-10 21:13:06 +03:00
Merge pull request #217 from hkdobrev/standard-markdown
Standard markdown
This commit is contained in:
commit
8ecf828777
@ -7,4 +7,5 @@ php:
|
||||
- 5.3
|
||||
- 5.2
|
||||
- hhvm
|
||||
|
||||
|
||||
before_script: curl -sS https://raw.githubusercontent.com/jgm/stmd/master/spec.txt>test/standard-markdown/spec.txt
|
||||
|
@ -1,8 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit bootstrap="test/bootstrap.php" colors="true">
|
||||
<testsuites>
|
||||
<testsuite>
|
||||
<file>test/Test.php</file>
|
||||
<testsuite name="ParsedownTests">
|
||||
<file>test/Test.php</file>
|
||||
</testsuite>
|
||||
<testsuite name="StandardMarkdown">
|
||||
<file>test/standard-markdown/StandardMarkdownTest.php</file>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
</phpunit>
|
||||
</phpunit>
|
||||
|
1
test/standard-markdown/.gitignore
vendored
Normal file
1
test/standard-markdown/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
spec.txt
|
68
test/standard-markdown/StandardMarkdownTest.php
Normal file
68
test/standard-markdown/StandardMarkdownTest.php
Normal file
@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Test Parsedown against the Standard Makrdown spec.
|
||||
*
|
||||
* Some code based on the original JavaScript test runner by jgm.
|
||||
*
|
||||
* @link http://standardmarkdown.com/ Standard Markdown
|
||||
* @link http://git.io/8WtRvQ JavaScript test runner
|
||||
*/
|
||||
class StandardMarkdownTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
const SPEC_FILEPATH = 'spec.txt';
|
||||
|
||||
const SPEC_URL = 'https://raw.githubusercontent.com/jgm/stmd/master/spec.txt';
|
||||
|
||||
public function getStandardMarkdownRules()
|
||||
{
|
||||
if (is_file(self::SPEC_FILEPATH) and is_readable(self::SPEC_FILEPATH)) {
|
||||
$spec = file_get_contents(self::SPEC_FILEPATH);
|
||||
} else {
|
||||
$spec = file_get_contents(self::SPEC_URL);
|
||||
}
|
||||
|
||||
$tests = array();
|
||||
$testsCount = 0;
|
||||
$currentSection = '';
|
||||
|
||||
$spec = preg_replace('/^<!-- END TESTS -->(.|[\n])*/m', '', $spec);
|
||||
|
||||
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 getStandardMarkdownRules
|
||||
*/
|
||||
public function testAgainstStandardMarkdown($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);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user