mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-02-14 18:09:58 +00:00
36 lines
804 B
Go
36 lines
804 B
Go
//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 creation with no Tenant assigned", func() {
|
|
It("should fail", func() {
|
|
tnt := &capsulev1beta2.Tenant{
|
|
Spec: capsulev1beta2.TenantSpec{
|
|
Owners: capsulev1beta2.OwnerListSpec{
|
|
{
|
|
Name: "missing",
|
|
Kind: "User",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
ns := NewNamespace("")
|
|
cs := ownerClient(tnt.Spec.Owners[0])
|
|
_, err := cs.CoreV1().Namespaces().Create(context.TODO(), ns, metav1.CreateOptions{})
|
|
Expect(err).ShouldNot(Succeed())
|
|
})
|
|
})
|