mirror of https://github.com/fluxcd/cli-utils.git
158 lines
3.9 KiB
Go
158 lines
3.9 KiB
Go
// Copyright 2020 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package e2e
|
|
|
|
import (
|
|
"context"
|
|
"strings"
|
|
"time"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
"sigs.k8s.io/cli-utils/pkg/apply"
|
|
"sigs.k8s.io/cli-utils/pkg/apply/event"
|
|
"sigs.k8s.io/cli-utils/pkg/inventory"
|
|
"sigs.k8s.io/cli-utils/pkg/kstatus/status"
|
|
"sigs.k8s.io/cli-utils/pkg/object"
|
|
"sigs.k8s.io/cli-utils/pkg/testutil"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
)
|
|
|
|
func crdTest(_ client.Client, invConfig InventoryConfig, inventoryName, namespaceName string) {
|
|
By("apply a set of resources that includes both a crd and a cr")
|
|
applier := invConfig.ApplierFactoryFunc()
|
|
|
|
inv := invConfig.InvWrapperFunc(invConfig.InventoryFactoryFunc(inventoryName, namespaceName, "test"))
|
|
|
|
resources := []*unstructured.Unstructured{
|
|
deploymentManifest(namespaceName),
|
|
manifestToUnstructured(cr),
|
|
manifestToUnstructured(crd),
|
|
}
|
|
|
|
ch := applier.Run(context.TODO(), inv, resources, apply.Options{
|
|
ReconcileTimeout: 2 * time.Minute,
|
|
EmitStatusEvents: true,
|
|
})
|
|
|
|
var applierEvents []event.Event
|
|
for e := range ch {
|
|
Expect(e.Type).NotTo(Equal(event.ErrorType))
|
|
applierEvents = append(applierEvents, e)
|
|
}
|
|
err := testutil.VerifyEvents([]testutil.ExpEvent{
|
|
{
|
|
EventType: event.ApplyType,
|
|
ApplyEvent: &testutil.ExpApplyEvent{
|
|
Operation: event.Created,
|
|
Identifier: object.UnstructuredToObjMeta(manifestToUnstructured(crd)),
|
|
Error: nil,
|
|
},
|
|
},
|
|
{
|
|
EventType: event.StatusType,
|
|
StatusEvent: &testutil.ExpStatusEvent{
|
|
Identifier: object.UnstructuredToObjMeta(manifestToUnstructured(crd)),
|
|
Status: status.CurrentStatus,
|
|
Error: nil,
|
|
},
|
|
},
|
|
{
|
|
EventType: event.ApplyType,
|
|
ApplyEvent: &testutil.ExpApplyEvent{
|
|
Operation: event.Created,
|
|
},
|
|
},
|
|
{
|
|
EventType: event.ApplyType,
|
|
ApplyEvent: &testutil.ExpApplyEvent{
|
|
Operation: event.Created,
|
|
},
|
|
},
|
|
}, applierEvents)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
|
|
By("destroy the resources, including the crd")
|
|
destroyer := invConfig.DestroyerFactoryFunc()
|
|
option := &apply.DestroyerOption{InventoryPolicy: inventory.AdoptIfNoInventory}
|
|
destroyerEvents := runCollectNoErr(destroyer.Run(inv, option))
|
|
err = testutil.VerifyEvents([]testutil.ExpEvent{
|
|
{
|
|
EventType: event.DeleteType,
|
|
DeleteEvent: &testutil.ExpDeleteEvent{
|
|
Operation: event.Deleted,
|
|
Error: nil,
|
|
},
|
|
},
|
|
{
|
|
EventType: event.DeleteType,
|
|
DeleteEvent: &testutil.ExpDeleteEvent{
|
|
Operation: event.Deleted,
|
|
Error: nil,
|
|
},
|
|
},
|
|
{
|
|
EventType: event.DeleteType,
|
|
DeleteEvent: &testutil.ExpDeleteEvent{
|
|
Operation: event.Deleted,
|
|
Identifier: object.UnstructuredToObjMeta(manifestToUnstructured(crd)),
|
|
Error: nil,
|
|
},
|
|
},
|
|
}, destroyerEvents)
|
|
Expect(err).ToNot(HaveOccurred())
|
|
}
|
|
|
|
var crd = []byte(strings.TrimSpace(`
|
|
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: examples.cli-utils.example.io
|
|
spec:
|
|
conversion:
|
|
strategy: None
|
|
group: cli-utils.example.io
|
|
names:
|
|
kind: Example
|
|
listKind: ExampleList
|
|
plural: examples
|
|
singular: example
|
|
scope: Cluster
|
|
versions:
|
|
- name: v1alpha1
|
|
schema:
|
|
openAPIV3Schema:
|
|
description: Example for cli-utils e2e tests
|
|
properties:
|
|
apiVersion:
|
|
type: string
|
|
kind:
|
|
type: string
|
|
metadata:
|
|
type: object
|
|
spec:
|
|
description: Example for cli-utils e2e tests
|
|
properties:
|
|
replicas:
|
|
description: Number of replicas
|
|
type: integer
|
|
required:
|
|
- replicas
|
|
type: object
|
|
type: object
|
|
served: true
|
|
storage: true
|
|
subresources: {}
|
|
`))
|
|
|
|
var cr = []byte(strings.TrimSpace(`
|
|
apiVersion: cli-utils.example.io/v1alpha1
|
|
kind: Example
|
|
metadata:
|
|
name: example-cr
|
|
spec:
|
|
replicas: 4
|
|
`))
|