forked from myitcv/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen_react_coreGen_test.go
471 lines (351 loc) · 12.2 KB
/
gen_react_coreGen_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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
// +build js
// Code generated by coreGen. DO NOT EDIT.
package react_test
import (
"testing"
"honnef.co/go/js/dom"
"myitcv.io/react"
"myitcv.io/react/testutils"
)
func TestAElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.A(&react.AProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLAnchorElement); !ok {
t.Fatal("Failed to find <a> element")
}
}
func TestAbbrElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Abbr(&react.AbbrProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <abbr> element")
}
}
func TestArticleElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Article(&react.ArticleProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <article> element")
}
}
func TestAsideElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Aside(&react.AsideProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <aside> element")
}
}
func TestBElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.B(&react.BProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <b> element")
}
}
func TestBrElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Br(&react.BrProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLBRElement); !ok {
t.Fatal("Failed to find <br> element")
}
}
func TestButtonElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Button(&react.ButtonProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLButtonElement); !ok {
t.Fatal("Failed to find <button> element")
}
}
func TestCodeElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Code(&react.CodeProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <code> element")
}
}
func TestDivElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Div(&react.DivProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLDivElement); !ok {
t.Fatal("Failed to find <div> element")
}
}
func TestEmElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Em(&react.EmProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <em> element")
}
}
func TestFooterElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Footer(&react.FooterProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <footer> element")
}
}
func TestFormElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Form(&react.FormProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLFormElement); !ok {
t.Fatal("Failed to find <form> element")
}
}
func TestH1Elem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.H1(&react.H1Props{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLHeadingElement); !ok {
t.Fatal("Failed to find <h1> element")
}
}
func TestH2Elem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.H2(&react.H2Props{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLHeadingElement); !ok {
t.Fatal("Failed to find <h2> element")
}
}
func TestH3Elem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.H3(&react.H3Props{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLHeadingElement); !ok {
t.Fatal("Failed to find <h3> element")
}
}
func TestH4Elem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.H4(&react.H4Props{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLHeadingElement); !ok {
t.Fatal("Failed to find <h4> element")
}
}
func TestH5Elem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.H5(&react.H5Props{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLHeadingElement); !ok {
t.Fatal("Failed to find <h5> element")
}
}
func TestH6Elem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.H6(&react.H6Props{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLHeadingElement); !ok {
t.Fatal("Failed to find <h6> element")
}
}
func TestHeaderElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Header(&react.HeaderProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <header> element")
}
}
func TestHrElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Hr(&react.HrProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLHRElement); !ok {
t.Fatal("Failed to find <hr> element")
}
}
func TestIElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.I(&react.IProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <i> element")
}
}
func TestIFrameElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.IFrame(&react.IFrameProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLIFrameElement); !ok {
t.Fatal("Failed to find <iframe> element")
}
}
func TestImgElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Img(&react.ImgProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLImageElement); !ok {
t.Fatal("Failed to find <img> element")
}
}
func TestInputElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Input(&react.InputProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLInputElement); !ok {
t.Fatal("Failed to find <input> element")
}
}
func TestLabelElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Label(&react.LabelProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLLabelElement); !ok {
t.Fatal("Failed to find <label> element")
}
}
func TestLiElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Li(&react.LiProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLLIElement); !ok {
t.Fatal("Failed to find <li> element")
}
}
func TestMainElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Main(&react.MainProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <main> element")
}
}
func TestNavElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Nav(&react.NavProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <nav> element")
}
}
func TestOptionElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Option(&react.OptionProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLOptionElement); !ok {
t.Fatal("Failed to find <option> element")
}
}
func TestPElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.P(&react.PProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLParagraphElement); !ok {
t.Fatal("Failed to find <p> element")
}
}
func TestPreElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Pre(&react.PreProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLPreElement); !ok {
t.Fatal("Failed to find <pre> element")
}
}
func TestSelectElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Select(&react.SelectProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLSelectElement); !ok {
t.Fatal("Failed to find <select> element")
}
}
func TestSpanElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Span(&react.SpanProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLSpanElement); !ok {
t.Fatal("Failed to find <span> element")
}
}
func TestStrikeElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Strike(&react.StrikeProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <s> element")
}
}
func TestSupElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Sup(&react.SupProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.BasicHTMLElement); !ok {
t.Fatal("Failed to find <sup> element")
}
}
func TestTableElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Table(&react.TableProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLTableElement); !ok {
t.Fatal("Failed to find <table> element")
}
}
func TestTextAreaElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.TextArea(&react.TextAreaProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLTextAreaElement); !ok {
t.Fatal("Failed to find <textarea> element")
}
}
func TestUlElem(t *testing.T) {
class := "test"
x := testutils.Wrapper(react.Ul(&react.UlProps{ClassName: class}))
cont := testutils.RenderIntoDocument(x)
el := testutils.FindRenderedDOMComponentWithClass(cont, class)
if _, ok := el.(*dom.HTMLUListElement); !ok {
t.Fatal("Failed to find <ul> element")
}
}