Commit 776193b7 authored by LaurenceLiZhixin's avatar LaurenceLiZhixin

fix: ut

parent 8a95129e
...@@ -36,6 +36,7 @@ func TestConnectionPool(t *testing.T) { ...@@ -36,6 +36,7 @@ func TestConnectionPool(t *testing.T) {
NumQueues: runtime.NumCPU(), NumQueues: runtime.NumCPU(),
QueueSize: 10, QueueSize: 10,
Logger: nil, Logger: nil,
Enable: true,
}) })
var count int64 var count int64
wg := new(sync.WaitGroup) wg := new(sync.WaitGroup)
...@@ -60,6 +61,7 @@ func TestConnectionPool(t *testing.T) { ...@@ -60,6 +61,7 @@ func TestConnectionPool(t *testing.T) {
NumQueues: 1, NumQueues: 1,
QueueSize: 0, QueueSize: 0,
Logger: nil, Logger: nil,
Enable: true,
}) })
wg := new(sync.WaitGroup) wg := new(sync.WaitGroup)
...@@ -85,6 +87,7 @@ func TestConnectionPool(t *testing.T) { ...@@ -85,6 +87,7 @@ func TestConnectionPool(t *testing.T) {
NumWorkers: runtime.NumCPU(), NumWorkers: runtime.NumCPU(),
NumQueues: runtime.NumCPU(), NumQueues: runtime.NumCPU(),
QueueSize: 100, QueueSize: 100,
Enable: true,
Logger: nil, Logger: nil,
}) })
...@@ -102,6 +105,7 @@ func TestConnectionPool(t *testing.T) { ...@@ -102,6 +105,7 @@ func TestConnectionPool(t *testing.T) {
p := NewConnectionPool(WorkerPoolConfig{ p := NewConnectionPool(WorkerPoolConfig{
NumWorkers: 0, NumWorkers: 0,
NumQueues: runtime.NumCPU(), NumQueues: runtime.NumCPU(),
Enable: true,
QueueSize: 100, QueueSize: 100,
Logger: nil, Logger: nil,
}) })
...@@ -111,6 +115,7 @@ func TestConnectionPool(t *testing.T) { ...@@ -111,6 +115,7 @@ func TestConnectionPool(t *testing.T) {
p = NewConnectionPool(WorkerPoolConfig{ p = NewConnectionPool(WorkerPoolConfig{
NumWorkers: 1, NumWorkers: 1,
NumQueues: 0, NumQueues: 0,
Enable: true,
QueueSize: 0, QueueSize: 0,
Logger: nil, Logger: nil,
}) })
...@@ -123,6 +128,7 @@ func TestConnectionPool(t *testing.T) { ...@@ -123,6 +128,7 @@ func TestConnectionPool(t *testing.T) {
NumQueues: 1, NumQueues: 1,
QueueSize: -1, QueueSize: -1,
Logger: nil, Logger: nil,
Enable: true,
}) })
err = p.Submit(func() {}) err = p.Submit(func() {})
...@@ -134,6 +140,7 @@ func TestConnectionPool(t *testing.T) { ...@@ -134,6 +140,7 @@ func TestConnectionPool(t *testing.T) {
p := NewConnectionPool(WorkerPoolConfig{ p := NewConnectionPool(WorkerPoolConfig{
NumWorkers: 1, NumWorkers: 1,
NumQueues: 1, NumQueues: 1,
Enable: true,
QueueSize: 0, QueueSize: 0,
Logger: nil, Logger: nil,
}) })
...@@ -149,6 +156,7 @@ func TestConnectionPool(t *testing.T) { ...@@ -149,6 +156,7 @@ func TestConnectionPool(t *testing.T) {
NumQueues: runtime.NumCPU(), NumQueues: runtime.NumCPU(),
QueueSize: 10, QueueSize: 10,
Logger: nil, Logger: nil,
Enable: true,
}) })
task, v := newCountTask() task, v := newCountTask()
...@@ -174,6 +182,7 @@ func TestConnectionPool(t *testing.T) { ...@@ -174,6 +182,7 @@ func TestConnectionPool(t *testing.T) {
NumQueues: runtime.NumCPU(), NumQueues: runtime.NumCPU(),
QueueSize: 10, QueueSize: 10,
Logger: nil, Logger: nil,
Enable: true,
}) })
task, v := newCountTask() task, v := newCountTask()
...@@ -192,6 +201,7 @@ func BenchmarkConnectionPool(b *testing.B) { ...@@ -192,6 +201,7 @@ func BenchmarkConnectionPool(b *testing.B) {
NumWorkers: 100, NumWorkers: 100,
NumQueues: runtime.NumCPU(), NumQueues: runtime.NumCPU(),
QueueSize: 100, QueueSize: 100,
Enable: true,
Logger: nil, Logger: nil,
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment