-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api): Add forceTenantPrefix option to Tenant spec
Signed-off-by: samir-tahir <[email protected]>
- Loading branch information
1 parent
f82c2f4
commit 0e9374f
Showing
5 changed files
with
133 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
//go:build e2e | ||
|
||
// 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" | ||
|
||
capsulev1beta2 "github.com/projectcapsule/capsule/api/v1beta2" | ||
) | ||
|
||
var _ = Describe("creating a Namespace with Tenant name prefix enforcement at Tenant scope", func() { | ||
t1 := &capsulev1beta2.Tenant{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: "awesome", | ||
}, | ||
Spec: capsulev1beta2.TenantSpec{ | ||
ForceTenantPrefix: true, | ||
Owners: capsulev1beta2.OwnerListSpec{ | ||
{ | ||
Name: "john", | ||
Kind: "User", | ||
}, | ||
}, | ||
}, | ||
} | ||
t2 := &capsulev1beta2.Tenant{ | ||
ObjectMeta: metav1.ObjectMeta{ | ||
Name: "awesome-tenant", | ||
}, | ||
Spec: capsulev1beta2.TenantSpec{ | ||
Owners: capsulev1beta2.OwnerListSpec{ | ||
{ | ||
Name: "john", | ||
Kind: "User", | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
JustBeforeEach(func() { | ||
EventuallyCreation(func() error { | ||
t1.ResourceVersion = "" | ||
return k8sClient.Create(context.TODO(), t1) | ||
}).Should(Succeed()) | ||
EventuallyCreation(func() error { | ||
t2.ResourceVersion = "" | ||
return k8sClient.Create(context.TODO(), t2) | ||
}).Should(Succeed()) | ||
}) | ||
JustAfterEach(func() { | ||
Expect(k8sClient.Delete(context.TODO(), t1)).Should(Succeed()) | ||
Expect(k8sClient.Delete(context.TODO(), t2)).Should(Succeed()) | ||
}) | ||
|
||
It("should fail when not using prefix, with tenant label for a tenant with ForceTenantPrefix true", func() { | ||
labels := map[string]string{ | ||
"capsule.clastix.io/tenant": t1.GetName(), | ||
} | ||
ns := NewNamespace("awesome", labels) | ||
NamespaceCreation(ns, t1.Spec.Owners[0], defaultTimeoutInterval).ShouldNot(Succeed()) | ||
}) | ||
|
||
It("should succeed when not using prefix, with tenant label for a tenant with ForceTenantPrefix false", func() { | ||
labels := map[string]string{ | ||
"capsule.clastix.io/tenant": t2.GetName(), | ||
} | ||
ns := NewNamespace("awesome", labels) | ||
NamespaceCreation(ns, t2.Spec.Owners[0], defaultTimeoutInterval).Should(Succeed()) | ||
}) | ||
|
||
It("should fail using prefix without capsule.clastix.io/tenant label", func() { | ||
ns := NewNamespace("awesome-namespace") | ||
NamespaceCreation(ns, t1.Spec.Owners[0], defaultTimeoutInterval).ShouldNot(Succeed()) | ||
}) | ||
|
||
It("should succeed and assigned with prefix and label", func() { | ||
labels := map[string]string{ | ||
"capsule.clastix.io/tenant": t1.GetName(), | ||
} | ||
ns := NewNamespace("awesome-tenant", labels) | ||
NamespaceCreation(ns, t1.Spec.Owners[0], defaultTimeoutInterval).Should(Succeed()) | ||
|
||
TenantNamespaceList(t1, defaultTimeoutInterval).Should(ContainElement(ns.GetName())) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters