89 lines
2.5 KiB
Go
89 lines
2.5 KiB
Go
package html
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
)
|
|
|
|
func TestResponsive_SingleVariant(t *testing.T) {
|
|
ctx := NewContext()
|
|
r := NewResponsive().
|
|
Variant("desktop", NewLayout("HLCRF").
|
|
H(Raw("header")).L(Raw("nav")).C(Raw("main")).R(Raw("aside")).F(Raw("footer")))
|
|
got := r.Render(ctx)
|
|
|
|
if !strings.Contains(got, `data-variant="desktop"`) {
|
|
t.Errorf("responsive should contain data-variant, got:\n%s", got)
|
|
}
|
|
if !strings.Contains(got, `data-block="H-0"`) {
|
|
t.Errorf("responsive should contain layout content, got:\n%s", got)
|
|
}
|
|
}
|
|
|
|
func TestResponsive_MultiVariant(t *testing.T) {
|
|
ctx := NewContext()
|
|
r := NewResponsive().
|
|
Variant("desktop", NewLayout("HLCRF").H(Raw("h")).L(Raw("l")).C(Raw("c")).R(Raw("r")).F(Raw("f"))).
|
|
Variant("tablet", NewLayout("HCF").H(Raw("h")).C(Raw("c")).F(Raw("f"))).
|
|
Variant("mobile", NewLayout("C").C(Raw("c")))
|
|
|
|
got := r.Render(ctx)
|
|
|
|
for _, v := range []string{"desktop", "tablet", "mobile"} {
|
|
if !strings.Contains(got, `data-variant="`+v+`"`) {
|
|
t.Errorf("responsive missing variant %q in:\n%s", v, got)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestResponsive_VariantOrder(t *testing.T) {
|
|
ctx := NewContext()
|
|
r := NewResponsive().
|
|
Variant("desktop", NewLayout("HLCRF").C(Raw("d"))).
|
|
Variant("mobile", NewLayout("C").C(Raw("m")))
|
|
|
|
got := r.Render(ctx)
|
|
|
|
di := strings.Index(got, `data-variant="desktop"`)
|
|
mi := strings.Index(got, `data-variant="mobile"`)
|
|
if di < 0 || mi < 0 {
|
|
t.Fatalf("missing variants in:\n%s", got)
|
|
}
|
|
if di >= mi {
|
|
t.Errorf("desktop should appear before mobile (insertion order), desktop=%d mobile=%d", di, mi)
|
|
}
|
|
}
|
|
|
|
func TestResponsive_NestedPaths(t *testing.T) {
|
|
ctx := NewContext()
|
|
inner := NewLayout("HCF").H(Raw("ih")).C(Raw("ic")).F(Raw("if"))
|
|
r := NewResponsive().
|
|
Variant("desktop", NewLayout("HLCRF").C(inner))
|
|
|
|
got := r.Render(ctx)
|
|
|
|
if !strings.Contains(got, `data-block="C-0-H-0"`) {
|
|
t.Errorf("nested layout in responsive variant missing C-0-H-0 in:\n%s", got)
|
|
}
|
|
if !strings.Contains(got, `data-block="C-0-C-0"`) {
|
|
t.Errorf("nested layout in responsive variant missing C-0-C-0 in:\n%s", got)
|
|
}
|
|
}
|
|
|
|
func TestResponsive_VariantsIndependent(t *testing.T) {
|
|
ctx := NewContext()
|
|
r := NewResponsive().
|
|
Variant("a", NewLayout("HLCRF").C(Raw("content-a"))).
|
|
Variant("b", NewLayout("HCF").C(Raw("content-b")))
|
|
|
|
got := r.Render(ctx)
|
|
|
|
count := strings.Count(got, `data-block="C-0"`)
|
|
if count != 2 {
|
|
t.Errorf("expected 2 independent C-0 blocks, got %d in:\n%s", count, got)
|
|
}
|
|
}
|
|
|
|
func TestResponsive_ImplementsNode(t *testing.T) {
|
|
var _ Node = NewResponsive()
|
|
}
|