-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathtask_test.go
82 lines (61 loc) · 1.75 KB
/
task_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
package fxcore_test
import (
"context"
"testing"
"github.com/ankorstore/yokai/config"
"github.com/ankorstore/yokai/fxcore"
"github.com/ankorstore/yokai/fxcore/testdata/tasks"
"github.com/stretchr/testify/assert"
)
func TestTaskRegistry(t *testing.T) {
t.Parallel()
createRegistry := func(tb testing.TB) *fxcore.TaskRegistry {
tb.Helper()
cfg, err := config.NewDefaultConfigFactory().Create(
config.WithFilePaths("./testdata/config"),
)
assert.NoError(tb, err)
return fxcore.NewTaskRegistry(fxcore.TaskRegistryParams{
Tasks: []fxcore.Task{
tasks.NewSuccessTask(cfg),
tasks.NewErrorTask(),
},
})
}
t.Run("test names", func(t *testing.T) {
t.Parallel()
registry := createRegistry(t)
assert.Equal(t, []string{"error", "success"}, registry.Names())
})
t.Run("test run with success task", func(t *testing.T) {
t.Parallel()
registry := createRegistry(t)
res := registry.Run(context.Background(), "success", []byte("test input"))
assert.True(t, res.Success)
assert.Equal(t, "task success", res.Message)
assert.Equal(
t,
map[string]any{
"app": "core-app",
"input": "test input",
},
res.Details,
)
})
t.Run("test run with error task", func(t *testing.T) {
t.Parallel()
registry := createRegistry(t)
res := registry.Run(context.Background(), "error", []byte("test input"))
assert.False(t, res.Success)
assert.Equal(t, "task error", res.Message)
assert.Nil(t, res.Details)
})
t.Run("test run with invalid task", func(t *testing.T) {
t.Parallel()
registry := createRegistry(t)
res := registry.Run(context.Background(), "invalid", []byte("test input"))
assert.False(t, res.Success)
assert.Equal(t, "task invalid not found", res.Message)
assert.Nil(t, res.Details)
})
}