add benchmarks
This commit is contained in:
parent
e2e426b90c
commit
7b89b36e37
154
service_test.go
154
service_test.go
@ -2,65 +2,179 @@ package micro
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"errors"
|
||||||
"sync"
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
glog "github.com/go-log/log"
|
||||||
|
"github.com/micro/go-log"
|
||||||
|
"github.com/micro/go-micro/client"
|
||||||
"github.com/micro/go-micro/registry/memory"
|
"github.com/micro/go-micro/registry/memory"
|
||||||
proto "github.com/micro/go-micro/server/debug/proto"
|
proto "github.com/micro/go-micro/server/debug/proto"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestService(t *testing.T) {
|
func testShutdown(wg *sync.WaitGroup, cancel func()) {
|
||||||
var wg sync.WaitGroup
|
// add 1
|
||||||
wg.Add(1)
|
wg.Add(1)
|
||||||
|
// shutdown the service
|
||||||
|
cancel()
|
||||||
|
// wait for stop
|
||||||
|
wg.Wait()
|
||||||
|
}
|
||||||
|
|
||||||
// cancellation context
|
func testService(ctx context.Context, wg *sync.WaitGroup, name string) Service {
|
||||||
ctx, cancel := context.WithCancel(context.Background())
|
// set no op logger
|
||||||
|
log.SetLogger(glog.DefaultLogger)
|
||||||
|
|
||||||
|
// add self
|
||||||
|
wg.Add(1)
|
||||||
|
|
||||||
r := memory.NewRegistry()
|
r := memory.NewRegistry()
|
||||||
r.(*memory.Registry).Setup()
|
r.(*memory.Registry).Setup()
|
||||||
|
|
||||||
// create service
|
// create service
|
||||||
service := NewService(
|
return NewService(
|
||||||
Name("test.service"),
|
Name(name),
|
||||||
Context(ctx),
|
Context(ctx),
|
||||||
Registry(r),
|
Registry(r),
|
||||||
AfterStart(func() error {
|
AfterStart(func() error {
|
||||||
wg.Done()
|
wg.Done()
|
||||||
return nil
|
return nil
|
||||||
}),
|
}),
|
||||||
|
AfterStop(func() error {
|
||||||
|
wg.Done()
|
||||||
|
return nil
|
||||||
|
}),
|
||||||
)
|
)
|
||||||
|
}
|
||||||
|
|
||||||
// we can't test service.Init as it parses the command line
|
func testRequest(ctx context.Context, c client.Client, name string) error {
|
||||||
// service.Init()
|
|
||||||
|
|
||||||
// run service
|
|
||||||
go func() {
|
|
||||||
// wait for start
|
|
||||||
wg.Wait()
|
|
||||||
|
|
||||||
// test call debug
|
// test call debug
|
||||||
req := service.Client().NewRequest(
|
req := c.NewRequest(
|
||||||
"test.service",
|
name,
|
||||||
"Debug.Health",
|
"Debug.Health",
|
||||||
new(proto.HealthRequest),
|
new(proto.HealthRequest),
|
||||||
)
|
)
|
||||||
|
|
||||||
rsp := new(proto.HealthResponse)
|
rsp := new(proto.HealthResponse)
|
||||||
|
|
||||||
err := service.Client().Call(context.TODO(), req, rsp)
|
err := c.Call(context.TODO(), req, rsp)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
if rsp.Status != "ok" {
|
if rsp.Status != "ok" {
|
||||||
t.Fatalf("service response: %s", rsp.Status)
|
return errors.New("service response: " + rsp.Status)
|
||||||
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// TestService tests running and calling a service
|
||||||
|
func TestService(t *testing.T) {
|
||||||
|
// waitgroup for server start
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
|
||||||
|
// cancellation context
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
|
||||||
|
// start test server
|
||||||
|
service := testService(ctx, &wg, "test.service")
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
// wait for service to start
|
||||||
|
wg.Wait()
|
||||||
|
|
||||||
|
// make a test call
|
||||||
|
if err := testRequest(ctx, service.Client(), "test.service"); err != nil {
|
||||||
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// shutdown the service
|
// shutdown the service
|
||||||
cancel()
|
testShutdown(&wg, cancel)
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
// start service
|
||||||
if err := service.Run(); err != nil {
|
if err := service.Run(); err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func benchmarkService(b *testing.B, n int, name string) {
|
||||||
|
// stop the timer
|
||||||
|
b.StopTimer()
|
||||||
|
|
||||||
|
// waitgroup for server start
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
|
||||||
|
// cancellation context
|
||||||
|
ctx, cancel := context.WithCancel(context.Background())
|
||||||
|
|
||||||
|
// create test server
|
||||||
|
service := testService(ctx, &wg, name)
|
||||||
|
|
||||||
|
// start the server
|
||||||
|
go func() {
|
||||||
|
if err := service.Run(); err != nil {
|
||||||
|
b.Fatal(err)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
// wait for service to start
|
||||||
|
wg.Wait()
|
||||||
|
|
||||||
|
// make a test call to warm the cache
|
||||||
|
for i := 0; i < 10; i++ {
|
||||||
|
if err := testRequest(ctx, service.Client(), name); err != nil {
|
||||||
|
b.Fatal(err)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// start the timer
|
||||||
|
b.StartTimer()
|
||||||
|
|
||||||
|
// number of iterations
|
||||||
|
for i := 0; i < b.N; i++ {
|
||||||
|
// for concurrency
|
||||||
|
for j := 0; j < n; j++ {
|
||||||
|
wg.Add(1)
|
||||||
|
|
||||||
|
go func() {
|
||||||
|
err := testRequest(ctx, service.Client(), name)
|
||||||
|
wg.Done()
|
||||||
|
if err != nil {
|
||||||
|
b.Fatal(err)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
// wait for test completion
|
||||||
|
wg.Wait()
|
||||||
|
}
|
||||||
|
|
||||||
|
// stop the timer
|
||||||
|
b.StopTimer()
|
||||||
|
|
||||||
|
// shutdown service
|
||||||
|
testShutdown(&wg, cancel)
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkService1(b *testing.B) {
|
||||||
|
benchmarkService(b, 1, "test.service.1")
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkService8(b *testing.B) {
|
||||||
|
benchmarkService(b, 8, "test.service.8")
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkService16(b *testing.B) {
|
||||||
|
benchmarkService(b, 16, "test.service.16")
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkService32(b *testing.B) {
|
||||||
|
benchmarkService(b, 32, "test.service.32")
|
||||||
|
}
|
||||||
|
|
||||||
|
func BenchmarkService64(b *testing.B) {
|
||||||
|
benchmarkService(b, 64, "test.service.64")
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user