This repository was archived by the owner on Jan 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathutils_for_tests.go
397 lines (359 loc) · 13.9 KB
/
utils_for_tests.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
package it
import (
"context"
"fmt"
"math/rand"
"os"
"testing"
"time"
"github.com/ash2k/stager"
"github.com/atlassian/ctrl"
cond_v1 "github.com/atlassian/ctrl/apis/condition/v1"
ctrlApp "github.com/atlassian/ctrl/app"
"github.com/atlassian/ctrl/options"
"github.com/atlassian/smith/cmd/smith/app"
"github.com/atlassian/smith/examples/sleeper"
smith_v1 "github.com/atlassian/smith/pkg/apis/smith/v1"
smithClientset "github.com/atlassian/smith/pkg/client/clientset_generated/clientset"
"github.com/atlassian/smith/pkg/client/smart"
"github.com/atlassian/smith/pkg/crd"
"github.com/atlassian/smith/pkg/resources"
"github.com/atlassian/smith/pkg/util"
smith_testing "github.com/atlassian/smith/pkg/util/testing"
sc_v1b1 "github.com/kubernetes-sigs/service-catalog/pkg/apis/servicecatalog/v1beta1"
"github.com/pkg/errors"
"github.com/prometheus/client_golang/prometheus"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.uber.org/zap"
"go.uber.org/zap/zaptest"
apps_v1 "k8s.io/api/apps/v1"
core_v1 "k8s.io/api/core/v1"
apiExtClientset "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
apiext_v1b1inf "k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1beta1"
apiext_v1b1list "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1beta1"
api_errors "k8s.io/apimachinery/pkg/api/errors"
meta_v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/fields"
"k8s.io/apimachinery/pkg/runtime"
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
"k8s.io/apimachinery/pkg/watch"
"k8s.io/client-go/dynamic"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"
"k8s.io/client-go/restmapper"
"k8s.io/client-go/tools/cache"
toolswatch "k8s.io/client-go/tools/watch"
"sigs.k8s.io/yaml"
)
var (
appsV1Scheme = runtime.NewScheme()
scV1B1Scheme = runtime.NewScheme()
)
func init() {
utilruntime.Must(apps_v1.SchemeBuilder.AddToScheme(appsV1Scheme))
utilruntime.Must(sc_v1b1.SchemeBuilder.AddToScheme(scV1B1Scheme))
}
type TestFunc func(context.Context, *testing.T, *Config, ...interface{})
type Config struct {
T *testing.T
Logger *zap.Logger
Namespace string
Bundle *smith_v1.Bundle
CreatedBundle *smith_v1.Bundle
Config *rest.Config
MainClient kubernetes.Interface
Sc *smart.DynamicClient
SmithClient smithClientset.Interface
}
func (cfg *Config) CreateObject(ctxTest context.Context, obj, res runtime.Object, resourcePath string, client rest.Interface) {
metaObj := obj.(meta_v1.Object)
cfg.T.Logf("Creating a new object %s/%s of kind %s", cfg.Namespace, metaObj.GetName(), obj.GetObjectKind().GroupVersionKind().Kind)
require.NoError(cfg.T, client.Post().
Context(ctxTest).
Namespace(cfg.Namespace).
Resource(resourcePath).
Body(obj).
Do().
Into(res))
}
func (cfg *Config) AwaitBundleCondition(ctx context.Context, conditions ...toolswatch.ConditionFunc) *smith_v1.Bundle {
// Before checking any conditions, ensure that .status is up to date with .spec
generation := IsBundleObservedGenerationCond(cfg.Namespace, cfg.Bundle.Name)
for i, cond := range conditions {
conditions[i] = AndCond(generation, cond)
}
lw := cache.NewListWatchFromClient(cfg.SmithClient.SmithV1().RESTClient(), smith_v1.BundleResourcePlural, cfg.Namespace, fields.Everything())
event, err := toolswatch.UntilWithSync(ctx, lw, &smith_v1.Bundle{}, nil, conditions...)
require.NoError(cfg.T, err)
return event.Object.(*smith_v1.Bundle)
}
func AndCond(conds ...toolswatch.ConditionFunc) toolswatch.ConditionFunc {
return func(event watch.Event) (bool, error) {
for _, c := range conds {
res, err := c(event)
if err != nil || !res {
return res, err
}
}
return true, nil
}
}
func IsBundleStatusCond(namespace, name string, cType cond_v1.ConditionType, status cond_v1.ConditionStatus) toolswatch.ConditionFunc {
return func(event watch.Event) (bool, error) {
metaObj := event.Object.(meta_v1.Object)
if metaObj.GetNamespace() != namespace || metaObj.GetName() != name {
return false, nil
}
switch event.Type {
case watch.Added, watch.Modified:
b := event.Object.(*smith_v1.Bundle)
_, cond := cond_v1.FindCondition(b.Status.Conditions, cType)
return cond != nil && cond.Status == status, nil
default:
return false, errors.Errorf("unexpected event type %q: %v", event.Type, event.Object)
}
}
}
// IsBundleResourceCond is a condition that checks conditions of a resource.
// Sometimes it is necessary to await a particular resource condition(s) to happen, not a Bundle condition.
func IsBundleResourceCond(t *testing.T, namespace, name string, resource smith_v1.ResourceName, conds ...*cond_v1.Condition) toolswatch.ConditionFunc {
return func(event watch.Event) (bool, error) {
metaObj := event.Object.(meta_v1.Object)
if metaObj.GetNamespace() != namespace || metaObj.GetName() != name {
return false, nil
}
switch event.Type {
case watch.Added, watch.Modified:
b := event.Object.(*smith_v1.Bundle)
_, resStatus := b.Status.GetResourceStatus(resource)
if resStatus == nil {
t.Logf("Resource status for resource %q not found. Bundle status: %s", resource, &b.Status)
return false, nil
}
for _, condExpected := range conds {
_, condActual := cond_v1.FindCondition(resStatus.Conditions, condExpected.Type)
if condActual == nil {
t.Logf("Resource condition %q for resource %q not found", condExpected.Type, resource)
return false, nil
}
if condExpected.Status != condActual.Status ||
condExpected.Reason != condActual.Reason ||
condExpected.Message != condActual.Message {
t.Logf("Resource condition %q for resource %q not satisfied: %s", condExpected.Type, resource, condActual)
return false, nil
}
t.Logf("Resource condition %q for resource %q satisfied", condExpected.Type, resource)
}
return true, nil
default:
return false, errors.Errorf("unexpected event type %q: %v", event.Type, event.Object)
}
}
}
func IsBundleObservedGenerationCond(namespace, name string) toolswatch.ConditionFunc {
return func(event watch.Event) (bool, error) {
metaObj := event.Object.(meta_v1.Object)
if metaObj.GetNamespace() != namespace || metaObj.GetName() != name {
return false, nil
}
b := event.Object.(*smith_v1.Bundle)
return b.Status.ObservedGeneration >= b.Generation, nil
}
}
func IsPodSpecAnnotationCond(t *testing.T, namespace, name, annotation, value string) toolswatch.ConditionFunc {
return func(event watch.Event) (bool, error) {
metaObj := event.Object.(meta_v1.Object)
if metaObj.GetNamespace() != namespace || metaObj.GetName() != name {
return false, nil
}
deployment := &apps_v1.Deployment{}
err := util.ConvertType(appsV1Scheme, event.Object, deployment)
if err != nil {
return false, err
}
annotations := deployment.Spec.Template.Annotations
actual, ok := annotations[annotation]
if !ok {
t.Logf("Pod Spec annotation %s is not set", annotation)
return false, nil
}
if actual != value {
t.Logf("Ignoring Pod Spec annotation %s value %s. Expecting %s", annotation, actual, value)
return false, nil
}
return true, nil
}
}
// IsServiceInstanceUpdateRequestsCond allows to wait until spec.updateRequests of a ServiceInstance is greater than
// the provided value.
func IsServiceInstanceUpdateRequestsCond(t *testing.T, namespace, name string, value int64) toolswatch.ConditionFunc {
return func(event watch.Event) (bool, error) {
metaObj := event.Object.(meta_v1.Object)
if metaObj.GetNamespace() != namespace || metaObj.GetName() != name {
return false, nil
}
si := &sc_v1b1.ServiceInstance{}
err := util.ConvertType(scV1B1Scheme, event.Object, si)
if err != nil {
return false, err
}
return si.Spec.UpdateRequests > value, nil
}
}
func TestSetup(t *testing.T) (*rest.Config, *kubernetes.Clientset, *smithClientset.Clientset) {
config, err := options.LoadRestClientConfig("voyager-test", options.RestClientOptions{
APIQPS: 10,
ClientConfigFileFrom: os.Getenv("KUBERNETES_CONFIG_FROM"),
ClientConfigFileName: os.Getenv("KUBERNETES_CONFIG_FILENAME"),
ClientContext: os.Getenv("KUBERNETES_CONFIG_CONTEXT"),
})
require.NoError(t, err)
mainClient, err := kubernetes.NewForConfig(config)
require.NoError(t, err)
smithClient, err := smithClientset.NewForConfig(config)
require.NoError(t, err)
return config, mainClient, smithClient
}
func SetupApp(t *testing.T, bundle *smith_v1.Bundle, serviceCatalog, createBundle bool, test TestFunc, args ...interface{}) {
convertBundleResourcesToUnstrucutred(t, bundle)
config, mainClient, smithClient := TestSetup(t)
rm := restmapper.NewDeferredDiscoveryRESTMapper(
&smart.CachedDiscoveryClient{
DiscoveryInterface: mainClient.Discovery(),
},
)
dynamicClient, err := dynamic.NewForConfig(config)
require.NoError(t, err)
sc := &smart.DynamicClient{
DynamicClient: dynamicClient,
RESTMapper: rm,
}
logger := zaptest.NewLogger(t)
defer logger.Sync() // nolint: errcheck
cfg := &Config{
T: t,
Logger: logger,
Namespace: fmt.Sprintf("smith-it-%d", rand.Uint32()),
Bundle: bundle,
Config: config,
MainClient: mainClient,
Sc: sc,
SmithClient: smithClient,
}
t.Logf("Creating namespace %q", cfg.Namespace)
_, err = mainClient.CoreV1().Namespaces().Create(&core_v1.Namespace{
ObjectMeta: meta_v1.ObjectMeta{
Name: cfg.Namespace,
},
})
require.NoError(t, err)
defer func() {
cli := smithClient.SmithV1().Bundles(cfg.Namespace)
b, err := cli.Get(bundle.Name, meta_v1.GetOptions{})
if err == nil {
if t.Failed() {
bundleYaml, err := yaml.Marshal(b)
if assert.NoError(t, err) {
t.Logf("%s", bundleYaml)
}
}
if len(b.Finalizers) > 0 {
t.Logf("Removing finalizers from Bundle %q", bundle.Name)
b.Finalizers = nil
_, err = cli.Update(b)
assert.NoError(t, err)
}
} else if !api_errors.IsNotFound(err) {
assert.NoError(t, err) // unexpected error
}
t.Logf("Deleting namespace %q", cfg.Namespace)
assert.NoError(t, mainClient.CoreV1().Namespaces().Delete(cfg.Namespace, nil))
}()
stgr := stager.New()
defer stgr.Shutdown()
ctxTest, cancel := context.WithTimeout(context.Background(), 200*time.Second)
defer cancel()
apiExtClient, err := apiExtClientset.NewForConfig(config)
require.NoError(t, err)
crdInf := apiext_v1b1inf.NewCustomResourceDefinitionInformer(apiExtClient, 0, cache.Indexers{})
stage := stgr.NextStage()
stage.StartWithChannel(crdInf.Run)
// We must wait for crdInf to populate its cache to avoid reading from an empty cache
// in resources.EnsureCrdExistsAndIsEstablished().
if !cache.WaitForCacheSync(ctxTest.Done(), crdInf.HasSynced) {
t.Fatal("wait for CRD Informer was cancelled")
}
crdLister := apiext_v1b1list.NewCustomResourceDefinitionLister(crdInf.GetIndexer())
require.NoError(t, resources.EnsureCrdExistsAndIsEstablished(ctxTest, logger, apiExtClient, crdLister, sleeper.Crd()))
require.NoError(t, resources.EnsureCrdExistsAndIsEstablished(ctxTest, logger, apiExtClient, crdLister, crd.BundleCrd()))
stage.StartWithContext(func(ctx context.Context) {
apl := &ctrlApp.App{
Logger: logger,
MainClient: mainClient,
PrometheusRegistry: prometheus.NewPedanticRegistry(),
Name: "smith",
RestConfig: config,
GenericNamespacedControllerOptions: options.GenericNamespacedControllerOptions{
GenericControllerOptions: options.GenericControllerOptions{
Workers: 2,
},
Namespace: cfg.Namespace,
},
Controllers: []ctrl.Constructor{
&app.BundleControllerConstructor{
ServiceCatalogSupport: serviceCatalog,
},
},
}
if e := apl.Run(ctx); e != context.Canceled && e != context.DeadlineExceeded {
assert.NoError(t, e)
}
})
if createBundle {
res := &smith_v1.Bundle{}
cfg.CreateObject(ctxTest, bundle, res, smith_v1.BundleResourcePlural, smithClient.SmithV1().RESTClient())
cfg.CreatedBundle = res
}
test(ctxTest, t, cfg, args...)
}
func (cfg *Config) AssertBundle(ctx context.Context, bundle *smith_v1.Bundle) *smith_v1.Bundle {
bundleRes := cfg.AwaitBundleCondition(ctx,
IsBundleStatusCond(cfg.Namespace, cfg.Bundle.Name, smith_v1.BundleReady, cond_v1.ConditionTrue))
smith_testing.AssertCondition(cfg.T, bundleRes, smith_v1.BundleReady, cond_v1.ConditionTrue)
smith_testing.AssertCondition(cfg.T, bundleRes, smith_v1.BundleInProgress, cond_v1.ConditionFalse)
smith_testing.AssertCondition(cfg.T, bundleRes, smith_v1.BundleError, cond_v1.ConditionFalse)
if assert.Len(cfg.T, bundleRes.Spec.Resources, len(bundle.Spec.Resources), "%#v", bundleRes) {
for i, res := range bundle.Spec.Resources {
spec, err := util.RuntimeToUnstructured(res.Spec.Object)
if !assert.NoError(cfg.T, err) {
continue
}
actual, err := util.RuntimeToUnstructured(bundleRes.Spec.Resources[i].Spec.Object)
if !assert.NoError(cfg.T, err) {
continue
}
assert.Equal(cfg.T, spec, actual, "%#v", bundleRes)
smith_testing.AssertResourceCondition(cfg.T, bundleRes, res.Name, smith_v1.ResourceBlocked, cond_v1.ConditionFalse)
smith_testing.AssertResourceCondition(cfg.T, bundleRes, res.Name, smith_v1.ResourceInProgress, cond_v1.ConditionFalse)
smith_testing.AssertResourceCondition(cfg.T, bundleRes, res.Name, smith_v1.ResourceReady, cond_v1.ConditionTrue)
smith_testing.AssertResourceCondition(cfg.T, bundleRes, res.Name, smith_v1.ResourceError, cond_v1.ConditionFalse)
}
}
return bundleRes
}
func (cfg *Config) AssertBundleTimeout(ctx context.Context, bundle *smith_v1.Bundle) *smith_v1.Bundle {
ctxTimeout, cancel := context.WithTimeout(ctx, 5*time.Second)
defer cancel()
return cfg.AssertBundle(ctxTimeout, bundle)
}
func convertBundleResourcesToUnstrucutred(t *testing.T, bundle *smith_v1.Bundle) {
// Convert all typed objects into unstructured ones
for i, res := range bundle.Spec.Resources {
if res.Spec.Object != nil {
resUnstr, err := util.RuntimeToUnstructured(res.Spec.Object)
require.NoError(t, err)
bundle.Spec.Resources[i].Spec.Object = resUnstr
}
}
}