-
-
Notifications
You must be signed in to change notification settings - Fork 366
Expand file tree
/
Copy pathruntime_concurrent_test.go
More file actions
239 lines (198 loc) · 5.57 KB
/
Copy pathruntime_concurrent_test.go
File metadata and controls
239 lines (198 loc) · 5.57 KB
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
package templ_test
import (
"bytes"
"context"
"errors"
"strings"
"sync"
"testing"
"github.com/a-h/templ"
)
func TestConcurrentContextThreadSafety(t *testing.T) {
script := templ.ComponentScript{
Name: "concurrentScript",
Function: `function concurrent() {}`,
}
cssClass := templ.ComponentCSSClass{
ID: "concurrentClass",
Class: templ.SafeCSS(".concurrentClass { color: blue; }"),
}
tests := []struct {
name string
render func(ctx context.Context) error
}{
{
name: "concurrent renders are thread-safe for scripts",
render: func(ctx context.Context) error {
var buf bytes.Buffer
return templ.RenderScriptItems(ctx, &buf, script)
},
},
{
name: "concurrent renders are thread-safe for CSS",
render: func(ctx context.Context) error {
var buf bytes.Buffer
return templ.RenderCSSItems(ctx, &buf, cssClass)
},
},
{
name: "concurrent renders are thread-safe for Once handles",
render: func(ctx context.Context) error {
var buf bytes.Buffer
handle := templ.NewOnceHandle()
return handle.Once().Render(ctx, &buf)
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
ctx := templ.InitializeContext(context.Background())
ctx = templ.WithChildren(ctx, templ.Raw("content"))
var wg sync.WaitGroup
errs := make([]error, 10)
for i := range 10 {
wg.Go(func() {
errs[i] = tt.render(ctx)
})
}
wg.Wait()
if err := errors.Join(errs...); err != nil {
t.Errorf("concurrent render failed: %v", err)
}
})
}
}
func TestConcurrentDeduplication(t *testing.T) {
t.Run("scripts are deduplicated across concurrent renders", func(t *testing.T) {
ctx := templ.InitializeContext(context.Background())
script := templ.ComponentScript{
Name: "sharedScript",
Function: `function shared() { console.log("shared"); }`,
}
var wg sync.WaitGroup
outputs := make([]string, 10)
errs := make([]error, 10)
for i := range 10 {
wg.Go(func() {
var buf bytes.Buffer
if err := templ.RenderScriptItems(ctx, &buf, script); err != nil {
errs[i] = err
return
}
outputs[i] = buf.String()
})
}
wg.Wait()
if err := errors.Join(errs...); err != nil {
t.Fatalf("concurrent render failed: %v", err)
}
// Exactly one goroutine should have rendered the script.
var renderedCount int
for _, output := range outputs {
if strings.Contains(output, script.Function) {
renderedCount++
}
}
if renderedCount != 1 {
t.Errorf("expected exactly 1 goroutine to render script, got %d", renderedCount)
}
})
t.Run("CSS classes are deduplicated across concurrent renders", func(t *testing.T) {
ctx := templ.InitializeContext(context.Background())
cssClass := templ.ComponentCSSClass{
ID: "sharedClass",
Class: templ.SafeCSS(".sharedClass { color: red; }"),
}
var wg sync.WaitGroup
outputs := make([]string, 10)
errs := make([]error, 10)
for i := range 10 {
wg.Go(func() {
var buf bytes.Buffer
if err := templ.RenderCSSItems(ctx, &buf, cssClass); err != nil {
errs[i] = err
return
}
outputs[i] = buf.String()
})
}
wg.Wait()
if err := errors.Join(errs...); err != nil {
t.Fatalf("concurrent render failed: %v", err)
}
// Exactly one goroutine should have rendered the CSS.
var renderedCount int
for _, output := range outputs {
if strings.Contains(output, string(cssClass.Class)) {
renderedCount++
}
}
if renderedCount != 1 {
t.Errorf("expected exactly 1 goroutine to render CSS, got %d", renderedCount)
}
})
t.Run("Once handles are deduplicated across concurrent renders", func(t *testing.T) {
ctx := templ.InitializeContext(context.Background())
ctx = templ.WithChildren(ctx, templ.Raw("once content"))
handle := templ.NewOnceHandle()
onceComponent := handle.Once()
var wg sync.WaitGroup
outputs := make([]string, 10)
errs := make([]error, 10)
for i := range 10 {
wg.Go(func() {
var buf bytes.Buffer
if err := onceComponent.Render(ctx, &buf); err != nil {
errs[i] = err
return
}
outputs[i] = buf.String()
})
}
wg.Wait()
if err := errors.Join(errs...); err != nil {
t.Fatalf("concurrent render failed: %v", err)
}
// Exactly one goroutine should have rendered the content.
var renderedCount int
for _, output := range outputs {
if output == "once content" {
renderedCount++
}
}
if renderedCount != 1 {
t.Errorf("expected exactly 1 goroutine to render Once content, got %d", renderedCount)
}
})
}
func TestSequentialDeduplication(t *testing.T) {
t.Run("component scripts are not rendered more than once in sequence", func(t *testing.T) {
ctx := templ.InitializeContext(context.Background())
script := templ.ComponentScript{
Name: "testScript",
Function: `function test() {}`,
}
var buf bytes.Buffer
if err := templ.RenderScriptItems(ctx, &buf, script); err != nil {
t.Fatalf("first render failed: %v", err)
}
if !strings.Contains(buf.String(), script.Function) {
t.Errorf("first render should output script")
}
buf.Reset()
if err := templ.RenderScriptItems(ctx, &buf, script); err != nil {
t.Fatalf("second render failed: %v", err)
}
if buf.String() != "" {
t.Errorf("second render should not output script, got: %q", buf.String())
}
})
t.Run("nonce is preserved in context", func(t *testing.T) {
expectedNonce := "test-nonce-123"
ctx := templ.WithNonce(context.Background(), expectedNonce)
actualNonce := templ.GetNonce(ctx)
if actualNonce != expectedNonce {
t.Errorf("expected nonce %q, got %q", expectedNonce, actualNonce)
}
})
}