mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2025-12-30 13:19:44 -06:00
* feat: add stream event model * docs: how to work with db models * feat: put stream event * chore: rm comments * feat: add stream resource type * feat: enqueue stream event * fix: contracts * feat: protos * chore: set properties correctly for typing * fix: stream example * chore: rm old example * fix: async on * fix: bytea type * fix: worker * feat: put stream data * feat: stream type * fix: correct queue * feat: streaming payloads * fix: cleanup * fix: validation * feat: example file streaming * chore: rm unused query * fix: tenant check and read only consumer * fix: check tenant-steprun relation * Update prisma/schema.prisma Co-authored-by: abelanger5 <belanger@sas.upenn.edu> * chore: generate protos * chore: rename migration * release: 0.20.0 * feat(go-sdk): implement streaming in go --------- Co-authored-by: gabriel ruttner <gabe@hatchet.run> Co-authored-by: abelanger5 <belanger@sas.upenn.edu>
175 lines
3.9 KiB
Go
175 lines
3.9 KiB
Go
package worker
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/hatchet-dev/hatchet/pkg/client"
|
|
)
|
|
|
|
type testHatchetContext struct {
|
|
context.Context
|
|
}
|
|
|
|
func (c *testHatchetContext) SetContext(ctx context.Context) {
|
|
c.Context = ctx
|
|
}
|
|
|
|
func (c *testHatchetContext) GetContext() context.Context {
|
|
return c.Context
|
|
}
|
|
|
|
func (c *testHatchetContext) StepOutput(step string, target interface{}) error {
|
|
return nil
|
|
}
|
|
|
|
func (c *testHatchetContext) TriggeredByEvent() bool {
|
|
return false
|
|
}
|
|
|
|
func (c *testHatchetContext) WorkflowInput(target interface{}) error {
|
|
return nil
|
|
}
|
|
|
|
func (c *testHatchetContext) SpawnWorkflow(workflowName string, input any, opts *SpawnWorkflowOpts) (*ChildWorkflow, error) {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (c *testHatchetContext) StepName() string {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (c *testHatchetContext) StepRunId() string {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (c *testHatchetContext) WorkflowRunId() string {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (c *testHatchetContext) Log(message string) {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (c *testHatchetContext) StreamEvent(message []byte) {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (c *testHatchetContext) index() int {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (c *testHatchetContext) inc() {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func (c *testHatchetContext) client() client.Client {
|
|
panic("not implemented")
|
|
}
|
|
|
|
func TestAddMiddleware(t *testing.T) {
|
|
m := middlewares{}
|
|
middlewareFunc := func(ctx HatchetContext, next func(HatchetContext) error) error {
|
|
return nil
|
|
}
|
|
m.add(middlewareFunc)
|
|
|
|
if len(m.middlewares) != 1 {
|
|
t.Errorf("Expected 1 middleware, got %d", len(m.middlewares))
|
|
}
|
|
}
|
|
|
|
func TestRunAllWithNoMiddleware(t *testing.T) {
|
|
m := middlewares{}
|
|
err := m.runAll(&testHatchetContext{context.Background()}, func(ctx HatchetContext) error {
|
|
return nil
|
|
})
|
|
|
|
if err != nil {
|
|
t.Errorf("Expected no error, got %v", err)
|
|
}
|
|
}
|
|
|
|
func TestRunAllWithMiddleware(t *testing.T) {
|
|
m := middlewares{}
|
|
called := false
|
|
middlewareFunc := func(ctx HatchetContext, next func(HatchetContext) error) error {
|
|
called = true
|
|
return next(ctx)
|
|
}
|
|
m.add(middlewareFunc)
|
|
|
|
err := m.runAll(&testHatchetContext{context.Background()}, func(ctx HatchetContext) error {
|
|
return nil
|
|
})
|
|
|
|
if err != nil {
|
|
t.Errorf("Expected no error, got %v", err)
|
|
}
|
|
|
|
if !called {
|
|
t.Errorf("Expected middleware to be called")
|
|
}
|
|
}
|
|
|
|
func TestRunAllWithPropagatedContext(t *testing.T) {
|
|
m := middlewares{}
|
|
key := "key"
|
|
value := "value"
|
|
|
|
// Middleware that sets a value in the context
|
|
middlewareFunc := func(ctx HatchetContext, next func(HatchetContext) error) error {
|
|
ctx.SetContext(context.WithValue(ctx, key, value))
|
|
|
|
return next(ctx)
|
|
}
|
|
m.add(middlewareFunc)
|
|
|
|
// Next function that checks for the value in the context
|
|
err := m.runAll(&testHatchetContext{context.Background()}, func(ctx HatchetContext) error {
|
|
if ctx.Value(key) != value {
|
|
t.Errorf("Expected value %v in context, got %v", value, ctx.Value(key))
|
|
}
|
|
return nil
|
|
})
|
|
|
|
if err != nil {
|
|
t.Errorf("Expected no error, got %v", err)
|
|
}
|
|
}
|
|
|
|
func TestRunAllWithErrorInMiddleware(t *testing.T) {
|
|
m := middlewares{}
|
|
expectedErr := errors.New("middleware error")
|
|
middlewareFunc := func(ctx HatchetContext, next func(HatchetContext) error) error {
|
|
return expectedErr
|
|
}
|
|
m.add(middlewareFunc)
|
|
|
|
err := m.runAll(&testHatchetContext{context.Background()}, func(ctx HatchetContext) error {
|
|
return nil
|
|
})
|
|
|
|
if err != expectedErr {
|
|
t.Errorf("Expected error %v, got %v", expectedErr, err)
|
|
}
|
|
}
|
|
|
|
func TestRunAllWithErrorInNext(t *testing.T) {
|
|
m := middlewares{}
|
|
expectedErr := errors.New("next error")
|
|
middlewareFunc := func(ctx HatchetContext, next func(HatchetContext) error) error {
|
|
return next(ctx)
|
|
}
|
|
m.add(middlewareFunc)
|
|
|
|
err := m.runAll(&testHatchetContext{context.Background()}, func(ctx HatchetContext) error {
|
|
return expectedErr
|
|
})
|
|
|
|
if err != expectedErr {
|
|
t.Errorf("Expected error %v, got %v", expectedErr, err)
|
|
}
|
|
}
|