This repository has been archived by the owner on Jun 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
/
channel.go
187 lines (154 loc) · 4.75 KB
/
channel.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
/*
Copyright 2019 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
http://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 testing
import (
"time"
gcpauthtesthelper "github.com/google/knative-gcp/pkg/apis/configs/gcpauth/testhelper"
"knative.dev/pkg/apis"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
duckv1beta1 "knative.dev/eventing/pkg/apis/duck/v1beta1"
eventingduckv1beta1 "knative.dev/eventing/pkg/apis/duck/v1beta1"
"github.com/google/knative-gcp/pkg/apis/messaging/v1beta1"
)
// ChannelOption enables further configuration of a Channel.
type ChannelOption func(*v1beta1.Channel)
// NewChannel creates a Channel with ChannelOptions
func NewChannel(name, namespace string, so ...ChannelOption) *v1beta1.Channel {
s := &v1beta1.Channel{
ObjectMeta: metav1.ObjectMeta{
Name: name,
Namespace: namespace,
},
}
for _, opt := range so {
opt(s)
}
return s
}
// NewChannelWithoutNamespace creates a Channel with ChannelOptions but without a specific namespace
func NewChannelWithoutNamespace(name string, co ...ChannelOption) *v1beta1.Channel {
c := &v1beta1.Channel{
ObjectMeta: metav1.ObjectMeta{
Name: name,
},
}
for _, opt := range co {
opt(c)
}
c.SetDefaults(gcpauthtesthelper.ContextWithDefaults())
return c
}
func WithChannelUID(uid types.UID) ChannelOption {
return func(c *v1beta1.Channel) {
c.UID = uid
}
}
func WithChannelGenerateName(generateName string) ChannelOption {
return func(c *v1beta1.Channel) {
c.ObjectMeta.GenerateName = generateName
}
}
// WithInitChannelConditions initializes the Channels's conditions.
func WithInitChannelConditions(c *v1beta1.Channel) {
c.Status.InitializeConditions()
}
func WithChannelWorkloadIdentityFailed(reason, message string) ChannelOption {
return func(c *v1beta1.Channel) {
c.Status.MarkWorkloadIdentityFailed(c.ConditionSet(), reason, message)
}
}
func WithChannelTopic(topicID string) ChannelOption {
return func(c *v1beta1.Channel) {
c.Status.MarkTopicReady()
c.Status.TopicID = topicID
}
}
func WithChannelTopicID(topicID string) ChannelOption {
return func(c *v1beta1.Channel) {
c.Status.TopicID = topicID
}
}
func WithChannelTopicFailed(reason, message string) ChannelOption {
return func(c *v1beta1.Channel) {
c.Status.MarkTopicFailed(reason, message)
}
}
func WithChannelTopicUnknown(reason, message string) ChannelOption {
return func(c *v1beta1.Channel) {
c.Status.MarkTopicUnknown(reason, message)
}
}
func WithChannelSpec(spec v1beta1.ChannelSpec) ChannelOption {
return func(c *v1beta1.Channel) {
c.Spec = spec
}
}
func WithChannelSetDefaults(c *v1beta1.Channel) {
c.SetDefaults(gcpauthtesthelper.ContextWithDefaults())
}
func WithChannelServiceAccount(kServiceAccount string) ChannelOption {
return func(c *v1beta1.Channel) {
c.Spec.ServiceAccountName = kServiceAccount
}
}
func WithChannelDeletionTimestamp(c *v1beta1.Channel) {
t := metav1.NewTime(time.Unix(1e9, 0))
c.ObjectMeta.SetDeletionTimestamp(&t)
}
func WithChannelReady(topicID string) ChannelOption {
return func(c *v1beta1.Channel) {
c.Status.InitializeConditions()
c.Status.MarkTopicReady()
c.Status.TopicID = topicID
}
}
func WithChannelAddress(url string) ChannelOption {
return func(c *v1beta1.Channel) {
u, _ := apis.ParseURL(url)
c.Status.SetAddress(u)
}
}
func WithChannelSubscribers(subscribers []duckv1beta1.SubscriberSpec) ChannelOption {
return func(c *v1beta1.Channel) {
c.Spec.SubscribableSpec = &duckv1beta1.SubscribableSpec{
Subscribers: subscribers,
}
}
}
func WithChannelSubscribersStatus(subscribers []eventingduckv1beta1.SubscriberStatus) ChannelOption {
return func(c *v1beta1.Channel) {
c.Status.SubscribableStatus = duckv1beta1.SubscribableStatus{
Subscribers: subscribers,
}
}
}
func WithChannelDeleted(s *v1beta1.Channel) {
t := metav1.NewTime(time.Unix(1e9, 0))
s.ObjectMeta.SetDeletionTimestamp(&t)
}
func WithChannelOwnerReferences(ownerReferences []metav1.OwnerReference) ChannelOption {
return func(c *v1beta1.Channel) {
c.ObjectMeta.OwnerReferences = ownerReferences
}
}
func WithChannelLabels(labels map[string]string) ChannelOption {
return func(c *v1beta1.Channel) {
c.ObjectMeta.Labels = labels
}
}
func WithChannelAnnotations(Annotations map[string]string) ChannelOption {
return func(c *v1beta1.Channel) {
c.ObjectMeta.Annotations = Annotations
}
}