-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext_test.go
More file actions
637 lines (467 loc) · 14 KB
/
context_test.go
File metadata and controls
637 lines (467 loc) · 14 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
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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
package pages
import (
"context"
"errors"
"html/template"
"net/http"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestFromContext(t *testing.T) {
t.Run("Context with Context", func(t *testing.T) {
parent := context.Background()
ctx, _ := NewContext(parent)
c := FromContext(ctx)
assert.NotNil(t, c, "FromContext should return Context")
assert.Same(t, c, FromContext(ctx), "FromContext should return same instance")
})
t.Run("Context without Context", func(t *testing.T) {
ctx := context.Background()
c := FromContext(ctx)
assert.Nil(t, c, "FromContext should return nil when Context not set")
})
}
func TestNewContext(t *testing.T) {
t.Run("Create new context", func(t *testing.T) {
parent := context.Background()
ctx, cancel := NewContext(parent)
c := FromContext(ctx)
require.NotNil(t, c, "NewContext should create Context")
assert.NotNil(t, c.DOM(), "DOM should be initialized")
assert.Equal(t, http.StatusOK, c.Status(), "Status should default to OK")
assert.True(t, c.Guest(), "Guest should default to true")
assert.False(t, c.Debug(), "Debug should default to false")
assert.False(t, c.HasSite(), "HasSite should return false")
assert.False(t, c.HasPage(), "HasPage should return false")
assert.False(t, c.HasError(), "HasError should return false")
assert.False(t, c.HasContent(), "HasContent should return false")
cancel()
c2 := FromContext(ctx)
assert.NotNil(t, c2, "Context should still exist after cancel")
assert.Same(t, c, c2, "Should be same instance")
})
t.Run("Cancel cleans up context", func(t *testing.T) {
parent := context.Background()
ctx, cancel := NewContext(parent)
c := FromContext(ctx)
c.SetDebug(true)
c.SetGuest(false)
c.SetStatus(http.StatusNotFound)
cancel()
assert.False(t, c.Debug(), "Debug should be reset")
assert.True(t, c.Guest(), "Guest should be reset")
assert.Equal(t, http.StatusOK, c.Status(), "Status should be reset")
})
t.Run("Pool reuse", func(t *testing.T) {
ctx1, cancel1 := NewContext(context.Background())
c1 := FromContext(ctx1)
c1.SetDebug(true)
cancel1()
ctx2, cancel2 := NewContext(context.Background())
c2 := FromContext(ctx2)
assert.False(t, c2.Debug(), "Pooled context should be reset")
cancel2()
})
}
func TestContext_Reset(t *testing.T) {
t.Run("Reset context with values", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetDebug(true)
c.SetGuest(false)
c.SetStatus(http.StatusNotFound)
c.SetContent("<div>test</div>")
c.SetSite(NewSite())
c.SetPage(NewPage())
c.SetError(errors.New("test error"))
c.DOM().HTML.Attr.Add("lang", "en")
c.Reset()
assert.False(t, c.Debug(), "Debug should be false after reset")
assert.True(t, c.Guest(), "Guest should be true after reset")
assert.Equal(t, http.StatusOK, c.Status(), "Status should be OK after reset")
assert.False(t, c.HasSite(), "Site should be nil after reset")
assert.False(t, c.HasPage(), "Page should be nil after reset")
assert.False(t, c.HasError(), "Error should be nil after reset")
assert.False(t, c.HasContent(), "Content should be empty after reset")
assert.Equal(t, "", c.DOM().HTML.Attr.String(), "DOM should be reset")
})
t.Run("Reset new context", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.Reset()
assert.Equal(t, http.StatusOK, c.Status(), "Status should be OK")
assert.True(t, c.Guest(), "Guest should be true")
assert.False(t, c.Debug(), "Debug should be false")
})
}
func TestContext_DOM(t *testing.T) {
t.Run("Lazy initialization", func(t *testing.T) {
c := new(Context)
assert.Nil(t, c.dom, "DOM should be nil initially")
dom := c.DOM()
assert.NotNil(t, dom, "DOM should be created on first access")
assert.Same(t, dom, c.DOM(), "Should return same instance")
})
t.Run("Returns existing DOM", func(t *testing.T) {
c := new(Context)
c.dom = new(DOM)
c.DOM().HTML.Attr.Add("lang", "en")
dom := c.DOM()
assert.Equal(t, ` lang="en"`, dom.HTML.Attr.String())
})
}
func TestContext_Site(t *testing.T) {
t.Run("Get site when set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
site := NewSite()
c.SetSite(site)
assert.Equal(t, site, c.Site())
})
t.Run("Get site when not set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
assert.Nil(t, c.Site())
})
}
func TestContext_SetSite(t *testing.T) {
t.Run("Set site with value", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
site := NewSite()
c.SetSite(site)
assert.Equal(t, site, c.Site())
assert.True(t, c.HasSite())
})
t.Run("Set site to nil", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetSite(NewSite())
c.SetSite(nil)
assert.Nil(t, c.Site())
assert.False(t, c.HasSite())
})
}
func TestContext_HasSite(t *testing.T) {
t.Run("Has site when set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetSite(NewSite())
assert.True(t, c.HasSite())
})
t.Run("No site when not set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
assert.False(t, c.HasSite())
})
t.Run("No site after nil set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetSite(NewSite())
c.SetSite(nil)
assert.False(t, c.HasSite())
})
}
func TestContext_Page(t *testing.T) {
t.Run("Get page when set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
page := NewPage()
c.SetPage(page)
assert.Equal(t, page, c.Page())
})
t.Run("Get page when not set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
assert.Nil(t, c.Page())
})
}
func TestContext_SetPage(t *testing.T) {
t.Run("Set page with site already set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
site := NewSite()
site.ID = "site1"
c.SetSite(site)
page := NewPage()
c.SetPage(page)
assert.Equal(t, page, c.Page())
assert.Equal(t, site, page.Site)
assert.Equal(t, ID("site1"), page.SiteID)
})
t.Run("Set page without site set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
page := NewPage()
page.Name = "Test Page"
page.Site = NewSite()
c.SetPage(page)
assert.Equal(t, page, c.Page())
assert.NotNil(t, page.Site)
})
t.Run("Set page with site and page.Site is nil", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
site := NewSite()
site.ID = "site1"
c.SetSite(site)
page := NewPage()
page.Name = "Test Page"
page.Site = nil
c.SetPage(page)
assert.Equal(t, site, page.Site)
assert.Equal(t, ID("site1"), page.SiteID)
})
t.Run("Set page to nil", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetPage(NewPage())
c.SetPage(nil)
assert.Nil(t, c.Page())
assert.False(t, c.HasPage())
})
}
func TestContext_HasPage(t *testing.T) {
t.Run("Has page when set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetPage(NewPage())
assert.True(t, c.HasPage())
})
t.Run("No page when not set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
assert.False(t, c.HasPage())
})
t.Run("No page after nil set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetPage(NewPage())
c.SetPage(nil)
assert.False(t, c.HasPage())
})
}
func TestContext_Error(t *testing.T) {
t.Run("Get error when set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
err := errors.New("test error")
c.SetError(err)
assert.Equal(t, err, c.Error())
})
t.Run("Get error when not set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
assert.Nil(t, c.Error())
})
}
func TestContext_SetError(t *testing.T) {
t.Run("Set error", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
err := errors.New("test error")
c.SetError(err)
assert.Equal(t, err, c.Error())
assert.True(t, c.HasError())
})
t.Run("Set error to nil", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetError(errors.New("test error"))
c.SetError(nil)
assert.Nil(t, c.Error())
assert.False(t, c.HasError())
})
}
func TestContext_HasError(t *testing.T) {
t.Run("Has error when set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetError(errors.New("test"))
assert.True(t, c.HasError())
})
t.Run("No error when not set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
assert.False(t, c.HasError())
})
t.Run("No error after nil set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetError(errors.New("test"))
c.SetError(nil)
assert.False(t, c.HasError())
})
}
func TestContext_Debug(t *testing.T) {
t.Run("Debug default", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
assert.False(t, c.Debug())
})
t.Run("Debug set to true", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetDebug(true)
assert.True(t, c.Debug())
})
t.Run("Debug set to false", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetDebug(true)
c.SetDebug(false)
assert.False(t, c.Debug())
})
}
func TestContext_SetDebug(t *testing.T) {
t.Run("Set debug to true", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetDebug(true)
assert.True(t, c.Debug())
})
t.Run("Set debug to false", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetDebug(false)
assert.False(t, c.Debug())
})
}
func TestContext_Guest(t *testing.T) {
t.Run("Guest default", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
assert.True(t, c.Guest())
})
t.Run("Guest set to false", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetGuest(false)
assert.False(t, c.Guest())
})
t.Run("Guest set to true", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetGuest(true)
assert.True(t, c.Guest())
})
}
func TestContext_SetGuest(t *testing.T) {
t.Run("Set guest to true", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetGuest(true)
assert.True(t, c.Guest())
})
t.Run("Set guest to false", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetGuest(false)
assert.False(t, c.Guest())
})
}
func TestContext_Status(t *testing.T) {
t.Run("Status default", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
assert.Equal(t, http.StatusOK, c.Status())
})
t.Run("Status when set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetStatus(http.StatusNotFound)
assert.Equal(t, http.StatusNotFound, c.Status())
})
t.Run("Status zero returns OK", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetStatus(0)
assert.Equal(t, http.StatusOK, c.Status())
})
}
func TestContext_SetStatus(t *testing.T) {
t.Run("Set code", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetStatus(http.StatusNotFound)
assert.Equal(t, http.StatusNotFound, c.Status())
})
t.Run("Set code to zero", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetStatus(0)
assert.Equal(t, http.StatusOK, c.Status())
})
}
func TestContext_Content(t *testing.T) {
t.Run("Content default", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
assert.Equal(t, template.HTML(""), c.Content())
})
t.Run("Content when set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
content := template.HTML("<div>test</div>")
c.SetContent(content)
assert.Equal(t, content, c.Content())
})
}
func TestContext_SetContent(t *testing.T) {
t.Run("Set content", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
content := template.HTML("<div>test</div>")
c.SetContent(content)
assert.Equal(t, content, c.Content())
})
t.Run("Set content to empty", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetContent("<div>test</div>")
c.SetContent("")
assert.Equal(t, template.HTML(""), c.Content())
})
}
func TestContext_HasContent(t *testing.T) {
t.Run("Has content when set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetContent("content")
assert.True(t, c.HasContent())
})
t.Run("No content when not set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
assert.False(t, c.HasContent())
})
t.Run("No content after empty set", func(t *testing.T) {
ctx, _ := NewContext(context.Background())
c := FromContext(ctx)
c.SetContent("content")
c.SetContent("")
assert.False(t, c.HasContent())
})
}
func TestContext_PoolConcurrency(t *testing.T) {
t.Run("Concurrent context creation", func(t *testing.T) {
done := make(chan bool, 100)
for range 100 {
go func() {
ctx, cancel := NewContext(context.Background())
c := FromContext(ctx)
c.SetDebug(true)
cancel()
done <- true
}()
}
for range 100 {
<-done
}
ctx, cancel := NewContext(context.Background())
c := FromContext(ctx)
assert.False(t, c.Debug(), "Pooled context should be reset")
cancel()
})
}