mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-04-09 04:08:47 +00:00
50 lines
1.3 KiB
Go
50 lines
1.3 KiB
Go
// Copyright 2020-2023 Project Capsule Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package e2e
|
|
|
|
import (
|
|
"context"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
|
|
capsulev1beta2 "github.com/projectcapsule/capsule/api/v1beta2"
|
|
"github.com/projectcapsule/capsule/pkg/api"
|
|
)
|
|
|
|
var _ = Describe("Deleting a tenant with protected annotation", Label("tenant"), func() {
|
|
tnt := &capsulev1beta2.Tenant{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: "protected-tenant",
|
|
},
|
|
Spec: capsulev1beta2.TenantSpec{
|
|
PreventDeletion: true,
|
|
Owners: api.OwnerListSpec{
|
|
{
|
|
CoreOwnerSpec: api.CoreOwnerSpec{
|
|
UserSpec: api.UserSpec{
|
|
Name: "john",
|
|
Kind: "User",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
JustAfterEach(func() {
|
|
Expect(k8sClient.Get(context.TODO(), types.NamespacedName{Name: tnt.GetName()}, tnt)).Should(Succeed())
|
|
tnt.Spec.PreventDeletion = false
|
|
Expect(k8sClient.Update(context.TODO(), tnt)).Should(Succeed())
|
|
Expect(k8sClient.Delete(context.TODO(), tnt)).Should(Succeed())
|
|
})
|
|
|
|
It("should fail", func() {
|
|
Expect(k8sClient.Create(context.TODO(), tnt)).Should(Succeed())
|
|
Expect(k8sClient.Delete(context.TODO(), tnt)).ShouldNot(Succeed())
|
|
})
|
|
})
|