summaryrefslogtreecommitdiff
path: root/gopher/gophermap/htmlconv/convert_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'gopher/gophermap/htmlconv/convert_test.go')
-rw-r--r--gopher/gophermap/htmlconv/convert_test.go59
1 files changed, 59 insertions, 0 deletions
diff --git a/gopher/gophermap/htmlconv/convert_test.go b/gopher/gophermap/htmlconv/convert_test.go
new file mode 100644
index 0000000..1cdc8e2
--- /dev/null
+++ b/gopher/gophermap/htmlconv/convert_test.go
@@ -0,0 +1,59 @@
+package htmlconv
+
+import (
+ "bytes"
+ "fmt"
+ "strings"
+ "testing"
+
+ "tildegit.org/tjp/sliderule/gopher/gophermap"
+)
+
+func TestConvert(t *testing.T) {
+ tests := []struct {
+ name string
+ input string
+ output string
+ }{
+ {
+ name: "basic doc",
+ input: strings.ReplaceAll(`
+iI am informational text localhost 70
+icontinued on this line localhost 70
+i localhost 70
+0this is my text file /file.txt localhost 70
+i localhost 70
+1here's a sub-menu /sub/ localhost 70
+.
+`[1:], "\n", "\r\n"),
+ output: `
+<!DOCTYPE html>
+<html><body class="gophermap"><pre class="gophermap">I am informational text
+continued on this line
+
+</pre><p class="gophermap"><a class="gophermap" href="/file.txt">this is my text file</a></p><pre class="gophermap">
+</pre><p class="gophermap"><a class="gophermap" href="/sub/">here&#39;s a sub-menu</a></p></body></html>
+`[1:],
+ },
+ }
+
+ for _, test := range tests {
+ t.Run(test.name, func(t *testing.T) {
+ doc, err := gophermap.Parse(bytes.NewBufferString(test.input))
+ if err != nil {
+ t.Fatal(err)
+ }
+
+ buf := &bytes.Buffer{}
+ if err := Convert(buf, doc, nil); err != nil {
+ t.Fatal(err)
+ }
+
+ if buf.String() != test.output {
+ fmt.Println(test.output)
+ fmt.Println(buf.String())
+ t.Fatal("html body mismatch")
+ }
+ })
+ }
+}