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
|
package formatter
import (
"testing"
)
func TestFormatOrphanCommentGroups(t *testing.T) {
input := `package main
templ A() {
<div></div>
// orphan one
// orphan two
}
`
want := `package main
templ A() {
// orphan one
// orphan two
<div></div>
}
`
fmtr := newTestFormatter()
got, err := fmtr.Format("test.gsx", input)
if err != nil {
t.Fatalf("Format() error = %v", err)
}
if got != want {
t.Errorf("Format() mismatch:\ngot:\n%s\nwant:\n%s", got, want)
}
again, err := fmtr.Format("test.gsx", got)
if err != nil {
t.Fatalf("Format() second pass error = %v", err)
}
if again != got {
t.Errorf("Format() not idempotent:\nfirst:\n%s\nsecond:\n%s", got, again)
}
}
func TestPrintCommentGroupNil(t *testing.T) {
p := newPrinter("\t")
p.printCommentGroup(nil)
if got := p.buf.String(); got != "" {
t.Errorf("printCommentGroup(nil) wrote %q, want empty", got)
}
}
func TestEscapeStringCarriageReturn(t *testing.T) {
got := escapeString("a\rb")
if want := `a\rb`; got != want {
t.Errorf("escapeString(%q) = %q, want %q", "a\rb", got, want)
}
}
func TestFormatBlockCommentEdgeCases(t *testing.T) {
type tc struct {
in string
want string
}
tests := map[string]tc{
"not a block comment passes through": {
in: "// line comment",
want: "// line comment",
},
"missing terminator passes through": {
in: "/* unterminated",
want: "/* unterminated",
},
"empty block comment": {
in: "/**/",
want: "/* */",
},
"single line normalized": {
in: "/*text*/",
want: "/* text */",
},
"multi line": {
in: "/* one\n two */",
want: "/*\none\ntwo\n*/",
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
got := formatBlockComment(tt.in)
if got != tt.want {
t.Errorf("formatBlockComment(%q) = %q, want %q", tt.in, got, tt.want)
}
})
}
}
func TestFormatLineCommentEdgeCases(t *testing.T) {
type tc struct {
in string
want string
}
tests := map[string]tc{
"not a line comment passes through": {
in: "/* block */",
want: "/* block */",
},
"empty content": {
in: "//",
want: "//",
},
"already spaced": {
in: "// hi",
want: "// hi",
},
"tab after slashes kept": {
in: "//\thi",
want: "//\thi",
},
"space inserted": {
in: "//hi",
want: "// hi",
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
got := formatLineComment(tt.in)
if got != tt.want {
t.Errorf("formatLineComment(%q) = %q, want %q", tt.in, got, tt.want)
}
})
}
}
func TestFormatInlineBlockComments(t *testing.T) {
type tc struct {
in string
want string
}
tests := map[string]tc{
"plain code unchanged": {
in: `fmt.Sprintf("%d", n)`,
want: `fmt.Sprintf("%d", n)`,
},
"block comment normalized": {
in: `fmt.Sprintf("> %s", /*item*/ item)`,
want: `fmt.Sprintf("> %s", /* item */ item)`,
},
"comment-like text inside string skipped": {
in: `fn("/*not a comment*/")`,
want: `fn("/*not a comment*/")`,
},
"escaped quote inside string": {
in: `fn("a\"b /*x*/")`,
want: `fn("a\"b /*x*/")`,
},
"raw string skipped": {
in: "fn(`/*raw*/`)",
want: "fn(`/*raw*/`)",
},
"unterminated raw string": {
in: "fn(`oops",
want: "fn(`oops",
},
"unterminated block comment": {
in: "x /*dangling",
want: "x /*dangling",
},
}
for name, tt := range tests {
t.Run(name, func(t *testing.T) {
got := formatInlineBlockComments(tt.in)
if got != tt.want {
t.Errorf("formatInlineBlockComments(%q) = %q, want %q", tt.in, got, tt.want)
}
})
}
}
|