Skip to content

Commit

Permalink
allow for a listener with no hostname set
Browse files Browse the repository at this point in the history
Signed-off-by: craig <[email protected]>

rh-pre-commit.version: 2.2.0
rh-pre-commit.check-secrets: ENABLED
  • Loading branch information
maleck13 committed Oct 4, 2024
1 parent 270408f commit 9854604
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 8 deletions.
7 changes: 4 additions & 3 deletions controllers/dnspolicy_dnsrecords.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,12 @@ func (r *DNSPolicyReconciler) reconcileGatewayDNSRecords(ctx context.Context, ga
log.V(3).Info("checking gateway for attached routes ", "gateway", gateway.Name)

for _, listener := range gateway.Spec.Listeners {
listenerHost := *listener.Hostname
if listenerHost == "" {
log.Info("skipping listener no hostname assigned", listener.Name, "in ns ", gateway.Namespace)

if listener.Hostname == nil || *listener.Hostname == "" {
log.Info("skipping listener no hostname assigned", "listener", listener.Name, "in ns ", gateway.Namespace)

Check warning on line 62 in controllers/dnspolicy_dnsrecords.go

View check run for this annotation

Codecov / codecov/patch

controllers/dnspolicy_dnsrecords.go#L62

Added line #L62 was not covered by tests
continue
}

hasAttachedRoute := false
for _, statusListener := range gateway.Status.Listeners {
if string(listener.Name) == string(statusListener.Name) {
Expand Down
2 changes: 2 additions & 0 deletions tests/common/dnspolicy/dnspolicy_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ var _ = Describe("DNSPolicy controller", func() {

It("should validate loadBalancing field correctly", func(ctx SpecContext) {
gateway = tests.NewGatewayBuilder("test-gateway", gatewayClass.Name, testNamespace).
WithHTTPListener(tests.ListenerNameOne, "").
WithHTTPListener(tests.ListenerNameOne, tests.HostTwo(domain)).Gateway

// simple should succeed
Expand Down Expand Up @@ -140,6 +141,7 @@ var _ = Describe("DNSPolicy controller", func() {
It("should validate provider ref field correctly", func(ctx SpecContext) {

gateway = tests.NewGatewayBuilder("test-gateway", gatewayClass.Name, testNamespace).
WithHTTPListener(tests.ListenerNameOne, "").
WithHTTPListener(tests.ListenerNameOne, tests.HostTwo(domain)).Gateway

// should not allow an empty providerRef list
Expand Down
1 change: 1 addition & 0 deletions tests/common/tlspolicy/tlspolicy_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ var _ = Describe("TLSPolicy controller", func() {

By("creating a valid Gateway")
gateway = tests.NewGatewayBuilder("test-gateway", gatewayClass.Name, testNamespace).
WithHTTPListener("no-host", "").
WithHTTPListener("test-listener", "test.example.com").Gateway
Expect(k8sClient.Create(ctx, gateway)).To(Succeed())

Expand Down
16 changes: 11 additions & 5 deletions tests/commons.go
Original file line number Diff line number Diff line change
Expand Up @@ -548,14 +548,20 @@ func (t *GatewayBuilder) WithLabels(labels map[string]string) *GatewayBuilder {
return t
}

func (t *GatewayBuilder) WithHTTPListener(name, hostname string) *GatewayBuilder {
typedHostname := gatewayapiv1.Hostname(hostname)
t.WithListener(gatewayapiv1.Listener{
func (t *GatewayBuilder) WithHTTPListener(name string, hostname string) *GatewayBuilder {

var typedHostname gatewayapiv1.Hostname
gl := gatewayapiv1.Listener{
Name: gatewayapiv1.SectionName(name),
Hostname: &typedHostname,
Port: gatewayapiv1.PortNumber(80),
Protocol: gatewayapiv1.HTTPProtocolType,
})
}
if hostname != "" {
typedHostname = gatewayapiv1.Hostname(hostname)
gl.Hostname = &typedHostname
}

t.WithListener(gl)
return t
}

Expand Down

0 comments on commit 9854604

Please sign in to comment.