1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
package markdown
import (
"bytes"
"io/ioutil"
"os"
"path/filepath"
"testing"
"github.com/gomarkdown/markdown/ast"
"github.com/gomarkdown/markdown/md"
"github.com/gomarkdown/markdown/parser"
)
func TestMd(t *testing.T) {
if true {
// disabled for now because md render is not finished
return
}
files := []string{
"md1",
"md2",
}
for _, file := range files {
pathOrig := filepath.Join("testdata", file+".md")
d, err := ioutil.ReadFile(pathOrig)
if err != nil {
t.Fatalf("ioutil.ReadFile('%s') failed with %s", pathOrig, err)
}
pathExp := filepath.Join("testdata", file+"_exp.md")
exp, err := ioutil.ReadFile(pathExp)
if err != nil {
t.Fatalf("ioutil.ReadFile('%s') failed with %s", pathExp, err)
}
exts := parser.CommonExtensions | parser.OrderedListStart
parser := parser.NewWithExtensions(exts)
renderer := md.NewRenderer()
doc := Parse(d, parser)
got := Render(doc, renderer)
if !bytes.Equal(got, exp) {
pathGot := filepath.Join("testdata", file+"_got.md")
err = ioutil.WriteFile(pathGot, got, 0644)
if err != nil {
t.Errorf("ioutil.WriteFile('%s') failed with %s", pathGot, err)
}
pathAST := filepath.Join("testdata", file+"_ast.txt")
f, err := os.Create(pathAST)
if err != nil {
t.Errorf("ioutil.WriteFile('%s') failed with %s", pathAST, err)
}
ast.PrintWithPrefix(f, doc, " ")
f.Close()
t.Errorf("Failed md-to-md on %s. Compare expected %s to got %s and ast %s", pathOrig, pathExp, pathGot, pathAST)
}
}
}
|