From e6d97c4fcadc1d7c843f102cd6500a3060e2a5c3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Mon, 4 Jul 2016 10:49:20 +0200 Subject: [PATCH] Add Rst shortcode test Fixes #2253 --- helpers/content.go | 30 +++++++++++++++++++++++------- hugolib/shortcode_test.go | 7 +++++++ 2 files changed, 30 insertions(+), 7 deletions(-) diff --git a/helpers/content.go b/helpers/content.go index 94cc3e85..709dc8a9 100644 --- a/helpers/content.go +++ b/helpers/content.go @@ -469,6 +469,7 @@ func getAsciidocExecPath() string { return path } +// HasAsciidoc returns whether Asciidoctor or Asciidoc is installed on this computer. func HasAsciidoc() bool { return getAsciidocExecPath() != "" } @@ -497,20 +498,35 @@ func getAsciidocContent(content []byte) string { return out.String() } -// getRstContent calls the Python script rst2html as an external helper -// to convert reStructuredText content to HTML. -func getRstContent(content []byte) string { - cleanContent := bytes.Replace(content, SummaryDivider, []byte(""), 1) +// HasRst returns whether rst2html is installed on this computer. +func HasRst() bool { + return getRstExecPath() != "" +} +func getRstExecPath() string { path, err := exec.LookPath("rst2html") if err != nil { path, err = exec.LookPath("rst2html.py") if err != nil { - jww.ERROR.Println("rst2html / rst2html.py not found in $PATH: Please install.\n", - " Leaving reStructuredText content unrendered.") - return (string(content)) + return "" } } + return path +} + +// getRstContent calls the Python script rst2html as an external helper +// to convert reStructuredText content to HTML. +func getRstContent(content []byte) string { + cleanContent := bytes.Replace(content, SummaryDivider, []byte(""), 1) + + path := getRstExecPath() + + if path == "" { + jww.ERROR.Println("rst2html / rst2html.py not found in $PATH: Please install.\n", + " Leaving reStructuredText content unrendered.") + return (string(content)) + + } cmd := exec.Command(path, "--leave-comments") cmd.Stdin = bytes.NewReader(cleanContent) diff --git a/hugolib/shortcode_test.go b/hugolib/shortcode_test.go index 79fb0c72..3639bb24 100644 --- a/hugolib/shortcode_test.go +++ b/hugolib/shortcode_test.go @@ -470,6 +470,9 @@ e`, {"sect/doc7.ad", `_Shortcodes:_ *b: {{< b >}} c: {{% c %}}*`, filepath.FromSlash("sect/doc7/index.html"), "
\n

Shortcodes: b: b c: c

\n
\n"}, + {"sect/doc8.rst", `**Shortcodes:** *b: {{< b >}} c: {{% c %}}*`, + filepath.FromSlash("sect/doc8/index.html"), + "
\n\n\n

Shortcodes: b: b c: c

\n
"}, } sources := make([]source.ByteSource, len(tests)) @@ -501,7 +504,11 @@ e`, if strings.HasSuffix(test.contentPath, ".ad") && !helpers.HasAsciidoc() { fmt.Println("Skip Asciidoc test case as no Asciidoc present.") continue + } else if strings.HasSuffix(test.contentPath, ".rst") && !helpers.HasRst() { + fmt.Println("Skip Rst test case as no rst2html present.") + continue } + file, err := hugofs.Destination().Open(test.outFile) if err != nil { -- 2.30.2