gearman-go/src/gearman/worker_test.go

72 lines
1.4 KiB
Go
Raw Normal View History

2011-05-16 17:26:32 +08:00
package gearman
2011-03-15 20:21:42 +08:00
2011-12-28 17:59:44 +08:00
import "testing"
2011-03-15 20:21:42 +08:00
var worker *Worker
func init() {
2011-12-28 17:59:44 +08:00
worker = NewWorker()
}
func TestWorkerAddServer(t *testing.T) {
2011-12-28 17:59:44 +08:00
t.Log("Add local server 127.0.0.1:4730.")
if err := worker.AddServer("127.0.0.1:4730"); err != nil {
t.Error(err)
}
2011-05-17 18:22:12 +08:00
2011-12-28 17:59:44 +08:00
if l := len(worker.clients); l != 1 {
t.Log(worker.clients)
t.Error("The length of server list should be 1.")
}
2011-03-15 20:21:42 +08:00
}
2011-12-28 17:59:44 +08:00
func foobar(job *WorkerJob) ([]byte, error) {
return nil, nil
}
func TestWorkerAddFunction(t *testing.T) {
2011-12-28 17:59:44 +08:00
if err := worker.AddFunction("foobar", foobar, 0); err != nil {
t.Error(err)
}
if err := worker.AddFunction("timeout", foobar, 5); err != nil {
t.Error(err)
}
if l := len(worker.functions); l != 2 {
t.Log(worker.functions)
t.Errorf("The length of function map should be %d.", 2)
}
}
2011-05-24 13:20:22 +08:00
func TestWorkerEcho(t *testing.T) {
2011-12-28 17:59:44 +08:00
if err := worker.Echo([]byte("Hello World")); err != nil {
t.Error(err)
}
}
/*
func TestWorkerResult(t *testing.T) {
if job := worker.LastResult(); job == nil {
t.Error("Nothing in result.")
2011-05-17 18:22:12 +08:00
} else {
t.Log(job)
}
}
*/
2011-05-24 13:20:22 +08:00
func TestWorkerRemoveFunction(t *testing.T) {
2011-12-28 17:59:44 +08:00
if err := worker.RemoveFunction("foobar"); err != nil {
t.Error(err)
}
}
2011-05-24 13:20:22 +08:00
func TestWorkerReset(t *testing.T) {
2011-12-28 17:59:44 +08:00
if err := worker.Reset(); err != nil {
t.Error(err)
}
}
2011-05-17 18:22:12 +08:00
func TestWorkerClose(t *testing.T) {
2011-12-28 17:59:44 +08:00
if err := worker.Close(); err != nil {
t.Error(err)
}
}