-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmjml_test.go
259 lines (188 loc) · 5.05 KB
/
mjml_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
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
259
package mjml
import (
"context"
"crypto/rand"
"fmt"
"math/big"
"os"
"sync"
"testing"
"time"
)
func TestToHTML(t *testing.T) {
files := []string{
"black-friday",
"one-page",
"reactivation-email",
"real-estate",
"recast",
"receipt-email",
}
for _, file := range files {
contents, err := os.ReadFile("testdata/" + file + ".mjml")
if err != nil {
t.Fatalf("Error reading file: %s", file)
}
result, err := ToHTML(context.Background(), string(contents), WithValidationLevel(Skip)) // Skip validation because the templates are not fully mjml4-compliant
if err != nil {
t.Errorf("Error converting mjml file (%s) to html: %s", file, err)
}
expected, err := os.ReadFile("testdata/" + file + ".html")
if err != nil {
t.Fatalf("Error reading expected html: %s", err)
}
if result != string(expected) {
t.Errorf("Compiled HTML for %s does not match expected html", file)
}
}
}
func TestConcurrency(t *testing.T) {
files := []string{
"black-friday",
"one-page",
"reactivation-email",
"real-estate",
"recast",
"receipt-email",
}
type testCase struct {
file string
input string
expected string
}
var testCases []testCase
for _, file := range files {
input, err := os.ReadFile("testdata/" + file + ".mjml")
if err != nil {
t.Fatalf("Error reading input test data (%s.mjml): %s", file, err)
}
expected, err := os.ReadFile("testdata/" + file + ".html")
if err != nil {
t.Fatalf("Error reading expected test data (%s.html): %s", file, err)
}
testCases = append(testCases, testCase{
file: file,
input: string(input),
expected: string(expected),
})
}
numTestCases := big.NewInt(int64(len(testCases)))
var wg sync.WaitGroup
numGoRoutines := 200
errs := make(chan error, numGoRoutines)
for i := 0; i < numGoRoutines; i++ {
wg.Add(1)
go func(run int) {
defer wg.Done()
testCaseIndex, err := rand.Int(rand.Reader, numTestCases)
if err != nil {
errs <- fmt.Errorf("error selecting test case for run %d: %w", run, err)
return
}
testCase := testCases[testCaseIndex.Int64()]
result, err := ToHTML(context.Background(), testCase.input, WithValidationLevel(Skip))
if err != nil {
errs <- fmt.Errorf("error converting input to HTML for run %d using %s.mjml as input: %w", run, testCase.file, err)
return
}
if result != testCase.expected {
errs <- fmt.Errorf("html result does not match expected result for run %d", run)
return
}
}(i)
}
wg.Wait()
close(errs)
for err := range errs {
if err != nil {
t.Errorf("Error running ToHTML concurrently: %s", err.Error())
}
}
}
func TestSetMaxWorkers(t *testing.T) {
files := []string{
"black-friday",
"one-page",
"reactivation-email",
"real-estate",
"recast",
"receipt-email",
}
type testCase struct {
file string
input string
expected string
}
var testCases []testCase
for _, file := range files {
input, err := os.ReadFile("testdata/" + file + ".mjml")
if err != nil {
t.Fatalf("Error reading input test data (%s.mjml): %s", file, err)
}
expected, err := os.ReadFile("testdata/" + file + ".html")
if err != nil {
t.Fatalf("Error reading expected test data (%s.html): %s", file, err)
}
testCases = append(testCases, testCase{
file: file,
input: string(input),
expected: string(expected),
})
}
numTestCases := big.NewInt(int64(len(testCases)))
var wg sync.WaitGroup
numGoRoutines := 200
errs := make(chan error, numGoRoutines)
for i := 0; i < numGoRoutines; i++ {
wg.Add(1)
go func(run int) {
defer wg.Done()
testCaseIndex, err := rand.Int(rand.Reader, numTestCases)
if err != nil {
errs <- fmt.Errorf("error selecting test case for run %d: %w", run, err)
return
}
testCase := testCases[testCaseIndex.Int64()]
result, err := ToHTML(context.Background(), testCase.input, WithValidationLevel(Skip))
if err != nil {
errs <- fmt.Errorf("error converting input to HTML for run %d using %s.mjml as input: %w", run, testCase.file, err)
return
}
if result != testCase.expected {
errs <- fmt.Errorf("html result does not match expected result for run %d", run)
return
}
}(i)
}
// SetMaxWorkers randomly
for i := 0; i < 10; i++ {
wg.Add(1)
delay, err := rand.Int(rand.Reader, big.NewInt(int64(50)))
if err != nil {
t.Fatalf("Error generating random delay: %s", err)
}
duration := time.Duration(delay.Int64()) * time.Millisecond
time.Sleep(duration)
go func() {
defer wg.Done()
randWorkers, err := rand.Int(rand.Reader, big.NewInt(int64(199)))
if err != nil {
errs <- fmt.Errorf("error generating random number of workers: %w", err)
return
}
numWorkers := randWorkers.Int64() + 1 // Generated number needs to be between 1 and 200
err = SetMaxWorkers(int32(numWorkers))
if err != nil {
errs <- fmt.Errorf("error setting max workers: %w", err)
return
}
}()
}
wg.Wait()
close(errs)
for err := range errs {
if err != nil {
t.Errorf("Error running ToHTML concurrently: %s", err.Error())
}
}
}