mirror of
https://github.com/facundoolano/jorge.git
synced 2024-12-28 22:26:16 +01:00
526e3c3e5a
Squashed commit of the following: commit 288291800c346cc103513169b33dc32e0d2182a0 Author: facundoolano <facundo.olano@gmail.com> Date: Tue Feb 13 13:36:33 2024 -0300 test the rest of the pages commit 184fad8d925b7e2f5e6942b148508d835fda2207 Author: facundoolano <facundo.olano@gmail.com> Date: Tue Feb 13 13:34:40 2024 -0300 remove extra new lines commit 813bc35ba98c13dbf0951638fab6f04db59768b0 Author: facundoolano <facundo.olano@gmail.com> Date: Tue Feb 13 13:15:23 2024 -0300 first portion of site test commit 766aecb68c74e812bfe65479cd16a97f85dcb86f Author: facundoolano <facundo.olano@gmail.com> Date: Mon Feb 12 16:44:43 2024 -0300 stub site tests
183 lines
3.7 KiB
Go
183 lines
3.7 KiB
Go
package templates
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestParseTemplate(t *testing.T) {
|
|
input := `---
|
|
title: my new post
|
|
subtitle: a blog post
|
|
tags: ["software", "web"]
|
|
---
|
|
<p>Hello World!</p>
|
|
`
|
|
|
|
file := newFile("test*.html", input)
|
|
defer os.Remove(file.Name())
|
|
|
|
templ, err := Parse(file.Name())
|
|
assertEqual(t, err, nil)
|
|
|
|
assertEqual(t, templ.Ext(), ".html")
|
|
assertEqual(t, templ.Metadata["title"], "my new post")
|
|
assertEqual(t, templ.Metadata["subtitle"], "a blog post")
|
|
assertEqual(t, templ.Metadata["tags"].([]interface{})[0], "software")
|
|
assertEqual(t, templ.Metadata["tags"].([]interface{})[1], "web")
|
|
|
|
content, err := templ.Render(nil)
|
|
assertEqual(t, err, nil)
|
|
assertEqual(t, string(content), "<p>Hello World!</p>")
|
|
}
|
|
|
|
func TestNonTemplate(t *testing.T) {
|
|
// not identified as front matter, leaving file as is
|
|
input := `+++
|
|
title: my new post
|
|
subtitle: a blog post
|
|
+++
|
|
<p>Hello World!</p>`
|
|
|
|
file := newFile("test*.html", input)
|
|
defer os.Remove(file.Name())
|
|
|
|
_, err := Parse(file.Name())
|
|
assertEqual(t, err, nil)
|
|
|
|
// not first thing in file, leaving as is
|
|
input = `#+OPTIONS: toc:nil num:nil
|
|
---
|
|
title: my new post
|
|
subtitle: a blog post
|
|
tags: ["software", "web"]
|
|
---
|
|
<p>Hello World!</p>`
|
|
|
|
file = newFile("test*.html", input)
|
|
defer os.Remove(file.Name())
|
|
|
|
_, err = Parse(file.Name())
|
|
assertEqual(t, err, nil)
|
|
}
|
|
|
|
func TestInvalidFrontMatter(t *testing.T) {
|
|
input := `---
|
|
title: my new post
|
|
subtitle: a blog post
|
|
tags: ["software", "web"]
|
|
`
|
|
file := newFile("test*.html", input)
|
|
defer os.Remove(file.Name())
|
|
_, err := Parse(file.Name())
|
|
|
|
assertEqual(t, err.Error(), "front matter not closed")
|
|
|
|
input = `---
|
|
title
|
|
tags: ["software", "web"]
|
|
---
|
|
<p>Hello World!</p>`
|
|
|
|
file = newFile("test*.html", input)
|
|
defer os.Remove(file.Name())
|
|
_, err = Parse(file.Name())
|
|
assert(t, strings.Contains(err.Error(), "invalid yaml"))
|
|
}
|
|
|
|
func TestRenderLiquid(t *testing.T) {
|
|
input := `---
|
|
title: my new post
|
|
subtitle: a blog post
|
|
tags: ["software", "web"]
|
|
---
|
|
<h1>{{ page.title }}</h1>
|
|
<h2>{{ page.subtitle }}</h2>
|
|
<ul>{% for tag in page.tags %}
|
|
<li>{{tag}}</li>{% endfor %}
|
|
</ul>`
|
|
|
|
file := newFile("test*.html", input)
|
|
defer os.Remove(file.Name())
|
|
|
|
templ, err := Parse(file.Name())
|
|
assertEqual(t, err, nil)
|
|
ctx := map[string]interface{}{"page": templ.Metadata}
|
|
content, err := templ.Render(ctx)
|
|
assertEqual(t, err, nil)
|
|
expected := `<h1>my new post</h1>
|
|
<h2>a blog post</h2>
|
|
<ul>
|
|
<li>software</li>
|
|
<li>web</li>
|
|
</ul>`
|
|
assertEqual(t, string(content), expected)
|
|
}
|
|
|
|
func TestRenderOrg(t *testing.T) {
|
|
input := `---
|
|
title: my new post
|
|
subtitle: a blog post
|
|
tags: ["software", "web"]
|
|
---
|
|
#+OPTIONS: toc:nil num:nil
|
|
* My title
|
|
** my Subtitle
|
|
- list 1
|
|
- list 2
|
|
`
|
|
|
|
file := newFile("test*.org", input)
|
|
defer os.Remove(file.Name())
|
|
|
|
templ, err := Parse(file.Name())
|
|
assertEqual(t, err, nil)
|
|
assertEqual(t, templ.Ext(), ".html")
|
|
|
|
content, err := templ.Render(nil)
|
|
assertEqual(t, err, nil)
|
|
expected := `<div id="outline-container-headline-1" class="outline-2">
|
|
<h2 id="headline-1">
|
|
My title
|
|
</h2>
|
|
<div id="outline-text-headline-1" class="outline-text-2">
|
|
<div id="outline-container-headline-2" class="outline-3">
|
|
<h3 id="headline-2">
|
|
my Subtitle
|
|
</h3>
|
|
<div id="outline-text-headline-2" class="outline-text-3">
|
|
<ul>
|
|
<li>list 1</li>
|
|
<li>list 2</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
`
|
|
assertEqual(t, string(content), expected)
|
|
}
|
|
|
|
// ------ HELPERS --------
|
|
|
|
func newFile(path string, contents string) *os.File {
|
|
file, _ := os.CreateTemp("", path)
|
|
file.WriteString(contents)
|
|
return file
|
|
}
|
|
|
|
// TODO move to assert package
|
|
func assert(t *testing.T, cond bool) {
|
|
t.Helper()
|
|
if !cond {
|
|
t.Fatalf("%v is false", cond)
|
|
}
|
|
}
|
|
|
|
func assertEqual(t *testing.T, a interface{}, b interface{}) {
|
|
t.Helper()
|
|
if a != b {
|
|
t.Fatalf("%v != %v", a, b)
|
|
}
|
|
}
|