2 回答
TA贡献1884条经验 获得超4个赞
据我了解,您愿意限制同时运行的例程数量并验证它是否正常工作。我建议编写一个函数,它将一个例程作为参数并使用模拟例程来测试它。
在下面的示例中,spawn函数运行fn例程count次数,但不超过limit例程并发。我将它包装到 main 函数中以在操场上运行它,但您可以对您的测试方法使用相同的方法。
package main
import (
"fmt"
"sync"
"time"
)
func spawn(fn func(), count int, limit int) {
limiter := make(chan bool, limit)
spawned := func() {
defer func() { <-limiter }()
fn()
}
for i := 0; i < count; i++ {
limiter <- true
go spawned()
}
}
func main() {
count := 10
limit := 3
var wg sync.WaitGroup
wg.Add(count)
concurrentCount := 0
failed := false
var mock = func() {
defer func() {
wg.Done()
concurrentCount--
}()
concurrentCount++
if concurrentCount > limit {
failed = true // test could be failed here without waiting all routines finish
}
time.Sleep(100)
}
spawn(mock, count, limit)
wg.Wait()
if failed {
fmt.Println("Test failed")
} else {
fmt.Println("Test passed")
}
}
TA贡献1842条经验 获得超12个赞
- 2 回答
- 0 关注
- 232 浏览
添加回答
举报