-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Philip Laine <philip.laine@gmail.com>
- Loading branch information
1 parent
5e0a331
commit 0ad9799
Showing
11 changed files
with
703 additions
and
34 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
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,45 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// SPDX-FileCopyrightText: 2021-Present The Zarf Authors | ||
|
||
// Package dns contains DNS related functionality. | ||
package dns | ||
|
||
import ( | ||
"errors" | ||
"fmt" | ||
"net/url" | ||
"regexp" | ||
"strconv" | ||
) | ||
|
||
var ( | ||
// localClusterServiceRegex is used to match the local cluster service format: | ||
localClusterServiceRegex = regexp.MustCompile(`^(?P<name>[^\.]+)\.(?P<namespace>[^\.]+)\.svc\.cluster\.local$`) | ||
) | ||
|
||
// IsServiceURL returns true if the give url complies with the service url format. | ||
func IsServiceURL(serviceURL string) bool { | ||
_, _, _, err := ParseServiceURL(serviceURL) | ||
return err == nil | ||
} | ||
|
||
// ParseServiceURL takes a serviceURL and parses it to find the service info for connecting to the cluster. The string is expected to follow the following format: | ||
// Example serviceURL: http://{SERVICE_NAME}.{NAMESPACE}.svc.cluster.local:{PORT}. | ||
func ParseServiceURL(serviceURL string) (string, string, int, error) { | ||
parsedURL, err := url.Parse(serviceURL) | ||
if err != nil { | ||
return "", "", 0, err | ||
} | ||
if parsedURL.Port() == "" { | ||
return "", "", 0, errors.New("service url does not have a port") | ||
} | ||
remotePort, err := strconv.Atoi(parsedURL.Port()) | ||
if err != nil { | ||
return "", "", 0, err | ||
} | ||
matches := localClusterServiceRegex.FindStringSubmatch(parsedURL.Hostname()) | ||
if len(matches) != 3 { | ||
return "", "", 0, fmt.Errorf("invalid service url %s", serviceURL) | ||
} | ||
return matches[2], matches[1], remotePort, nil | ||
} |
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,84 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// SPDX-FileCopyrightText: 2021-Present The Zarf Authors | ||
|
||
package dns | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestIsServiceURL(t *testing.T) { | ||
t.Parallel() | ||
|
||
tests := []struct { | ||
name string | ||
serviceURL string | ||
expected bool | ||
}{ | ||
{ | ||
name: "is service url", | ||
serviceURL: "http://registry.zarf.svc.cluster.local:1", | ||
expected: true, | ||
}, | ||
{ | ||
name: "is not service url", | ||
serviceURL: "https://zarf.dev", | ||
expected: false, | ||
}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
t.Parallel() | ||
|
||
result := IsServiceURL(tt.serviceURL) | ||
require.Equal(t, tt.expected, result) | ||
}) | ||
} | ||
} | ||
|
||
func TestParseServiceURL(t *testing.T) { | ||
t.Parallel() | ||
|
||
tests := []struct { | ||
name string | ||
serviceURL string | ||
expectedErr string | ||
expectedNamespace string | ||
expectedName string | ||
expectedPort int | ||
}{ | ||
{ | ||
name: "correct service url", | ||
serviceURL: "http://foo.bar.svc.cluster.local:5000", | ||
expectedNamespace: "bar", | ||
expectedName: "foo", | ||
expectedPort: 5000, | ||
}, | ||
{ | ||
name: "invalid service url without port", | ||
serviceURL: "http://google.com", | ||
expectedErr: "service url does not have a port", | ||
}, | ||
{ | ||
name: "invalid service url with port", | ||
serviceURL: "http://google.com:3000", | ||
expectedErr: "invalid service url http://google.com:3000", | ||
}, | ||
} | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
t.Parallel() | ||
|
||
namespace, name, port, err := ParseServiceURL(tt.serviceURL) | ||
if tt.expectedErr != "" { | ||
require.EqualError(t, err, tt.expectedErr) | ||
return | ||
} | ||
require.Equal(t, tt.expectedNamespace, namespace) | ||
require.Equal(t, tt.expectedName, name) | ||
require.Equal(t, tt.expectedPort, port) | ||
}) | ||
} | ||
} |
Oops, something went wrong.