-
-
Notifications
You must be signed in to change notification settings - Fork 234
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1411 from stgraber/cluster
incusd/cluster: Validate cluster HTTPS address on join too
- Loading branch information
Showing
5 changed files
with
100 additions
and
232 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
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,92 @@ | ||
package util_test | ||
|
||
import ( | ||
"fmt" | ||
"net" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
|
||
"github.com/lxc/incus/v6/internal/ports" | ||
internalUtil "github.com/lxc/incus/v6/internal/util" | ||
) | ||
|
||
func TestCanonicalNetworkAddress(t *testing.T) { | ||
cases := map[string]string{ | ||
"127.0.0.1": "127.0.0.1:8443", | ||
"127.0.0.1:": "127.0.0.1:8443", | ||
"foo.bar": "foo.bar:8443", | ||
"foo.bar:": "foo.bar:8443", | ||
"foo.bar:8444": "foo.bar:8444", | ||
"192.168.1.1:443": "192.168.1.1:443", | ||
"f921:7358:4510:3fce:ac2e:844:2a35:54e": "[f921:7358:4510:3fce:ac2e:844:2a35:54e]:8443", | ||
"[f921:7358:4510:3fce:ac2e:844:2a35:54e]": "[f921:7358:4510:3fce:ac2e:844:2a35:54e]:8443", | ||
"[f921:7358:4510:3fce:ac2e:844:2a35:54e]:": "[f921:7358:4510:3fce:ac2e:844:2a35:54e]:8443", | ||
"[f921:7358:4510:3fce:ac2e:844:2a35:54e]:8444": "[f921:7358:4510:3fce:ac2e:844:2a35:54e]:8444", | ||
} | ||
|
||
for in, out := range cases { | ||
t.Run(in, func(t *testing.T) { | ||
assert.Equal(t, out, internalUtil.CanonicalNetworkAddress(in, ports.HTTPSDefaultPort)) | ||
}) | ||
} | ||
} | ||
|
||
func TestIsAddressCovered(t *testing.T) { | ||
type testCase struct { | ||
address1 string | ||
address2 string | ||
covered bool | ||
} | ||
|
||
cases := []testCase{ | ||
{"127.0.0.1:8443", "127.0.0.1:8443", true}, | ||
{"garbage", "127.0.0.1:8443", false}, | ||
{"127.0.0.1:8444", "garbage", false}, | ||
{"127.0.0.1:8444", "127.0.0.1:8443", false}, | ||
{"127.0.0.1:8443", "0.0.0.0:8443", true}, | ||
{"[::1]:8443", "0.0.0.0:8443", false}, | ||
{":8443", "0.0.0.0:8443", false}, | ||
{"127.0.0.1:8443", "[::]:8443", true}, | ||
{"[::1]:8443", "[::]:8443", true}, | ||
{"[::1]:8443", ":8443", true}, | ||
{":8443", "[::]:8443", true}, | ||
{"0.0.0.0:8443", "[::]:8443", true}, | ||
{"10.30.0.8:8443", "[::]", true}, | ||
{"localhost:8443", "127.0.0.1:8443", true}, | ||
{"localhost:8443", "[::]:8443", true}, | ||
} | ||
|
||
// Test some localhost cases too | ||
ips, err := net.LookupHost("localhost") | ||
if err == nil && len(ips) > 0 && ips[0] == "127.0.0.1" { | ||
cases = append(cases, testCase{"127.0.0.1:8443", "localhost:8443", true}) | ||
} | ||
|
||
ips, err = net.LookupHost("ip6-localhost") | ||
if err == nil && len(ips) > 0 && ips[0] == "::1" { | ||
cases = append(cases, testCase{"[::1]:8443", "ip6-localhost:8443", true}) | ||
} | ||
|
||
for _, c := range cases { | ||
t.Run(fmt.Sprintf("%s-%s", c.address1, c.address2), func(t *testing.T) { | ||
covered := internalUtil.IsAddressCovered(c.address1, c.address2) | ||
if c.covered { | ||
assert.True(t, covered) | ||
} else { | ||
assert.False(t, covered) | ||
} | ||
}) | ||
} | ||
} | ||
|
||
// This is a check against Go's stdlib to make sure that when listening to a port without specifying an address, | ||
// then an IPv6 wildcard is assumed. | ||
func TestListenImplicitIPv6Wildcard(t *testing.T) { | ||
listener, err := net.Listen("tcp", ":9999") | ||
require.NoError(t, err) | ||
defer func() { _ = listener.Close() }() | ||
|
||
assert.Equal(t, "[::]:9999", listener.Addr().String()) | ||
} |