-
Notifications
You must be signed in to change notification settings - Fork 596
/
resources.go
180 lines (158 loc) · 5.04 KB
/
resources.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
/*
Copyright 2020 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package sender
import (
"encoding/json"
"strings"
cloudevents "github.com/cloudevents/sdk-go/v2"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
pkgTest "knative.dev/pkg/test"
)
// EnableTracing enables tracing in sender pod
// Deprecated: Now you should use recordevents.DeployEventSenderOrFail to send events
func EnableTracing() func(*corev1.Pod) {
return func(pod *corev1.Pod) {
pod.Spec.Containers[0].Args = append(
pod.Spec.Containers[0].Args,
"-add-tracing",
"true",
)
}
}
// EnableIncrementalId creates a new incremental id for each event sent from the sender pod. Supported only by event-sender
// Deprecated: Now you should use recordevents.DeployEventSenderOrFail to send events
func EnableIncrementalId() func(*corev1.Pod) {
return func(pod *corev1.Pod) {
pod.Spec.Containers[0].Args = append(
pod.Spec.Containers[0].Args,
"-incremental-id",
"true",
)
}
}
// WithEncoding forces the encoding of the event to send from the sender pod. Supported only by event-sender
// Deprecated: Now you should use recordevents.DeployEventSenderOrFail to send events
func WithEncoding(encoding cloudevents.Encoding) func(*corev1.Pod) {
return func(pod *corev1.Pod) {
pod.Spec.Containers[0].Args = append(
pod.Spec.Containers[0].Args,
"-event-encoding",
encoding.String(),
)
}
}
// WithResponseSink sends the response information as CloudEvent to another sink
// Deprecated: Now you should use recordevents.DeployEventSenderOrFail to send events and start an EventInfoStore on it to assert the responses
func WithResponseSink(responseSink string) func(*corev1.Pod) {
return func(pod *corev1.Pod) {
pod.Spec.Containers[0].Args = append(
pod.Spec.Containers[0].Args,
"-response-sink",
responseSink,
)
}
}
// WithEncoding forces the encoding of the event to send from the sender pod. Supported only by event-sender
// Deprecated: Now you should use recordevents.DeployEventSenderOrFail to send events
func WithAdditionalHeaders(headers map[string]string) func(*corev1.Pod) {
return func(pod *corev1.Pod) {
pod.Spec.Containers[0].Args = append(
pod.Spec.Containers[0].Args,
"-additional-headers",
serializeHeaders(headers),
)
}
}
// EventSenderPod creates a Pod that sends events to the given address.
// Deprecated: Now you should use recordevents.DeployEventSenderOrFail to send events
func EventSenderPod(imageName string, name string, sink string, event cloudevents.Event, options ...func(*corev1.Pod)) (*corev1.Pod, error) {
encodedEvent, err := json.Marshal(event)
if err != nil {
return nil, err
}
args := []string{
"-sink",
sink,
"-event",
string(encodedEvent),
}
p := &corev1.Pod{
ObjectMeta: metav1.ObjectMeta{
Name: name,
},
Spec: corev1.PodSpec{
Containers: []corev1.Container{{
Name: imageName,
Image: pkgTest.ImagePath(imageName),
ImagePullPolicy: corev1.PullIfNotPresent,
Args: args,
}},
// Never restart the event sender Pod.
RestartPolicy: corev1.RestartPolicyNever,
},
}
for _, opt := range options {
opt(p)
}
return p, nil
}
// WithMethod configures the method used to send the http request. Supported only by request-sender
// Deprecated: Now you should use recordevents.DeployEventSenderOrFail to send requests
func WithMethod(method string) func(*corev1.Pod) {
return func(pod *corev1.Pod) {
pod.Spec.Containers[0].Args = append(
pod.Spec.Containers[0].Args,
"-method",
method,
)
}
}
// EventSenderPod creates a Pod that sends http requests to the given address.
// Deprecated: Now you should use recordevents.DeployEventSenderOrFail to send requests
func RequestSenderPod(imageName string, name string, sink string, headers map[string]string, body string, options ...func(*corev1.Pod)) (*corev1.Pod, error) {
args := []string{
"-sink",
sink,
"-headers",
serializeHeaders(headers),
"-body",
body,
}
p := &corev1.Pod{
ObjectMeta: metav1.ObjectMeta{
Name: name,
},
Spec: corev1.PodSpec{
Containers: []corev1.Container{{
Name: imageName,
Image: pkgTest.ImagePath(imageName),
ImagePullPolicy: corev1.PullIfNotPresent,
Args: args,
}},
// Never restart the event sender Pod.
RestartPolicy: corev1.RestartPolicyNever,
},
}
for _, opt := range options {
opt(p)
}
return p, nil
}
func serializeHeaders(headers map[string]string) string {
kv := make([]string, 0, len(headers))
for k, v := range headers {
kv = append(kv, k+"="+v)
}
return strings.Join(kv, ",")
}