2023-04-21 03:21:46 +01:00
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestSplitDomainPort(t *testing.T) {
|
|
|
|
domain, port, ok := SplitDomainPort("www.example.com:5612", 443)
|
|
|
|
assert.True(t, ok, "Output should be true")
|
|
|
|
assert.Equal(t, "www.example.com", domain)
|
2023-04-22 18:11:21 +01:00
|
|
|
assert.Equal(t, int(5612), port)
|
2023-04-21 03:21:46 +01:00
|
|
|
|
|
|
|
domain, port, ok = SplitDomainPort("example.com", 443)
|
|
|
|
assert.True(t, ok, "Output should be true")
|
|
|
|
assert.Equal(t, "example.com", domain)
|
2023-04-22 18:11:21 +01:00
|
|
|
assert.Equal(t, int(443), port)
|
2023-04-21 03:21:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestDomainWithoutPort(t *testing.T) {
|
|
|
|
domain, ok := GetDomainWithoutPort("www.example.com:5612")
|
|
|
|
assert.True(t, ok, "Output should be true")
|
|
|
|
assert.Equal(t, "www.example.com", domain)
|
|
|
|
|
|
|
|
domain, ok = GetDomainWithoutPort("example.com:443")
|
|
|
|
assert.True(t, ok, "Output should be true")
|
|
|
|
assert.Equal(t, "example.com", domain)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestReplaceSubdomainWithWildcard(t *testing.T) {
|
|
|
|
domain, ok := ReplaceSubdomainWithWildcard("www.example.com")
|
|
|
|
assert.True(t, ok, "Output should be true")
|
|
|
|
assert.Equal(t, "*.example.com", domain)
|
|
|
|
|
|
|
|
domain, ok = ReplaceSubdomainWithWildcard("www.example.com:5612")
|
|
|
|
assert.True(t, ok, "Output should be true")
|
|
|
|
assert.Equal(t, "*.example.com:5612", domain)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetBaseDomain(t *testing.T) {
|
2023-04-24 01:35:23 +01:00
|
|
|
domain, ok := GetParentDomain("www.example.com")
|
2023-04-21 03:21:46 +01:00
|
|
|
assert.True(t, ok, "Output should be true")
|
|
|
|
assert.Equal(t, "example.com", domain)
|
|
|
|
|
2023-04-24 01:35:23 +01:00
|
|
|
domain, ok = GetParentDomain("www.example.com:5612")
|
2023-04-21 03:21:46 +01:00
|
|
|
assert.True(t, ok, "Output should be true")
|
|
|
|
assert.Equal(t, "example.com:5612", domain)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestGetTopFqdn(t *testing.T) {
|
|
|
|
domain, ok := GetTopFqdn("www.example.com")
|
|
|
|
assert.True(t, ok, "Output should be true")
|
|
|
|
assert.Equal(t, "example.com", domain)
|
|
|
|
|
|
|
|
domain, ok = GetTopFqdn("www.www.example.com")
|
|
|
|
assert.True(t, ok, "Output should be true")
|
|
|
|
assert.Equal(t, "example.com", domain)
|
|
|
|
}
|