-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfn_test.go
268 lines (257 loc) · 6.78 KB
/
fn_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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
package main
import (
"context"
"testing"
fnv1 "github.com/crossplane/function-sdk-go/proto/v1"
"github.com/crossplane/function-sdk-go/resource"
"github.com/crossplane/function-sdk-go/resource/composed"
"github.com/crossplane/function-sdk-go/response"
"github.com/google/go-cmp/cmp"
"github.com/google/go-cmp/cmp/cmpopts"
"google.golang.org/protobuf/testing/protocmp"
"google.golang.org/protobuf/types/known/durationpb"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"github.com/crossplane/crossplane-runtime/pkg/logging"
)
func TestRunFunction(t *testing.T) {
type args struct {
ctx context.Context
req *fnv1.RunFunctionRequest
}
type want struct {
rsp *fnv1.RunFunctionResponse
err error
}
cases := map[string]struct {
reason string
args args
want want
}{
"BadInput": {
reason: "The Function should return an error when given incorrect input",
args: args{
req: &fnv1.RunFunctionRequest{
Meta: &fnv1.RequestMeta{Tag: "tag-manager"},
Input: resource.MustStructJSON(`{
"apiVersion": "tag-manger.fn.crossplane.io/v1beta1",
"kind": "ManagedTags",
"addTagsX": [
{
"type": "FromValue",
"policy": "Replace",
"tags": {
"from": "value",
"add": "tags"
}
},
{
"type": "FromCompositeFieldPath",
"fromFieldPath": "spec.parameters.additionalTags",
"policy": "Replace"
},
{
"type": "FromCompositeFieldPath",
"fromFieldPath": "spec.parameters.optionalTags",
"policy": "Retain"
}
],
"ignoreTagsY": [
{
"type": "FromValue",
"policy": "Replace",
"keys": [
"external-tag-1",
"external-tag-2"
]
}
]
}`),
},
},
want: want{
rsp: &fnv1.RunFunctionResponse{
Meta: &fnv1.ResponseMeta{Tag: "tag-manager", Ttl: durationpb.New(response.DefaultTTL)},
Results: []*fnv1.Result{
{
Severity: fnv1.Severity_SEVERITY_FATAL,
Message: "cannot get Function input from *v1.RunFunctionRequest: cannot get function input *v1beta1.ManagedTags from *v1.RunFunctionRequest...",
Target: fnv1.Target_TARGET_COMPOSITE.Enum(),
},
},
},
},
},
"ResponseIsReturned": {
reason: "The Function should return an empty result with no desired resources",
args: args{
req: &fnv1.RunFunctionRequest{
Meta: &fnv1.RequestMeta{Tag: "tag-manager"},
Input: resource.MustStructJSON(`{
"apiVersion": "tag-manger.fn.crossplane.io/v1beta1",
"kind": "ManagedTags",
"addTags": [
{
"type": "FromValue",
"policy": "Replace",
"tags": {
"from": "value",
"add": "tags"
}
},
{
"type": "FromCompositeFieldPath",
"fromFieldPath": "spec.parameters.additionalTags",
"policy": "Replace"
},
{
"type": "FromCompositeFieldPath",
"fromFieldPath": "spec.parameters.optionalTags",
"policy": "Retain"
}
],
"ignoreTags": [
{
"type": "FromValue",
"policy": "Replace",
"keys": [
"external-tag-1",
"external-tag-2"
]
}
]
}`),
},
},
want: want{
rsp: &fnv1.RunFunctionResponse{
Desired: &fnv1.State{},
Meta: &fnv1.ResponseMeta{Tag: "tag-manager", Ttl: durationpb.New(response.DefaultTTL)},
Results: []*fnv1.Result{
{
Severity: fnv1.Severity_SEVERITY_NORMAL,
Message: "Successfully Processed tags",
Target: fnv1.Target_TARGET_COMPOSITE.Enum(),
},
},
},
},
},
}
for name, tc := range cases {
t.Run(name, func(t *testing.T) {
f := &Function{log: logging.NewNopLogger()}
rsp, err := f.RunFunction(tc.args.ctx, tc.args.req)
if diff := cmp.Diff(tc.want.rsp, rsp,
protocmp.IgnoreFields(&fnv1.Result{}, "message"), // ignore error messages on parsing input
protocmp.Transform()); diff != "" {
t.Errorf("%s\nf.RunFunction(...): -want rsp, +got rsp:\n%s", tc.reason, diff)
}
if diff := cmp.Diff(tc.want.err, err, cmpopts.EquateErrors()); diff != "" {
t.Errorf("%s\nf.RunFunction(...): -want err, +got err:\n%s", tc.reason, diff)
}
})
}
}
func TestIgnoreResource(t *testing.T) {
type args struct {
res *resource.DesiredComposed
}
cases := map[string]struct {
reason string
args args
want bool
}{
"NilResource": {
reason: "Nil Resource returns true",
args: args{},
want: true,
},
"ResourceWithoutLabels": {
reason: "A resource without Labels returns false",
args: args{
res: &resource.DesiredComposed{
Resource: &composed.Unstructured{Unstructured: unstructured.Unstructured{
Object: map[string]any{
"apiVersion": "example.crossplane.io/v1",
"kind": "TagManager",
"metadata": map[string]any{
"name": "test-resource",
},
},
}},
},
},
want: false,
},
"ResourceWithLabelTrue": {
reason: "A resource with Label set to true returns true",
args: args{
res: &resource.DesiredComposed{
Resource: &composed.Unstructured{
Unstructured: unstructured.Unstructured{
Object: map[string]any{
"apiVersion": "example.crossplane.io/v1",
"kind": "TagManager",
"metadata": map[string]any{
"name": "test-resource",
"labels": map[string]any{
IgnoreResourceLabel: "True",
},
},
},
},
},
},
},
want: true,
},
"ResourceWithLabelTrueMixedCase": {
reason: "Label value should support mixed case",
args: args{
res: &resource.DesiredComposed{
Resource: &composed.Unstructured{Unstructured: unstructured.Unstructured{
Object: map[string]any{
"apiVersion": "example.crossplane.io/v1",
"kind": "TagManager",
"metadata": map[string]any{
"name": "test-resource",
"labels": map[string]any{
IgnoreResourceLabel: "trUe",
},
},
},
}},
},
},
want: true,
},
"ResourceWithLabelFalse": {
reason: "A resource with label set to not true returns false",
args: args{
res: &resource.DesiredComposed{
Resource: &composed.Unstructured{Unstructured: unstructured.Unstructured{
Object: map[string]any{
"apiVersion": "example.crossplane.io/v1",
"kind": "TagManager",
"metadata": map[string]any{
"name": "test-resource",
"labels": map[string]any{
IgnoreResourceLabel: "False",
},
},
},
}},
},
},
want: false,
},
}
for name, tc := range cases {
t.Run(name, func(t *testing.T) {
res := IgnoreResource(tc.args.res)
if res != tc.want {
t.Errorf("%s\nignoreResource(...): -want: %t, +got: %t", tc.reason, tc.want, res)
}
})
}
}