mirror of
https://github.com/imjasonh/delay
synced 2026-07-07 00:33:26 +00:00
372 lines
9.4 KiB
Go
372 lines
9.4 KiB
Go
package delay
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"encoding/base64"
|
|
"encoding/gob"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
taskspb "google.golang.org/api/cloudtasks/v2"
|
|
"google.golang.org/api/idtoken"
|
|
)
|
|
|
|
const queueName = "queue-name"
|
|
|
|
var req = &http.Request{Host: "dummy"}
|
|
|
|
type CustomType struct {
|
|
N int
|
|
}
|
|
|
|
type CustomInterface interface {
|
|
N() int
|
|
}
|
|
|
|
type CustomImpl int
|
|
|
|
func (c CustomImpl) N() int { return int(c) }
|
|
|
|
// CustomImpl needs to be registered with gob.
|
|
func init() {
|
|
gob.Register(CustomImpl(0))
|
|
|
|
validateIDToken = func(context.Context, string, string) (*idtoken.Payload, error) { return nil, nil }
|
|
}
|
|
|
|
func payload(t *taskspb.Task) []byte {
|
|
if t == nil || t.HttpRequest == nil {
|
|
return nil
|
|
}
|
|
b, err := base64.StdEncoding.DecodeString(t.HttpRequest.Body)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return b
|
|
}
|
|
|
|
var (
|
|
invalidFunc = Func(func() {})
|
|
|
|
regFuncRuns = 0
|
|
regFuncMsg = ""
|
|
regFunc = Func(func(c context.Context, arg string) {
|
|
regFuncRuns++
|
|
regFuncMsg = arg
|
|
})
|
|
|
|
custFuncTally = 0
|
|
custFunc = Func(func(c context.Context, ct *CustomType, ci CustomInterface) {
|
|
a, b := 2, 3
|
|
if ct != nil {
|
|
a = ct.N
|
|
}
|
|
if ci != nil {
|
|
b = ci.N()
|
|
}
|
|
custFuncTally += a + b
|
|
})
|
|
|
|
varFuncMsg = ""
|
|
varFunc = Func(func(c context.Context, format string, args ...int) {
|
|
// convert []int to []interface{} for fmt.Sprintf.
|
|
as := make([]interface{}, len(args))
|
|
for i, a := range args {
|
|
as[i] = a
|
|
}
|
|
varFuncMsg = fmt.Sprintf(format, as...)
|
|
})
|
|
|
|
errFuncRuns = 0
|
|
errFuncErr = errors.New("error!")
|
|
errFunc = Func(func(c context.Context) error {
|
|
errFuncRuns++
|
|
if errFuncRuns == 1 {
|
|
return nil
|
|
}
|
|
return errFuncErr
|
|
})
|
|
|
|
reqFuncRuns = 0
|
|
reqMeta Meta
|
|
reqFuncErr error
|
|
reqFunc = Func(func(c context.Context) {
|
|
reqFuncRuns++
|
|
reqMeta = MetaFromContext(c)
|
|
})
|
|
)
|
|
|
|
type fakeContext struct {
|
|
ctx context.Context
|
|
}
|
|
|
|
func newFakeContext() *fakeContext {
|
|
return &fakeContext{ctx: context.Background()}
|
|
}
|
|
|
|
func TestInvalidFunction(t *testing.T) {
|
|
c := newFakeContext()
|
|
|
|
if got, want := invalidFunc.Call(c.ctx, req, queueName), fmt.Errorf("new task: delay: func is invalid: %s", errFirstArg); got.Error() != want.Error() {
|
|
t.Errorf("Incorrect error:\n got: %s\nwant: %s", got, want)
|
|
}
|
|
}
|
|
|
|
func TestVariadicFunctionArguments(t *testing.T) {
|
|
// Check the argument type validation for variadic functions.
|
|
|
|
c := newFakeContext()
|
|
|
|
calls := 0
|
|
taskqueueAdder = func(c context.Context, t *taskspb.Task, _ string) error {
|
|
calls++
|
|
return nil
|
|
}
|
|
|
|
if err := varFunc.Call(c.ctx, req, queueName, "hi"); err != nil {
|
|
t.Fatalf("Failed calling varFunc: %v", err)
|
|
}
|
|
if err := varFunc.Call(c.ctx, req, queueName, "%d", 12); err != nil {
|
|
t.Fatalf("Failed calling varFunc: %v", err)
|
|
}
|
|
if err := varFunc.Call(c.ctx, req, queueName, "%d %d %d", 3, 1, 4); err != nil {
|
|
t.Fatalf("Failed calling varFunc: %v", err)
|
|
}
|
|
if calls != 3 {
|
|
t.Errorf("Got %d calls to taskqueueAdder, want 3", calls)
|
|
}
|
|
|
|
if got, want := varFunc.Call(c.ctx, req, queueName, "%d %s", 12, "a string is bad"), errors.New("new task: delay: argument 3 has wrong type: string is not assignable to int"); got.Error() != want.Error() {
|
|
t.Errorf("Incorrect error:\n got: %s\nwant: %s", got, want)
|
|
}
|
|
}
|
|
|
|
func TestBadArguments(t *testing.T) {
|
|
// Try running regFunc with different sets of inappropriate arguments.
|
|
|
|
c := newFakeContext()
|
|
|
|
for i, tc := range []struct {
|
|
args []interface{} // all except context
|
|
wantErr string
|
|
}{{
|
|
args: nil,
|
|
wantErr: "new task: delay: too few arguments to func: 1 < 2",
|
|
}, {
|
|
args: []interface{}{"lala", 53},
|
|
wantErr: "new task: delay: too many arguments to func: 3 > 2",
|
|
}, {
|
|
args: []interface{}{53},
|
|
wantErr: "new task: delay: argument 1 has wrong type: int is not assignable to string",
|
|
}} {
|
|
got := regFunc.Call(c.ctx, req, queueName, tc.args...)
|
|
if got.Error() != tc.wantErr {
|
|
t.Errorf("Call %v:\n got: %s\nwant: %s", i, got, tc.wantErr)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestRunningFunction(t *testing.T) {
|
|
c := newFakeContext()
|
|
|
|
// Fake out the adding of a task.
|
|
var task *taskspb.Task
|
|
taskqueueAdder = func(_ context.Context, tk *taskspb.Task, queue string) error {
|
|
if queue != queueName {
|
|
t.Errorf("Got queue %q, expected %q", queue, queueName)
|
|
}
|
|
task = tk
|
|
return nil
|
|
}
|
|
|
|
regFuncRuns, regFuncMsg = 0, "" // reset state
|
|
const msg = "Why, hello!"
|
|
if err := regFunc.Call(c.ctx, req, queueName, msg); err != nil {
|
|
t.Fatalf("Failed calling regFunc: %v", err)
|
|
}
|
|
|
|
// Simulate the Task Queue service.
|
|
req, err := http.NewRequest("POST", handlerPath, bytes.NewBuffer(payload(task)))
|
|
if err != nil {
|
|
t.Fatalf("Failed making http.Request: %v", err)
|
|
}
|
|
rw := httptest.NewRecorder()
|
|
runFunc(c.ctx, rw, req)
|
|
|
|
if regFuncRuns != 1 {
|
|
t.Errorf("regFuncRuns: got %d, want 1", regFuncRuns)
|
|
}
|
|
if regFuncMsg != msg {
|
|
t.Errorf("regFuncMsg: got %q, want %q", regFuncMsg, msg)
|
|
}
|
|
}
|
|
|
|
func TestCustomType(t *testing.T) {
|
|
c := newFakeContext()
|
|
|
|
// Fake out the adding of a task.
|
|
var task *taskspb.Task
|
|
taskqueueAdder = func(_ context.Context, tk *taskspb.Task, queue string) error {
|
|
if queue != queueName {
|
|
t.Errorf("Got queue %q, expected %q", queue, queueName)
|
|
}
|
|
task = tk
|
|
return nil
|
|
}
|
|
|
|
custFuncTally = 0 // reset state
|
|
if err := custFunc.Call(c.ctx, req, queueName, &CustomType{N: 11}, CustomImpl(13)); err != nil {
|
|
t.Fatalf("Failed calling custFunc: %v", err)
|
|
}
|
|
|
|
// Simulate the Task Queue service.
|
|
req, err := http.NewRequest("POST", handlerPath, bytes.NewBuffer(payload(task)))
|
|
if err != nil {
|
|
t.Fatalf("Failed making http.Request: %v", err)
|
|
}
|
|
rw := httptest.NewRecorder()
|
|
runFunc(c.ctx, rw, req)
|
|
|
|
if custFuncTally != 24 {
|
|
t.Errorf("custFuncTally = %d, want 24", custFuncTally)
|
|
}
|
|
|
|
// Try the same, but with nil values; one is a nil pointer (and thus a non-nil interface value),
|
|
// and the other is a nil interface value.
|
|
custFuncTally = 0 // reset state
|
|
if err := custFunc.Call(c.ctx, req, queueName, (*CustomType)(nil), nil); err != nil {
|
|
t.Fatalf("Failed calling custFunc: %v", err)
|
|
}
|
|
|
|
// Simulate the Task Queue service.
|
|
req, err = http.NewRequest("POST", handlerPath, bytes.NewBuffer(payload(task)))
|
|
if err != nil {
|
|
t.Fatalf("Failed making http.Request: %v", err)
|
|
}
|
|
rw = httptest.NewRecorder()
|
|
runFunc(c.ctx, rw, req)
|
|
|
|
if custFuncTally != 5 {
|
|
t.Errorf("custFuncTally = %d, want 5", custFuncTally)
|
|
}
|
|
}
|
|
|
|
func TestRunningVariadic(t *testing.T) {
|
|
c := newFakeContext()
|
|
|
|
// Fake out the adding of a task.
|
|
var task *taskspb.Task
|
|
taskqueueAdder = func(_ context.Context, tk *taskspb.Task, queue string) error {
|
|
if queue != queueName {
|
|
t.Errorf("Got queue %q, expected %q", queue, queueName)
|
|
}
|
|
task = tk
|
|
return nil
|
|
}
|
|
|
|
varFuncMsg = "" // reset state
|
|
if err := varFunc.Call(c.ctx, req, queueName, "Amiga %d has %d KB RAM", 500, 512); err != nil {
|
|
t.Fatalf("Failed calling varFunc: %v", err)
|
|
}
|
|
|
|
// Simulate the Task Queue service.
|
|
req, err := http.NewRequest("POST", handlerPath, bytes.NewBuffer(payload(task)))
|
|
if err != nil {
|
|
t.Fatalf("Failed making http.Request: %v", err)
|
|
}
|
|
rw := httptest.NewRecorder()
|
|
runFunc(c.ctx, rw, req)
|
|
|
|
const expected = "Amiga 500 has 512 KB RAM"
|
|
if varFuncMsg != expected {
|
|
t.Errorf("varFuncMsg = %q, want %q", varFuncMsg, expected)
|
|
}
|
|
}
|
|
|
|
func TestErrorFunction(t *testing.T) {
|
|
c := newFakeContext()
|
|
|
|
// Fake out the adding of a task.
|
|
var task *taskspb.Task
|
|
taskqueueAdder = func(_ context.Context, tk *taskspb.Task, queue string) error {
|
|
if queue != queueName {
|
|
t.Errorf("Got queue %q, expected %q", queue, queueName)
|
|
}
|
|
task = tk
|
|
return nil
|
|
}
|
|
|
|
if err := errFunc.Call(c.ctx, req, queueName); err != nil {
|
|
t.Fatalf("Failed calling errFunc: %v", err)
|
|
}
|
|
|
|
// Simulate the Task Queue service.
|
|
// The first call should succeed; the second call should fail.
|
|
{
|
|
req, err := http.NewRequest("POST", handlerPath, bytes.NewBuffer(payload(task)))
|
|
if err != nil {
|
|
t.Fatalf("Failed making http.Request: %v", err)
|
|
}
|
|
rw := httptest.NewRecorder()
|
|
runFunc(c.ctx, rw, req)
|
|
}
|
|
{
|
|
req, err := http.NewRequest("POST", handlerPath, bytes.NewBuffer(payload(task)))
|
|
if err != nil {
|
|
t.Fatalf("Failed making http.Request: %v", err)
|
|
}
|
|
rw := httptest.NewRecorder()
|
|
runFunc(c.ctx, rw, req)
|
|
if rw.Code != http.StatusInternalServerError {
|
|
t.Errorf("Got status code %d, want %d", rw.Code, http.StatusInternalServerError)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestGetRequestHeadersFromContext(t *testing.T) {
|
|
c := newFakeContext()
|
|
|
|
// Outside a delay.Func should return an error.
|
|
meta := MetaFromContext(c.ctx)
|
|
if meta.QueueName != "" {
|
|
t.Errorf("MetaFromContext outside Func err, got %v, want empty", meta.QueueName)
|
|
}
|
|
|
|
// Fake out the adding of a task.
|
|
var task *taskspb.Task
|
|
taskqueueAdder = func(_ context.Context, tk *taskspb.Task, queue string) error {
|
|
if queue != queueName {
|
|
t.Errorf("Got queue %q, expected %q", queue, queueName)
|
|
}
|
|
task = tk
|
|
return nil
|
|
}
|
|
|
|
if err := reqFunc.Call(c.ctx, req, queueName); err != nil {
|
|
t.Fatalf("Failed calling reqFunc: %v", err)
|
|
}
|
|
|
|
reqFuncRuns, reqMeta = 0, Meta{} // reset state
|
|
// Simulate the Task Queue service.
|
|
req, err := http.NewRequest("POST", handlerPath, bytes.NewBuffer(payload(task)))
|
|
req.Header.Set("x-cloudtasks-taskname", "foobar")
|
|
if err != nil {
|
|
t.Fatalf("Failed making http.Request: %v", err)
|
|
}
|
|
rw := httptest.NewRecorder()
|
|
runFunc(c.ctx, rw, req)
|
|
|
|
if reqFuncRuns != 1 {
|
|
t.Errorf("reqFuncRuns: got %d, want 1", reqFuncRuns)
|
|
}
|
|
if reqMeta.TaskName != "foobar" {
|
|
t.Errorf("reqFuncHeaders.TaskName: got %v, want 'foobar'", reqMeta.TaskName)
|
|
}
|
|
if reqFuncErr != nil {
|
|
t.Errorf("reqFuncErr: got %v, want nil", reqFuncErr)
|
|
}
|
|
}
|