-
Notifications
You must be signed in to change notification settings - Fork 54
/
sessioncontext_test.go
116 lines (109 loc) · 2.36 KB
/
sessioncontext_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
package oonimkall
import (
"sync/atomic"
"testing"
"time"
)
func TestClampTimeout(t *testing.T) {
if clampTimeout(-1, maxTimeout) != -1 {
t.Fatal("unexpected result here")
}
if clampTimeout(0, maxTimeout) != 0 {
t.Fatal("unexpected result here")
}
if clampTimeout(60, maxTimeout) != 60 {
t.Fatal("unexpected result here")
}
if clampTimeout(maxTimeout, maxTimeout) != maxTimeout {
t.Fatal("unexpected result here")
}
if clampTimeout(maxTimeout+1, maxTimeout) != maxTimeout {
t.Fatal("unexpected result here")
}
}
func TestNewContextWithZeroTimeout(t *testing.T) {
if testing.Short() {
t.Skip("skip test in short mode")
}
here := &atomic.Int64{}
ctx, cancel := newContext(0)
defer cancel()
go func() {
<-time.After(250 * time.Millisecond)
here.Add(1)
cancel()
}()
<-ctx.Done()
if here.Load() != 1 {
t.Fatal("context timeout not working as intended")
}
}
func TestNewContextWithNegativeTimeout(t *testing.T) {
if testing.Short() {
t.Skip("skip test in short mode")
}
here := &atomic.Int64{}
ctx, cancel := newContext(-1)
defer cancel()
go func() {
<-time.After(250 * time.Millisecond)
here.Add(1)
cancel()
}()
<-ctx.Done()
if here.Load() != 1 {
t.Fatal("context timeout not working as intended")
}
}
func TestNewContextWithHugeTimeout(t *testing.T) {
if testing.Short() {
t.Skip("skip test in short mode")
}
here := &atomic.Int64{}
ctx, cancel := newContext(maxTimeout + 1)
defer cancel()
go func() {
<-time.After(250 * time.Millisecond)
here.Add(1)
cancel()
}()
<-ctx.Done()
if here.Load() != 1 {
t.Fatal("context timeout not working as intended")
}
}
func TestNewContextWithReasonableTimeout(t *testing.T) {
if testing.Short() {
t.Skip("skip test in short mode")
}
here := &atomic.Int64{}
ctx, cancel := newContext(1)
defer cancel()
go func() {
<-time.After(5 * time.Second)
here.Add(1)
cancel()
}()
<-ctx.Done()
if here.Load() != 0 {
t.Fatal("context timeout not working as intended")
}
}
func TestNewContextWithArtificiallyLowMaxTimeout(t *testing.T) {
if testing.Short() {
t.Skip("skip test in short mode")
}
here := &atomic.Int64{}
const maxTimeout = 2
ctx, cancel := newContextEx(maxTimeout+1, maxTimeout)
defer cancel()
go func() {
<-time.After(30 * time.Second)
here.Add(1)
cancel()
}()
<-ctx.Done()
if here.Load() != 0 {
t.Fatal("context timeout not working as intended")
}
}