2018-05-20 18:57:48 +03:00
|
|
|
// MIT License
|
|
|
|
|
2018-05-20 16:25:59 +03:00
|
|
|
// Copyright (c) 2018 Andy Pan
|
2018-05-20 18:57:48 +03:00
|
|
|
|
2018-05-20 16:25:59 +03:00
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
2018-05-20 18:57:48 +03:00
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
// furnished to do so, subject to the following conditions:
|
2018-05-20 16:25:59 +03:00
|
|
|
//
|
2018-05-20 18:57:48 +03:00
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
2018-05-20 16:25:59 +03:00
|
|
|
// copies or substantial portions of the Software.
|
|
|
|
//
|
2018-05-20 18:57:48 +03:00
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
// SOFTWARE.
|
2018-05-20 16:25:59 +03:00
|
|
|
|
2018-05-19 10:22:14 +03:00
|
|
|
package ants_test
|
2018-05-19 07:33:29 +03:00
|
|
|
|
2018-05-19 10:22:14 +03:00
|
|
|
import (
|
2018-05-20 11:22:56 +03:00
|
|
|
"runtime"
|
2018-05-20 16:29:38 +03:00
|
|
|
"sync"
|
|
|
|
"testing"
|
2018-05-22 13:00:15 +03:00
|
|
|
|
|
|
|
"github.com/panjf2000/ants"
|
2018-05-19 10:22:14 +03:00
|
|
|
)
|
|
|
|
|
2018-07-15 18:58:09 +03:00
|
|
|
var n = 100000
|
2018-05-19 10:22:14 +03:00
|
|
|
|
2018-07-15 15:50:10 +03:00
|
|
|
func TestAntsPoolWithFunc(t *testing.T) {
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
p, _ := ants.NewPoolWithFunc(AntsSize, func(i interface{}) error {
|
|
|
|
demoPoolFunc(i)
|
|
|
|
wg.Done()
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
defer p.Release()
|
|
|
|
|
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
wg.Add(1)
|
2018-07-15 15:51:14 +03:00
|
|
|
p.Serve(Param)
|
2018-07-15 15:50:10 +03:00
|
|
|
}
|
|
|
|
wg.Wait()
|
|
|
|
|
2018-07-15 18:34:12 +03:00
|
|
|
t.Logf("pool with func, running workers number:%d", p.Running())
|
2018-07-15 15:50:10 +03:00
|
|
|
mem := runtime.MemStats{}
|
|
|
|
runtime.ReadMemStats(&mem)
|
|
|
|
t.Logf("memory usage:%d", mem.TotalAlloc/GiB)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestAntsPool(t *testing.T) {
|
2018-07-02 09:35:02 +03:00
|
|
|
defer ants.Release()
|
2018-05-20 06:51:14 +03:00
|
|
|
var wg sync.WaitGroup
|
2018-05-19 10:22:14 +03:00
|
|
|
for i := 0; i < n; i++ {
|
2018-05-20 06:51:14 +03:00
|
|
|
wg.Add(1)
|
2018-05-24 18:43:34 +03:00
|
|
|
ants.Submit(func() error {
|
2018-05-23 12:21:39 +03:00
|
|
|
demoFunc()
|
|
|
|
wg.Done()
|
2018-05-24 18:43:34 +03:00
|
|
|
return nil
|
2018-05-23 12:21:39 +03:00
|
|
|
})
|
2018-05-19 10:22:14 +03:00
|
|
|
}
|
2018-05-20 06:51:14 +03:00
|
|
|
wg.Wait()
|
2018-05-19 10:22:14 +03:00
|
|
|
|
2018-07-15 17:45:55 +03:00
|
|
|
t.Logf("pool, capacity:%d", ants.Cap())
|
|
|
|
t.Logf("pool, running workers number:%d", ants.Running())
|
|
|
|
t.Logf("pool, free workers number:%d", ants.Free())
|
|
|
|
|
2018-05-19 15:16:33 +03:00
|
|
|
mem := runtime.MemStats{}
|
|
|
|
runtime.ReadMemStats(&mem)
|
2018-05-24 08:35:57 +03:00
|
|
|
t.Logf("memory usage:%d MB", mem.TotalAlloc/MiB)
|
2018-05-19 10:22:14 +03:00
|
|
|
}
|
|
|
|
|
2018-05-22 06:17:19 +03:00
|
|
|
func TestNoPool(t *testing.T) {
|
2018-05-20 11:22:56 +03:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
for i := 0; i < n; i++ {
|
|
|
|
wg.Add(1)
|
2018-05-22 06:17:19 +03:00
|
|
|
go func() {
|
2018-05-23 12:21:39 +03:00
|
|
|
demoFunc()
|
2018-05-20 11:22:56 +03:00
|
|
|
wg.Done()
|
2018-05-22 06:17:19 +03:00
|
|
|
}()
|
2018-05-20 11:22:56 +03:00
|
|
|
}
|
|
|
|
|
2018-05-22 06:17:19 +03:00
|
|
|
wg.Wait()
|
2018-05-20 11:22:56 +03:00
|
|
|
mem := runtime.MemStats{}
|
|
|
|
runtime.ReadMemStats(&mem)
|
2018-05-24 08:35:57 +03:00
|
|
|
t.Logf("memory usage:%d MB", mem.TotalAlloc/MiB)
|
2018-05-23 12:21:39 +03:00
|
|
|
}
|
|
|
|
|
2018-07-15 15:50:10 +03:00
|
|
|
func TestCodeCov(t *testing.T) {
|
2018-07-15 17:45:55 +03:00
|
|
|
_, err := ants.NewTimingPool(-1, -1)
|
|
|
|
t.Log(err)
|
|
|
|
_, err = ants.NewTimingPool(1, -1)
|
|
|
|
t.Log(err)
|
|
|
|
_, err = ants.NewTimingPoolWithFunc(-1, -1, demoPoolFunc)
|
|
|
|
t.Log(err)
|
|
|
|
_, err = ants.NewTimingPoolWithFunc(1, -1, demoPoolFunc)
|
|
|
|
t.Log(err)
|
|
|
|
|
2018-07-15 16:27:45 +03:00
|
|
|
p0, _ := ants.NewPool(AntsSize)
|
2018-07-15 17:45:55 +03:00
|
|
|
defer p0.Submit(demoFunc)
|
2018-07-15 16:27:45 +03:00
|
|
|
defer p0.Release()
|
2018-07-15 15:50:10 +03:00
|
|
|
for i := 0; i < n; i++ {
|
2018-07-15 16:27:45 +03:00
|
|
|
p0.Submit(demoFunc)
|
2018-07-15 15:50:10 +03:00
|
|
|
}
|
2018-07-15 16:27:45 +03:00
|
|
|
t.Logf("pool, capacity:%d", p0.Cap())
|
|
|
|
t.Logf("pool, running workers number:%d", p0.Running())
|
|
|
|
t.Logf("pool, free workers number:%d", p0.Free())
|
2018-07-15 17:45:55 +03:00
|
|
|
p0.ReSize(AntsSize)
|
2018-07-15 16:27:45 +03:00
|
|
|
p0.ReSize(AntsSize / 2)
|
2018-07-15 20:21:23 +03:00
|
|
|
t.Logf("pool, after resize, capacity:%d, running:%d", p0.Cap(), p0.Running())
|
2018-05-23 12:21:39 +03:00
|
|
|
|
2018-07-15 15:50:10 +03:00
|
|
|
p, _ := ants.NewPoolWithFunc(AntsSize, demoPoolFunc)
|
2018-07-15 17:45:55 +03:00
|
|
|
defer p.Serve(Param)
|
2018-07-15 15:50:10 +03:00
|
|
|
defer p.Release()
|
|
|
|
for i := 0; i < n; i++ {
|
2018-07-15 15:51:14 +03:00
|
|
|
p.Serve(Param)
|
2018-07-15 15:50:10 +03:00
|
|
|
}
|
|
|
|
t.Logf("pool with func, capacity:%d", p.Cap())
|
|
|
|
t.Logf("pool with func, running workers number:%d", p.Running())
|
|
|
|
t.Logf("pool with func, free workers number:%d", p.Free())
|
2018-07-15 17:45:55 +03:00
|
|
|
p.ReSize(AntsSize)
|
2018-07-15 15:50:10 +03:00
|
|
|
p.ReSize(AntsSize / 2)
|
2018-07-15 20:21:23 +03:00
|
|
|
t.Logf("pool with func, after resize, capacity:%d, running:%d", p.Cap(), p.Running())
|
2018-07-15 15:50:10 +03:00
|
|
|
}
|
2018-05-22 06:17:19 +03:00
|
|
|
|
2018-05-23 12:21:39 +03:00
|
|
|
// func TestNoPool(t *testing.T) {
|
|
|
|
// var wg sync.WaitGroup
|
|
|
|
// for i := 0; i < n; i++ {
|
|
|
|
// wg.Add(1)
|
|
|
|
// go func() {
|
|
|
|
// demoPoolFunc(n)
|
|
|
|
// wg.Done()
|
|
|
|
// }()
|
|
|
|
// }
|
|
|
|
|
|
|
|
// wg.Wait()
|
|
|
|
// mem := runtime.MemStats{}
|
|
|
|
// runtime.ReadMemStats(&mem)
|
|
|
|
// t.Logf("memory usage:%d", mem.TotalAlloc/GiB)
|
|
|
|
// }
|
|
|
|
|
2018-05-22 06:17:19 +03:00
|
|
|
//func TestCustomPool(t *testing.T) {
|
|
|
|
// p, _ := ants.NewPool(30000)
|
|
|
|
// var wg sync.WaitGroup
|
|
|
|
// for i := 0; i < n; i++ {
|
|
|
|
// wg.Add(1)
|
2018-05-24 18:43:34 +03:00
|
|
|
// p.Submit(func() {
|
2018-05-22 06:17:19 +03:00
|
|
|
// demoFunc()
|
|
|
|
// //demoFunc()
|
|
|
|
// wg.Done()
|
|
|
|
// })
|
|
|
|
// }
|
|
|
|
// wg.Wait()
|
|
|
|
//
|
|
|
|
// //t.Logf("pool capacity:%d", p.Cap())
|
|
|
|
// //t.Logf("free workers number:%d", p.Free())
|
|
|
|
//
|
|
|
|
// t.Logf("running workers number:%d", p.Running())
|
|
|
|
// mem := runtime.MemStats{}
|
|
|
|
// runtime.ReadMemStats(&mem)
|
|
|
|
// t.Logf("memory usage:%d", mem.TotalAlloc/1024)
|
|
|
|
//}
|