-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcyclic-awaitable_test.go
102 lines (93 loc) · 1.69 KB
/
cyclic-awaitable_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
/*
© 2023-present Harald Rudell <haraldrudell@proton.me> (https://haraldrudell.github.io/haraldrudell/)
All rights reserved
*/
package parl
import (
"testing"
)
func TestCyclicAwaitable(t *testing.T) {
var ch, ch2 AwaitableCh
var isClosed, didClose, didOpen bool
// Ch() Close() IsClosed() Open()
var cyclicAwaitable CyclicAwaitable
var reset = func() {
cyclicAwaitable = CyclicAwaitable{}
}
// Ch should return open channel
reset()
ch = cyclicAwaitable.Ch()
if ch == nil {
t.Errorf("ch nil")
}
select {
case <-ch:
isClosed = true
default:
isClosed = false
}
if isClosed {
t.Errorf("ch closed")
}
// IsClosed should be false
reset()
isClosed = cyclicAwaitable.IsClosed()
if isClosed {
t.Errorf("IsClosed() true")
}
// Open should open
reset()
didClose = cyclicAwaitable.Close()
_ = didClose
didOpen, ch = cyclicAwaitable.Open()
if !didOpen {
t.Errorf("didOpen false")
}
if ch == nil {
t.Errorf("ch nil")
}
select {
case <-ch:
isClosed = true
default:
isClosed = false
}
if isClosed {
t.Errorf("ch not open")
}
isClosed = cyclicAwaitable.IsClosed()
if isClosed {
t.Errorf("IsClosed() true")
}
didOpen, ch2 = cyclicAwaitable.Open()
if didOpen {
t.Errorf("didOpen true")
}
if ch2 != ch {
t.Errorf("not same channel")
}
// Close should close
reset()
didClose = cyclicAwaitable.Close()
if !didClose {
t.Errorf("didClose false")
}
isClosed = cyclicAwaitable.IsClosed()
if !isClosed {
t.Errorf("IsClosed() false")
}
ch = cyclicAwaitable.Ch()
select {
case <-ch:
isClosed = true
default:
isClosed = false
}
if !isClosed {
t.Errorf("ch not closed")
}
didClose = cyclicAwaitable.Close()
if didClose {
t.Errorf("didClose true")
}
}