forked from knative/serving
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crd.go
276 lines (243 loc) · 8.93 KB
/
crd.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
269
270
271
272
273
274
275
276
/*
Copyright 2018 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 test
// crd contains functions that construct boilerplate CRD definitions.
import (
"strings"
"testing"
"unicode"
ptest "github.com/knative/pkg/test"
"github.com/knative/pkg/test/helpers"
"github.com/knative/serving/pkg/apis/serving/v1alpha1"
v1alpha1testing "github.com/knative/serving/pkg/reconciler/v1alpha1/testing"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
const (
// Default for user containers in e2e tests. This value is lower than the general
// Knative's default so as to run more effectively in CI with limited resources.
defaultRequestCPU = "100m"
testNamePrefix = "Test"
)
// ResourceNames holds names of various resources.
type ResourceNames struct {
Config string
Route string
Revision string
Service string
TrafficTarget string
Domain string
Image string
}
// ResourceObjects holds types of the resource objects.
type ResourceObjects struct {
Route *v1alpha1.Route
Config *v1alpha1.Configuration
Service *v1alpha1.Service
Revision *v1alpha1.Revision
}
// Route returns a Route object in namespace using the route and configuration
// names in names.
func Route(namespace string, names ResourceNames, fopt ...v1alpha1testing.RouteOption) *v1alpha1.Route {
route := &v1alpha1.Route{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: names.Route,
},
Spec: v1alpha1.RouteSpec{
Traffic: []v1alpha1.TrafficTarget{{
Name: names.TrafficTarget,
ConfigurationName: names.Config,
Percent: 100,
}},
},
}
for _, opt := range fopt {
opt(route)
}
return route
}
// BlueGreenRoute returns a Route object in namespace using the route and configuration
// names in names. Traffic is split evenly between blue and green.
func BlueGreenRoute(namespace string, names, blue, green ResourceNames) *v1alpha1.Route {
return &v1alpha1.Route{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: names.Route,
},
Spec: v1alpha1.RouteSpec{
Traffic: []v1alpha1.TrafficTarget{{
Name: blue.TrafficTarget,
RevisionName: blue.Revision,
Percent: 50,
}, {
Name: green.TrafficTarget,
RevisionName: green.Revision,
Percent: 50,
}},
},
}
}
// ConfigurationSpec returns the spec of a configuration to be used throughout different
// CRD helpers.
func ConfigurationSpec(imagePath string, options *Options) *v1alpha1.ConfigurationSpec {
if options.ContainerResources.Limits == nil && options.ContainerResources.Requests == nil {
options.ContainerResources = corev1.ResourceRequirements{
Requests: corev1.ResourceList{
corev1.ResourceCPU: resource.MustParse(defaultRequestCPU),
},
}
}
spec := &v1alpha1.ConfigurationSpec{
RevisionTemplate: v1alpha1.RevisionTemplateSpec{
Spec: v1alpha1.RevisionSpec{
Container: corev1.Container{
Image: imagePath,
Resources: options.ContainerResources,
ReadinessProbe: options.ReadinessProbe,
Ports: options.ContainerPorts,
SecurityContext: options.SecurityContext,
},
ContainerConcurrency: v1alpha1.RevisionContainerConcurrencyType(options.ContainerConcurrency),
},
},
}
if options.RevisionTimeoutSeconds > 0 {
spec.RevisionTemplate.Spec.TimeoutSeconds = options.RevisionTimeoutSeconds
}
if options.EnvVars != nil {
spec.RevisionTemplate.Spec.Container.Env = options.EnvVars
}
return spec
}
// Configuration returns a Configuration object in namespace with the name names.Config
// that uses the image specified by names.Image
func Configuration(namespace string, names ResourceNames, options *Options, fopt ...v1alpha1testing.ConfigOption) *v1alpha1.Configuration {
config := &v1alpha1.Configuration{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: names.Config,
},
Spec: *ConfigurationSpec(ptest.ImagePath(names.Image), options),
}
if options.ContainerPorts != nil && len(options.ContainerPorts) > 0 {
config.Spec.RevisionTemplate.Spec.Container.Ports = options.ContainerPorts
}
for _, opt := range fopt {
opt(config)
}
return config
}
// ConfigurationWithBuild returns a Configuration object in the `namespace`
// with the name `names.Config` that uses the provided Build spec `build`
// and image specified by `names.Image`.
func ConfigurationWithBuild(namespace string, names ResourceNames, build *v1alpha1.RawExtension) *v1alpha1.Configuration {
return &v1alpha1.Configuration{
ObjectMeta: metav1.ObjectMeta{
Namespace: namespace,
Name: names.Config,
},
Spec: v1alpha1.ConfigurationSpec{
Build: build,
RevisionTemplate: v1alpha1.RevisionTemplateSpec{
Spec: v1alpha1.RevisionSpec{
Container: corev1.Container{
Image: ptest.ImagePath(names.Image),
},
},
},
},
}
}
// LatestService returns a RunLatest Service object in namespace with the name names.Service
// that uses the image specified by names.Image.
func LatestService(namespace string, names ResourceNames, options *Options, fopt ...v1alpha1testing.ServiceOption) *v1alpha1.Service {
a := append([]v1alpha1testing.ServiceOption{
v1alpha1testing.WithRunLatestConfigSpec(*ConfigurationSpec(ptest.ImagePath(names.Image), options)),
}, fopt...)
return v1alpha1testing.Service(names.Service, namespace, a...)
}
// ReleaseLatestService returns a Release Service object in namespace with the name names.Service
// that uses the image specified by names.Image and `@latest` as the only revision.
func ReleaseLatestService(namespace string, names ResourceNames, options *Options, fopt ...v1alpha1testing.ServiceOption) *v1alpha1.Service {
a := append([]v1alpha1testing.ServiceOption{
v1alpha1testing.WithReleaseRolloutConfigSpec(*ConfigurationSpec(ptest.ImagePath(names.Image), options),
[]string{v1alpha1.ReleaseLatestRevisionKeyword}...)}, fopt...)
return v1alpha1testing.Service(names.Service, namespace, a...)
}
// ReleaseService returns a Release Service object in namespace with the name names.Service that uses
// the image specified by names.Image. It also takes a list of 1-2 revisons and a rolloutPercent to be
// used to configure routing
func ReleaseService(svc *v1alpha1.Service, revisions []string, rolloutPercent int) *v1alpha1.Service {
var config v1alpha1.ConfigurationSpec
if svc.Spec.RunLatest != nil {
config = svc.Spec.RunLatest.Configuration
} else if svc.Spec.Release != nil {
config = svc.Spec.Release.Configuration
} else if svc.Spec.DeprecatedPinned != nil {
config = svc.Spec.DeprecatedPinned.Configuration
}
return &v1alpha1.Service{
ObjectMeta: svc.ObjectMeta,
Spec: v1alpha1.ServiceSpec{
Release: &v1alpha1.ReleaseType{
Revisions: revisions,
RolloutPercent: rolloutPercent,
Configuration: config,
},
},
}
}
// ManualService returns a Manual Service object in namespace with the name names.Service
func ManualService(svc *v1alpha1.Service) *v1alpha1.Service {
return &v1alpha1.Service{
ObjectMeta: svc.ObjectMeta,
Spec: v1alpha1.ServiceSpec{
Manual: &v1alpha1.ManualType{},
},
}
}
// AppendRandomString will generate a random string that begins with prefix. This is useful
// if you want to make sure that your tests can run at the same time against the same
// environment without conflicting. This method will seed rand with the current time when
// called for the first time.
var AppendRandomString = helpers.AppendRandomString
// ObjectNameForTest generates a random object name based on the test name.
func ObjectNameForTest(t *testing.T) string {
return AppendRandomString(makeK8sNamePrefix(strings.TrimPrefix(t.Name(), testNamePrefix)))
}
// SubServiceNameForTest generates a random service name based on the test name and
// the given subservice name.
func SubServiceNameForTest(t *testing.T, subsvc string) string {
fullPrefix := strings.TrimPrefix(t.Name(), testNamePrefix) + "-" + subsvc
return AppendRandomString(makeK8sNamePrefix(fullPrefix))
}
// makeK8sNamePrefix converts each chunk of non-alphanumeric character into a single dash
// and also convert camelcase tokens into dash-delimited lowercase tokens.
func makeK8sNamePrefix(s string) string {
var sb strings.Builder
newToken := false
for _, c := range s {
if !(unicode.IsLetter(c) || unicode.IsNumber(c)) {
newToken = true
continue
}
if sb.Len() > 0 && (newToken || unicode.IsUpper(c)) {
sb.WriteRune('-')
}
sb.WriteRune(unicode.ToLower(c))
newToken = false
}
return sb.String()
}