1
0
gomponents/gomponents_test.go

125 lines
2.8 KiB
Go
Raw Normal View History

package gomponents_test
import (
2020-09-21 02:27:37 -07:00
"errors"
2020-09-21 07:07:39 -07:00
"fmt"
2020-09-21 02:27:37 -07:00
"strings"
"testing"
g "github.com/maragudk/gomponents"
"github.com/maragudk/gomponents/assert"
)
func TestNodeFunc(t *testing.T) {
t.Run("implements fmt.Stringer", func(t *testing.T) {
fn := g.NodeFunc(func() string { return "hat" })
if fn.String() != "hat" {
t.FailNow()
}
})
}
func TestAttr(t *testing.T) {
t.Run("renders just the local name with one argument", func(t *testing.T) {
a := g.Attr("required")
assert.Equal(t, " required", a)
})
t.Run("renders the name and value when given two arguments", func(t *testing.T) {
a := g.Attr("id", "hat")
assert.Equal(t, ` id="hat"`, a)
})
t.Run("panics with more than two arguments", func(t *testing.T) {
called := false
defer func() {
if err := recover(); err != nil {
called = true
}
}()
g.Attr("name", "value", "what is this?")
if !called {
t.FailNow()
}
})
2020-09-21 07:07:39 -07:00
t.Run("implements fmt.Stringer", func(t *testing.T) {
a := g.Attr("required")
s := fmt.Sprintf("%v", a)
if s != " required" {
t.FailNow()
}
})
}
func TestEl(t *testing.T) {
t.Run("renders an empty element if no children given", func(t *testing.T) {
e := g.El("div")
assert.Equal(t, "<div/>", e)
})
t.Run("renders an empty element if only attributes given as children", func(t *testing.T) {
e := g.El("div", g.Attr("class", "hat"))
assert.Equal(t, `<div class="hat"/>`, e)
})
t.Run("renders an element, attributes, and element children", func(t *testing.T) {
e := g.El("div", g.Attr("class", "hat"), g.El("span"))
assert.Equal(t, `<div class="hat"><span/></div>`, e)
})
t.Run("renders attributes at the correct place regardless of placement in parameter list", func(t *testing.T) {
e := g.El("div", g.El("span"), g.Attr("class", "hat"))
assert.Equal(t, `<div class="hat"><span/></div>`, e)
})
}
func TestText(t *testing.T) {
t.Run("renders escaped text", func(t *testing.T) {
e := g.Text("<div/>")
assert.Equal(t, "&lt;div/&gt;", e)
})
}
func TestTextf(t *testing.T) {
t.Run("renders interpolated and escaped text", func(t *testing.T) {
e := g.Textf("<%v/>", "div")
assert.Equal(t, "&lt;div/&gt;", e)
})
}
func TestRaw(t *testing.T) {
t.Run("renders raw text", func(t *testing.T) {
e := g.Raw("<div/>")
assert.Equal(t, "<div/>", e)
})
}
2020-09-21 02:27:37 -07:00
type erroringWriter struct{}
func (w *erroringWriter) Write(p []byte) (n int, err error) {
return 0, errors.New("don't want to write")
}
func TestWrite(t *testing.T) {
t.Run("writes to the writer", func(t *testing.T) {
e := g.El("div")
var b strings.Builder
err := g.Write(&b, e)
if err != nil {
t.FailNow()
}
if b.String() != e.Render() {
t.FailNow()
}
})
t.Run("errors on write error", func(t *testing.T) {
e := g.El("div")
err := g.Write(&erroringWriter{}, e)
if err == nil {
t.FailNow()
}
})
}