aboutsummaryrefslogtreecommitdiff
path: root/formatter/formatter_test.go
blob: c5f0b83fc51dd33b8f305384d47fdda2f7154023 (plain) (blame)
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
package formatter

import (
	"io"
	"os"
	"strings"
	"sync"
	"testing"

	"git.thomasvoss.com/gsp/parser"
)

var (
	stdoutMutex sync.Mutex
	r           *os.File
	w           *os.File
	stdout      *os.File
)

func redirectStdout() {
	stdoutMutex.Lock()
	stdout = os.Stdout
	r, w, _ = os.Pipe()
	os.Stdout = w
}

func restoreAndCapture() string {
	defer stdoutMutex.Unlock()
	w.Close()
	out, _ := io.ReadAll(r)
	os.Stdout = stdout
	return string(out)
}

func TestPrintAst(t *testing.T) {
	s := `
	html lang="en" {
	  >head attr {
	    >title {-
	      My Website
	    }
	    meta .→{} x="y"{}
	  }
	  >body {
	    >div #some-id {}
	    div key="val" .class-1 .class-2 {
	      p {- This is some @em{-emphatic} text	  }
	    }

	    tags key  = "Some long value" {}
	  }
	}`
	result := `<html lang="en"><head attr><title>
	      My Website
	    </title>
<meta class="→{}" x="y"></head>
<body><div id="some-id">
<div class="class-1 class-2" key="val"><p> This is some <em>emphatic</em> text	  </p></div><tags key="Some long value"></body>
</html>`

	// Write the source to a temp file
	r := strings.NewReader(s)
	f, _ := os.CreateTemp("", "tmp*")
	defer f.Close()
	io.Copy(f, r)
	f.Seek(0, 0)
	ast, _ := parser.ParseFile(f)

	redirectStdout()
	PrintAst(ast)

	out := restoreAndCapture()
	if out != result {
		t.Fatalf("PrintAst() printed unexpected string ‘%s’", out)
	}
}

func TestPrintAttrsNoClasses(t *testing.T) {
	redirectStdout()
	printAttrs([]parser.Attr{
		{
			Key:   "foo",
			Value: "b&r",
		},
		{
			Key: "baz",
		},
		{
			Key:   "hello",
			Value: "<world\"",
		},
	})

	out := restoreAndCapture()
	if out != " foo=\"b&amp;r\" baz hello=\"&lt;world&quot;\"" {
		t.Fatalf("printAttrs() printed unexpected string ‘%s’", out)
	}
}

func TestPrintAttrsClasses(t *testing.T) {
	redirectStdout()
	printAttrs([]parser.Attr{
		{
			Key:   "class",
			Value: "\"foo\"",
		},
		{
			Key:   "class",
			Value: "<bar>",
		},
		{
			Key:   "class",
			Value: "b&z",
		},
	})

	out := restoreAndCapture()
	if out != " class=\"&quot;foo&quot; &lt;bar> b&amp;z\"" {
		t.Fatalf("printAttrs() printed unexpected string ‘%s’", out)
	}
}

func TestPrintAttrsMixedAttrs(t *testing.T) {
	redirectStdout()
	printAttrs([]parser.Attr{
		{
			Key:   "foo",
			Value: "bar",
		},
		{
			Key: "baz",
		},
		{
			Key:   "class",
			Value: "foo",
		},
		{
			Key:   "hello",
			Value: "world",
		},
		{
			Key:   "class",
			Value: "bar",
		},
		{
			Key:   "class",
			Value: "baz",
		},
	})

	out := restoreAndCapture()
	if out != " class=\"foo bar baz\" foo=\"bar\" baz hello=\"world\"" {
		t.Fatalf("printAttrs() printed unexpected string ‘%s’", out)
	}
}

func TestPrintText(t *testing.T) {
	redirectStdout()
	printText("'Hello' <em>there</em> to you & \"world\"!")

	out := restoreAndCapture()
	if out != "&apos;Hello&apos; &lt;em&gt;there&lt;/em&gt; to you &amp; &quot;world&quot;!" {
		t.Fatalf("printText() printed unexpected string ‘%s’", out)
	}
}

func TestPrintChildrenTextOnly(t *testing.T) {
	redirectStdout()
	printChildren([]parser.AstNode{
		{
			Type: parser.Text,
			Text: "   \t\x0A Hello ",
		},
		{
			Type: parser.Text,
			Text: " There ",
		},
		{
			Type: parser.Text,
			Text: " World \x0A\t   ",
		},
	})

	out := restoreAndCapture()
	if out != "   \t\x0A Hello  There  World \x0A\t   " {
		t.Fatalf("printChildren() printed unexpected string ‘%s’", out)
	}
}

func TestPrintChildrenTrimMixed(t *testing.T) {
	redirectStdout()
	children := []parser.AstNode{
		{
			Type: parser.Tagless,
			Children: []parser.AstNode{
				{
					Type: parser.Text,
					Text: " Hello World",
				},
			},
		},
	}
	printChildrenTrim([]parser.AstNode{
		{
			Type:     parser.Normal,
			Text:     "em",
			Children: children,
		},
		{
			Type: parser.Text,
			Text: "Foo Bar  ",
		},
	})

	out := restoreAndCapture()
	if out != "<em> Hello World</em>Foo Bar" {
		t.Fatalf("printChildrenTrim() printed unexpected string ‘%s’", out)
	}
}

func TestPrintChildrenTrimTextOnly(t *testing.T) {
	redirectStdout()
	printChildrenTrim([]parser.AstNode{
		{
			Type: parser.Text,
			Text: "   \t\x0A Hello ",
		},
		{
			Type: parser.Text,
			Text: " There ",
		},
		{
			Type: parser.Text,
			Text: " World \x0A\t   ",
		},
	})

	out := restoreAndCapture()
	if out != "Hello  There  World" {
		t.Fatalf("printChildrenTrim() printed unexpected string ‘%s’", out)
	}
}

func TestTrimLeftSpaces(t *testing.T) {
	sx := "   \t \x0AHello World\x0A \t   "
	sy := "Hello World\x0A \t   "
	if sz := trimLeftSpaces(sx); sz != sy {
		t.Fatalf("trimLeftSpaces() returned ‘%s’", sy)
	}
}

func TestTrimRightSpaces(t *testing.T) {
	sx := "   \t \x0AHello World\x0A \t   "
	sy := "   \t \x0AHello World"
	if sz := trimRightSpaces(sx); sz != sy {
		t.Fatalf("trimRightSpaces() returned ‘%s’", sy)
	}
}