2011-06-02 08:52:24 +08:00
|
|
|
//
|
2011-06-28 10:11:32 +08:00
|
|
|
// Blackfriday Markdown Processor
|
|
|
|
// Available at http://github.com/russross/blackfriday
|
|
|
|
//
|
|
|
|
// Copyright © 2011 Russ Ross <russ@russross.com>.
|
|
|
|
// Licensed under the Simplified BSD License.
|
|
|
|
// See README.md for details.
|
2011-06-02 08:52:24 +08:00
|
|
|
//
|
|
|
|
|
|
|
|
//
|
|
|
|
// Markdown 1.0.3 reference tests
|
|
|
|
//
|
|
|
|
|
|
|
|
package blackfriday
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2011-06-28 00:13:13 +08:00
|
|
|
func runMarkdownReference(input string) string {
|
2011-06-02 08:52:24 +08:00
|
|
|
renderer := HtmlRenderer(0)
|
|
|
|
return string(Markdown([]byte(input), renderer, 0))
|
|
|
|
}
|
|
|
|
|
2011-06-28 00:13:13 +08:00
|
|
|
func doTestsReference(t *testing.T, files []string) {
|
2011-06-02 08:52:24 +08:00
|
|
|
for _, basename := range files {
|
|
|
|
fn := filepath.Join("upskirtref", basename+".text")
|
|
|
|
actualdata, err := ioutil.ReadFile(fn)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Couldn't open '%s', error: %v\n", fn, err)
|
|
|
|
continue
|
|
|
|
}
|
2011-06-10 23:41:00 +08:00
|
|
|
fn = filepath.Join("upskirtref", basename+".html")
|
2011-06-02 08:52:24 +08:00
|
|
|
expecteddata, err := ioutil.ReadFile(fn)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Couldn't open '%s', error: %v\n", fn, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
actual := string(actualdata)
|
2011-06-28 00:13:13 +08:00
|
|
|
actual = string(runMarkdownReference(actual))
|
|
|
|
expected := string(expecteddata)
|
2011-06-02 08:52:24 +08:00
|
|
|
if actual != expected {
|
|
|
|
t.Errorf("\n [%#v]\nExpected[%#v]\nActual [%#v]",
|
|
|
|
basename+".text", expected, actual)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestReference(t *testing.T) {
|
|
|
|
files := []string{
|
|
|
|
"Amps and angle encoding",
|
|
|
|
"Auto links",
|
|
|
|
"Backslash escapes",
|
|
|
|
"Blockquotes with code blocks",
|
|
|
|
"Code Blocks",
|
|
|
|
"Code Spans",
|
|
|
|
"Hard-wrapped paragraphs with list-like lines",
|
|
|
|
"Horizontal rules",
|
|
|
|
"Inline HTML (Advanced)",
|
|
|
|
"Inline HTML (Simple)",
|
|
|
|
"Inline HTML comments",
|
|
|
|
"Links, inline style",
|
|
|
|
"Links, reference style",
|
|
|
|
"Links, shortcut references",
|
|
|
|
"Literal quotes in titles",
|
|
|
|
"Markdown Documentation - Basics",
|
|
|
|
"Markdown Documentation - Syntax",
|
|
|
|
"Nested blockquotes",
|
|
|
|
"Ordered and unordered lists",
|
|
|
|
"Strong and em together",
|
|
|
|
"Tabs",
|
|
|
|
"Tidyness",
|
|
|
|
}
|
2011-06-28 00:13:13 +08:00
|
|
|
doTestsReference(t, files)
|
2011-06-02 08:52:24 +08:00
|
|
|
}
|