-
Notifications
You must be signed in to change notification settings - Fork 8
/
delete_test.go
137 lines (119 loc) · 3.47 KB
/
delete_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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package workflow_test
import (
"context"
"errors"
"testing"
"time"
"github.com/stretchr/testify/require"
"k8s.io/utils/clock"
"github.com/luno/workflow"
"github.com/luno/workflow/adapters/memstreamer"
)
func TestDeleteForever(t *testing.T) {
type object struct {
pii string
notPII string
}
testErr := errors.New("test error")
testCases := []struct {
Name string
storeFn func(ctx context.Context, record *workflow.Record) error
lookupFn func(ctx context.Context, runID string) (*workflow.Record, error)
deleteFn func(wr *workflow.Record) ([]byte, error)
expectedErr error
}{
{
Name: "Golden path - custom delete",
storeFn: func(ctx context.Context, record *workflow.Record) error {
require.Equal(t, workflow.RunStateDataDeleted, record.RunState)
return nil
},
lookupFn: func(ctx context.Context, runID string) (*workflow.Record, error) {
o := object{
pii: "my name",
notPII: "name of the month",
}
b, err := workflow.Marshal(&o)
require.Nil(t, err)
return &workflow.Record{
Object: b,
RunState: workflow.RunStateRequestedDataDeleted,
}, nil
},
deleteFn: func(wr *workflow.Record) ([]byte, error) {
var o object
err := workflow.Unmarshal(wr.Object, &o)
require.Nil(t, err)
o.pii = ""
return workflow.Marshal(&o)
},
expectedErr: nil,
},
{
Name: "Golden path - default delete",
storeFn: func(ctx context.Context, record *workflow.Record) error {
require.Equal(t, workflow.RunStateDataDeleted, record.RunState)
return nil
},
lookupFn: func(ctx context.Context, runID string) (*workflow.Record, error) {
o := object{
pii: "my name",
notPII: "name of the month",
}
b, err := workflow.Marshal(&o)
require.Nil(t, err)
return &workflow.Record{
Object: b,
RunState: workflow.RunStateRequestedDataDeleted,
}, nil
},
expectedErr: nil,
},
{
Name: "Return err on lookup error",
lookupFn: func(ctx context.Context, runID string) (*workflow.Record, error) {
return nil, testErr
},
expectedErr: testErr,
},
{
Name: "Return err on store error",
lookupFn: func(ctx context.Context, runID string) (*workflow.Record, error) {
return &workflow.Record{
RunState: workflow.RunStateRequestedDataDeleted,
}, nil
},
storeFn: func(ctx context.Context, record *workflow.Record) error {
return testErr
},
expectedErr: testErr,
},
}
for _, tc := range testCases {
t.Run(tc.Name, func(t *testing.T) {
ctx := context.Background()
streamer := memstreamer.New()
workflowName := "example"
producer, err := streamer.NewProducer(ctx, workflow.DeleteTopic(workflowName))
require.Nil(t, err)
t.Cleanup(func() {
producer.Close()
})
runID := "uuid"
err = producer.Send(ctx, runID, 1, map[workflow.Header]string{
workflow.HeaderWorkflowName: workflowName,
workflow.HeaderForeignID: "1",
workflow.HeaderTopic: workflow.DeleteTopic(workflowName),
workflow.HeaderRunState: workflow.RunStateRequestedDataDeleted.String(),
})
require.Nil(t, err)
consumer, err := streamer.NewConsumer(ctx, workflow.DeleteTopic(workflowName), "consumer-1")
require.Nil(t, err)
t.Cleanup(func() {
consumer.Close()
})
err = workflow.DeleteForever(ctx, workflowName, "process-name", consumer, tc.storeFn, tc.lookupFn, tc.deleteFn, time.Hour, clock.RealClock{})
require.True(t, errors.Is(err, tc.expectedErr))
})
}
}