generated from crossplane/function-template-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fn_test.go
132 lines (121 loc) · 3.57 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
package main
import (
"context"
"testing"
"github.com/crossplane/crossplane-runtime/pkg/logging"
"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"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/client-go/kubernetes/fake"
fnv1beta1 "github.com/crossplane/function-sdk-go/proto/v1beta1"
"github.com/crossplane/function-sdk-go/resource"
"github.com/crossplane/function-sdk-go/response"
inputv1beta1 "github.com/crossplane/logging-labeler/input/v1beta1"
)
func TestRunFunction(t *testing.T) {
type args struct {
ctx context.Context
req *fnv1beta1.RunFunctionRequest
}
type want struct {
rsp *fnv1beta1.RunFunctionResponse
err error
}
cases := map[string]struct {
reason string
args args
want want
}{
"ResponseIsReturned": {
reason: "The function should return a response with the desired state.",
args: args{
req: &fnv1beta1.RunFunctionRequest{
Input: resource.MustStructObject(&inputv1beta1.Input{
NamespaceLabel: "testLabel",
}),
Meta: &fnv1beta1.RequestMeta{Tag: "hello"},
Observed: &fnv1beta1.State{
Composite: &fnv1beta1.Resource{
Resource: resource.MustStructJSON(`{
"apiVersion": "caas.telekom.de/v1alpha1",
"kind": "XLogging",
"metadata": {
"name": "test-logging",
"generation": 1
},
"spec": {
"claimRef": {
"apiVersion": "caas.telekom.de/v1alpha1",
"kind": "Logging",
"name": "test-logging",
"namespace": "unit-test"
}
}
}`),
},
},
},
},
want: want{
rsp: &fnv1beta1.RunFunctionResponse{
Meta: &fnv1beta1.ResponseMeta{Tag: "hello", Ttl: durationpb.New(response.DefaultTTL)},
Desired: &fnv1beta1.State{
Resources: map[string]*fnv1beta1.Resource{
"logging": {
Ready: fnv1beta1.Ready_READY_TRUE,
Resource: resource.MustStructJSON(`{
"apiVersion": "logging.banzaicloud.io/v1beta1",
"kind": "Logging",
"spec": {
"controlNamespace": "unit-test",
"watchNamespaceSelector": {
"matchLabels": {
"testLabel": "test-project"
}
},
"allowClusterResourcesFromAllNamespaces": false,
"configCheck": {
"timeoutSeconds": 0
},
"enableRecreateWorkloadOnImmutableFieldChange": false,
"flowConfigCheckDisabled": false,
"skipInvalidResources": false
},
"status": {
"problemsCount": 0
}
}`),
},
},
},
},
},
},
}
client := fake.NewSimpleClientset()
if _, err := client.CoreV1().Namespaces().Create(context.Background(), &corev1.Namespace{
ObjectMeta: metav1.ObjectMeta{
Name: "unit-test",
Labels: map[string]string{
"testLabel": "test-project",
},
},
}, metav1.CreateOptions{}); err != nil {
t.Errorf("client.CoreV1().Namespaces().Create(...): %v", err)
}
for name, tc := range cases {
t.Run(name, func(t *testing.T) {
f := &Function{log: logging.NewNopLogger(), cs: client}
rsp, err := f.RunFunction(tc.args.ctx, tc.args.req)
if diff := cmp.Diff(tc.want.rsp, rsp, 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)
}
})
}
}