-
Notifications
You must be signed in to change notification settings - Fork 3
/
doctype_test.go
76 lines (70 loc) · 1.58 KB
/
doctype_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package lolhtml_test
import (
"testing"
"github.com/coolspring8/go-lolhtml"
)
func TestDoctype_GetDoctypeFields(t *testing.T) {
w, err := lolhtml.NewWriter(
nil,
&lolhtml.Handlers{
DocumentContentHandler: []lolhtml.DocumentContentHandler{
{
DoctypeHandler: func(doctype *lolhtml.Doctype) lolhtml.RewriterDirective {
if name := doctype.Name(); name != "math" {
t.Errorf("wrong doctype name %s\n", name)
}
if publicId := doctype.PublicID(); publicId != "" {
t.Errorf("wrong doctype name %s\n", publicId)
}
if systemId := doctype.SystemID(); systemId != "http://www.w3.org/Math/DTD/mathml1/mathml.dtd" {
t.Errorf("wrong doctype name %s\n", systemId)
}
return lolhtml.Continue
},
},
},
},
)
if err != nil {
t.Error(err)
}
_, err = w.Write([]byte(`<!DOCTYPE math SYSTEM "http://www.w3.org/Math/DTD/mathml1/mathml.dtd">`))
if err != nil {
t.Error(err)
}
err = w.Close()
if err != nil {
t.Error(err)
}
}
func TestDoctype_StopRewriting(t *testing.T) {
w, err := lolhtml.NewWriter(
nil,
&lolhtml.Handlers{
DocumentContentHandler: []lolhtml.DocumentContentHandler{
{
DoctypeHandler: func(d *lolhtml.Doctype) lolhtml.RewriterDirective {
return lolhtml.Stop
},
},
},
},
)
if err != nil {
t.Error(err)
}
_, err = w.Write([]byte("<!doctype>"))
if err == nil {
t.FailNow()
}
if err.Error() != "The rewriter has been stopped." {
t.Error(err)
}
err = w.Close()
if err == nil {
t.FailNow()
}
if err.Error() != "The rewriter has been stopped." {
t.Error(err)
}
}