Skip to content

Commit

Permalink
Add service Endpoint Validate() method
Browse files Browse the repository at this point in the history
This method can e.g. be used in webhooks to validate if the
configuration in the CR is correct.
  • Loading branch information
stuggi committed May 7, 2024
1 parent 09a6145 commit 8aba36d
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
11 changes: 11 additions & 0 deletions modules/common/service/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ limitations under the License.
package service

import (
"fmt"
"time"

"golang.org/x/exp/slices"

corev1 "k8s.io/api/core/v1"
)

Expand Down Expand Up @@ -60,6 +63,14 @@ func (e *Endpoint) String() string {
return string(*e)
}

// Validate - validates if the endpoint is an allowed one.
func (e *Endpoint) Validate() error {
if !slices.Contains([]Endpoint{EndpointInternal, EndpointPublic}, *e) {
return fmt.Errorf("invalid endpoint type: %s", e.String())
}
return nil
}

func (p *Protocol) String() string {
return string(*p)
}
Expand Down
57 changes: 57 additions & 0 deletions modules/common/service/types_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
/*
Copyright 2024 Red Hat
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
http://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.
*/

// +kubebuilder:object:generate:=true

package service

import (
"fmt"
"testing"

. "github.com/onsi/gomega"
)

func TestEndpointValidate(t *testing.T) {
tests := []struct {
name string
e Endpoint
want error
}{
{
name: "Valid endpoint",
e: EndpointInternal,
want: nil,
},
{
name: "Wrong endpoint",
e: Endpoint("wrooong"),
want: fmt.Errorf("invalid endpoint type: wrooong"),
},
}

for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
g := NewWithT(t)

if tt.want == nil {
g.Expect(tt.e.Validate()).To(Succeed())
} else {
g.Expect(tt.e.Validate()).To(Equal(tt.want))
}
})
}
}

0 comments on commit 8aba36d

Please sign in to comment.