generated from snivilised/astrolib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
worker-pool-func_test.go
169 lines (139 loc) Β· 3.93 KB
/
worker-pool-func_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
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("WorkerPoolFunc", 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) {
lab.WithTestContext(specCtx, func(ctx context.Context, _ context.CancelFunc) {
// TestNonblockingSubmit
var wg sync.WaitGroup
pool, err := pants.NewFuncPool[int, int](ctx, demoPoolFunc, &wg,
pants.WithSize(AntsSize),
)
defer pool.Release(ctx)
for i := 0; i < n; i++ {
_ = pool.Post(ctx, Param)
}
wg.Wait()
GinkgoWriter.Printf("pool with func, no of running workers:%d\n",
pool.Running(),
)
ShowMemStats()
Expect(err).To(Succeed())
})
})
Context("cancelled", func() {
It("should: not fail", func(specCtx SpecContext) {
lab.WithTestContext(specCtx, func(ctx context.Context, cancel context.CancelFunc) {
// TestNonblockingSubmit
var wg sync.WaitGroup
pool, err := pants.NewFuncPool[int, int](ctx, demoPoolFunc, &wg,
pants.WithSize(AntsSize),
)
defer pool.Release(ctx)
for i := 0; i < n; i++ {
_ = pool.Post(ctx, Param)
if i > 10 {
cancel()
break
}
}
wg.Wait()
GinkgoWriter.Printf("pool with func, no of running workers:%d\n",
pool.Running(),
)
ShowMemStats()
Expect(err).To(Succeed())
})
})
})
})
When("MaxNonBlocking", func() {
It("should: not fail", func(specCtx SpecContext) {
// TestMaxBlockingSubmitWithFunc
var wg sync.WaitGroup
ctx, cancel := context.WithCancel(specCtx)
defer cancel()
pool, err := pants.NewFuncPool[int, int](ctx, longRunningPoolFunc, &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, Param)).To(Succeed(),
"submit when pool is not full shouldn't return error",
)
}
ch := make(chan struct{})
// pool is full now.
Expect(pool.Post(ctx, ch)).To(Succeed(),
"submit when pool is not full shouldn't return error",
)
By("πΎ WAIT-GROUP ADD(worker-pool-func)\n")
wg.Add(1)
errCh := make(chan error, 1)
go func() {
// should be blocked. blocking num == 1
if err := pool.Post(ctx, Param); err != nil {
errCh <- err
}
By("πΎ Producer complete\n")
wg.Done()
}()
time.Sleep(1 * time.Second)
// already reached max blocking limit
Expect(pool.Post(ctx, Param)).To(
MatchError(locale.ErrPoolOverload.Error()),
"blocking submit when pool reach max blocking submit should return ErrPoolOverload",
)
By("πΎ CLOSING\n")
// interrupt one func to make blocking submit successful.
close(ch)
wg.Wait()
select {
case <-errCh:
Fail("blocking submit when pool is full should not return error")
default:
}
})
})
})
})