generated from snivilised/astrolib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
worker-pool-task_test.go
159 lines (137 loc) Β· 3.93 KB
/
worker-pool-task_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
package pants_test
import (
"context"
"fmt"
"os"
"sync"
"time"
. "github.com/onsi/ginkgo/v2" //nolint:revive // ginkgo ok
. "github.com/onsi/gomega" //nolint:revive // gomega ok
"github.com/snivilised/li18ngo"
"github.com/snivilised/pants"
"github.com/snivilised/pants/internal/lab"
"github.com/snivilised/pants/locale"
)
var _ = Describe("WorkerPoolTask", Ordered, func() {
var (
repo string
l10nPath string
testTranslationFile li18ngo.TranslationFiles
)
BeforeAll(func() {
repo = lab.Repo("")
l10nPath = lab.Path(repo, "test/data/l10n")
_, err := os.Stat(l10nPath)
Expect(err).To(Succeed(),
fmt.Sprintf("l10n '%v' path does not exist", l10nPath),
)
testTranslationFile = li18ngo.TranslationFiles{
li18ngo.Li18ngoSourceID: li18ngo.TranslationSource{Name: "test"},
}
})
BeforeEach(func() {
if err := li18ngo.Use(func(o *li18ngo.UseOptions) {
o.Tag = li18ngo.DefaultLanguage
o.From.Sources = testTranslationFile
}); err != nil {
Fail(err.Error())
}
})
Context("ants", func() {
When("NonBlocking", func() {
It("should: not fail", func(specCtx SpecContext) {
// TestNonblockingSubmit
var wg sync.WaitGroup
ctx, cancel := context.WithCancel(specCtx)
defer cancel()
pool, err := pants.NewTaskPool[int, int](ctx, &wg,
pants.WithSize(PoolSize),
pants.WithNonblocking(true),
)
defer pool.Release(ctx)
Expect(err).To(Succeed())
Expect(pool).NotTo(BeNil())
for i := 0; i < PoolSize-1; i++ {
Expect(pool.Post(ctx, longRunningFunc)).To(Succeed(),
"nonblocking submit when pool is not full shouldn't return error",
)
}
firstCh := make(chan struct{})
secondCh := make(chan struct{})
fn := func() {
<-firstCh
close(secondCh)
}
// pool is full now.
Expect(pool.Post(ctx, fn)).To(Succeed(),
"nonblocking submit when pool is not full shouldn't return error",
)
Expect(pool.Post(ctx, demoFunc)).To(
MatchError(locale.ErrPoolOverload.Error()),
"nonblocking submit when pool is full should get an ErrPoolOverload",
)
// interrupt fn to get an available worker
close(firstCh)
<-secondCh
Expect(pool.Post(ctx, demoFunc)).To(Succeed(),
"nonblocking submit when pool is not full shouldn't return error",
)
})
})
When("MaxNonBlocking", func() {
It("should: not fail", func(specCtx SpecContext) {
// TestMaxBlockingSubmit
var wg sync.WaitGroup
ctx, cancel := context.WithCancel(specCtx)
defer cancel()
pool, err := pants.NewTaskPool[int, int](ctx, &wg,
pants.WithSize(PoolSize),
pants.WithMaxBlockingTasks(1),
)
Expect(err).To(Succeed(), "create TimingPool failed")
defer pool.Release(ctx)
By("πΎ POOL-CREATED\n")
for i := 0; i < PoolSize-1; i++ {
Expect(pool.Post(ctx, longRunningFunc)).To(Succeed(),
"submit when pool is not full shouldn't return error",
)
}
ch := make(chan struct{})
fn := func() {
<-ch
}
// pool is full now.
Expect(pool.Post(ctx, fn)).To(Succeed(),
"submit when pool is not full shouldn't return error",
)
By("πΎ WAIT-GROUP ADD(worker-pool-task)\n")
wg.Add(1)
errCh := make(chan error, 1)
go func() {
// should be blocked. blocking num == 1
if err := pool.Post(ctx, demoFunc); err != nil {
errCh <- err
}
By("πΎ Producer complete\n")
wg.Done()
}()
By("πΎ Main sleeping...\n")
time.Sleep(1 * time.Second)
// already reached max blocking limit
Expect(pool.Post(ctx, demoFunc)).To(
MatchError(locale.ErrPoolOverload.Error()),
"blocking submit when pool reach max blocking submit should return ErrPoolOverload",
)
By("πΎ CLOSING\n")
// interrupt fn to make blocking submit successful.
close(ch)
wg.Wait()
select {
case <-errCh:
Fail("blocking submit when pool is full should not return error")
default:
}
})
})
})
})