gearman-go/client/pool_test.go

108 lines
2.1 KiB
Go
Raw Normal View History

2013-01-08 17:23:10 +08:00
package client
import (
2013-08-29 16:51:23 +08:00
"testing"
"time"
2013-01-08 17:23:10 +08:00
)
var (
2013-08-29 16:51:23 +08:00
pool = NewPool()
2013-01-08 17:23:10 +08:00
)
func TestPoolAdd(t *testing.T) {
2013-08-29 16:51:23 +08:00
t.Log("Add servers")
if err := pool.Add("127.0.0.1:4730", 1); err != nil {
t.Error(err)
}
if err := pool.Add("127.0.0.1:4730", 1); err != nil {
t.Error(err)
}
if len(pool.clients) != 2 {
t.Errorf("2 servers expected, %d got.", len(pool.clients))
}
2013-01-08 17:23:10 +08:00
}
2013-01-23 17:25:38 +08:00
2013-01-08 17:23:10 +08:00
func TestPoolEcho(t *testing.T) {
2013-08-29 16:51:23 +08:00
echo, err := pool.Echo("", []byte("Hello pool"), time.Second)
if err != nil {
t.Error(err)
return
}
if string(echo) != "Hello pool" {
t.Errorf("Invalid echo data: %s", echo)
return
}
2013-01-25 15:16:11 +08:00
2013-08-29 16:51:23 +08:00
_, err = pool.Echo("not exists", []byte("Hello pool"), time.Second)
if err != ErrNotFound {
t.Errorf("ErrNotFound expected, got %s", err)
}
2013-01-25 15:16:11 +08:00
}
func TestPoolDoBg(t *testing.T) {
2013-08-29 16:51:23 +08:00
if addr, handle := pool.DoBg("ToUpper", []byte("abcdef"),
JOB_LOW); handle == "" {
t.Error("Handle is empty.")
} else {
t.Log(addr, handle)
}
2013-01-25 15:16:11 +08:00
}
func TestPoolDo(t *testing.T) {
2013-08-29 16:51:23 +08:00
jobHandler := func(job *Job) {
str := string(job.Data)
if str == "ABCDEF" {
t.Log(str)
} else {
t.Errorf("Invalid data: %s", job.Data)
}
return
}
if addr, handle := pool.Do("ToUpper", []byte("abcdef"),
JOB_LOW, jobHandler); handle == "" {
t.Error("Handle is empty.")
} else {
t.Log(addr, handle)
}
2013-01-08 17:23:10 +08:00
}
2013-01-24 18:13:02 +08:00
2013-01-25 15:16:11 +08:00
func TestPoolStatus(t *testing.T) {
2013-08-29 16:51:23 +08:00
s1, err := pool.Status("127.0.0.1:4730", "handle not exists", time.Second)
if err != nil {
t.Error(err)
return
}
if s1.Known {
t.Errorf("The job (%s) shouldn't be known.", s1.Handle)
}
if s1.Running {
t.Errorf("The job (%s) shouldn't be running.", s1.Handle)
}
2013-01-25 15:16:11 +08:00
2013-08-29 16:51:23 +08:00
addr, handle := pool.Do("Delay5sec", []byte("abcdef"), JOB_LOW, nil)
s2, err := pool.Status(addr, handle, time.Second)
if err != nil {
t.Error(err)
return
}
2013-01-25 15:16:11 +08:00
2013-08-29 16:51:23 +08:00
if !s2.Known {
t.Errorf("The job (%s) should be known.", s2.Handle)
}
if s2.Running {
t.Errorf("The job (%s) shouldn't be running.", s2.Handle)
}
2013-01-25 15:16:11 +08:00
2013-08-29 16:51:23 +08:00
_, err = pool.Status("not exists", "not exists", time.Second)
if err != ErrNotFound {
t.Error(err)
}
2013-01-08 17:23:10 +08:00
}
2013-01-24 18:13:02 +08:00
2013-01-08 17:23:10 +08:00
func TestPoolClose(t *testing.T) {
2013-08-29 16:51:23 +08:00
return
if err := pool.Close(); err != nil {
t.Error(err)
}
2013-01-08 17:23:10 +08:00
}