| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /*
- Copyright © The ESO Authors
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- https://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- // Package commontest provides testing utilities for controllers.
- package commontest
- import (
- "context"
- "fmt"
- "time"
- v1 "k8s.io/api/core/v1"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/util/wait"
- "sigs.k8s.io/controller-runtime/pkg/client"
- )
- // CreateNamespace creates a new namespace in the cluster.
- func CreateNamespace(baseName string, c client.Client) (string, error) {
- return CreateNamespaceWithLabels(baseName, c, map[string]string{})
- }
- // CreateNamespaceWithLabels creates a namespace with the given labels and returns its name.
- func CreateNamespaceWithLabels(baseName string, c client.Client, labels map[string]string) (string, error) {
- genName := fmt.Sprintf("ctrl-test-%v", baseName)
- ns := &v1.Namespace{
- ObjectMeta: metav1.ObjectMeta{
- GenerateName: genName,
- Labels: labels,
- },
- }
- err := wait.PollUntilContextTimeout(context.Background(), time.Second, 10*time.Second, true, func(ctx context.Context) (done bool, err error) {
- err = c.Create(ctx, ns)
- if err != nil {
- return false, nil
- }
- return true, nil
- })
- if err != nil {
- return "", err
- }
- return ns.Name, nil
- }
- // HasOwnerRef checks if the given ObjectMeta has an owner reference with the specified kind and name.
- func HasOwnerRef(meta metav1.ObjectMeta, kind, name string) bool {
- for _, ref := range meta.OwnerReferences {
- if ref.Kind == kind && ref.Name == name {
- return true
- }
- }
- return false
- }
- // FirstManagedFieldForManager returns the JSON representation of the first `metadata.managedFields` entry for a given manager.
- func FirstManagedFieldForManager(meta metav1.ObjectMeta, managerName string) string {
- for _, ref := range meta.ManagedFields {
- if ref.Manager == managerName {
- return ref.FieldsV1.String()
- }
- }
- return fmt.Sprintf("No managed fields managed by %s", managerName)
- }
|