2024-06-26 14:30:02 +03:00
|
|
|
package client_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
"net/netip"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/client"
|
|
|
|
"github.com/AdguardTeam/golibs/testutil"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
// newStorage is a helper function that returns a client storage filled with
|
|
|
|
// persistent clients from the m. It also generates a UID for each client.
|
|
|
|
func newStorage(tb testing.TB, m []*client.Persistent) (s *client.Storage) {
|
|
|
|
tb.Helper()
|
|
|
|
|
2024-07-01 17:34:47 +03:00
|
|
|
s = client.NewStorage(&client.Config{
|
|
|
|
AllowedTags: nil,
|
|
|
|
})
|
2024-06-26 14:30:02 +03:00
|
|
|
|
|
|
|
for _, c := range m {
|
|
|
|
c.UID = client.MustNewUID()
|
|
|
|
require.NoError(tb, s.Add(c))
|
|
|
|
}
|
|
|
|
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
// mustParseMAC is wrapper around [net.ParseMAC] that panics if there is an
|
|
|
|
// error.
|
|
|
|
func mustParseMAC(s string) (mac net.HardwareAddr) {
|
|
|
|
mac, err := net.ParseMAC(s)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return mac
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStorage_Add(t *testing.T) {
|
|
|
|
const (
|
|
|
|
existingName = "existing_name"
|
|
|
|
existingClientID = "existing_client_id"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
existingClientUID = client.MustNewUID()
|
|
|
|
existingIP = netip.MustParseAddr("1.2.3.4")
|
|
|
|
existingSubnet = netip.MustParsePrefix("1.2.3.0/24")
|
|
|
|
)
|
|
|
|
|
|
|
|
existingClient := &client.Persistent{
|
|
|
|
Name: existingName,
|
|
|
|
IPs: []netip.Addr{existingIP},
|
|
|
|
Subnets: []netip.Prefix{existingSubnet},
|
|
|
|
ClientIDs: []string{existingClientID},
|
|
|
|
UID: existingClientUID,
|
|
|
|
}
|
|
|
|
|
2024-07-01 17:34:47 +03:00
|
|
|
s := client.NewStorage(&client.Config{
|
|
|
|
AllowedTags: nil,
|
|
|
|
})
|
2024-06-26 14:30:02 +03:00
|
|
|
err := s.Add(existingClient)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
cli *client.Persistent
|
|
|
|
wantErrMsg string
|
|
|
|
}{{
|
|
|
|
name: "basic",
|
|
|
|
cli: &client.Persistent{
|
|
|
|
Name: "basic",
|
|
|
|
IPs: []netip.Addr{netip.MustParseAddr("1.1.1.1")},
|
|
|
|
UID: client.MustNewUID(),
|
|
|
|
},
|
|
|
|
wantErrMsg: "",
|
|
|
|
}, {
|
|
|
|
name: "duplicate_uid",
|
|
|
|
cli: &client.Persistent{
|
|
|
|
Name: "no_uid",
|
|
|
|
IPs: []netip.Addr{netip.MustParseAddr("2.2.2.2")},
|
|
|
|
UID: existingClientUID,
|
|
|
|
},
|
|
|
|
wantErrMsg: `adding client: another client "existing_name" uses the same uid`,
|
|
|
|
}, {
|
|
|
|
name: "duplicate_name",
|
|
|
|
cli: &client.Persistent{
|
|
|
|
Name: existingName,
|
|
|
|
IPs: []netip.Addr{netip.MustParseAddr("3.3.3.3")},
|
|
|
|
UID: client.MustNewUID(),
|
|
|
|
},
|
|
|
|
wantErrMsg: `adding client: another client uses the same name "existing_name"`,
|
|
|
|
}, {
|
|
|
|
name: "duplicate_ip",
|
|
|
|
cli: &client.Persistent{
|
|
|
|
Name: "duplicate_ip",
|
|
|
|
IPs: []netip.Addr{existingIP},
|
|
|
|
UID: client.MustNewUID(),
|
|
|
|
},
|
|
|
|
wantErrMsg: `adding client: another client "existing_name" uses the same IP "1.2.3.4"`,
|
|
|
|
}, {
|
|
|
|
name: "duplicate_subnet",
|
|
|
|
cli: &client.Persistent{
|
|
|
|
Name: "duplicate_subnet",
|
|
|
|
Subnets: []netip.Prefix{existingSubnet},
|
|
|
|
UID: client.MustNewUID(),
|
|
|
|
},
|
|
|
|
wantErrMsg: `adding client: another client "existing_name" ` +
|
|
|
|
`uses the same subnet "1.2.3.0/24"`,
|
|
|
|
}, {
|
|
|
|
name: "duplicate_client_id",
|
|
|
|
cli: &client.Persistent{
|
|
|
|
Name: "duplicate_client_id",
|
|
|
|
ClientIDs: []string{existingClientID},
|
|
|
|
UID: client.MustNewUID(),
|
|
|
|
},
|
|
|
|
wantErrMsg: `adding client: another client "existing_name" ` +
|
|
|
|
`uses the same ClientID "existing_client_id"`,
|
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
err = s.Add(tc.cli)
|
|
|
|
|
|
|
|
testutil.AssertErrorMsg(t, tc.wantErrMsg, err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStorage_RemoveByName(t *testing.T) {
|
|
|
|
const (
|
|
|
|
existingName = "existing_name"
|
|
|
|
)
|
|
|
|
|
|
|
|
existingClient := &client.Persistent{
|
|
|
|
Name: existingName,
|
|
|
|
IPs: []netip.Addr{netip.MustParseAddr("1.2.3.4")},
|
|
|
|
UID: client.MustNewUID(),
|
|
|
|
}
|
|
|
|
|
2024-07-01 17:34:47 +03:00
|
|
|
s := client.NewStorage(&client.Config{
|
|
|
|
AllowedTags: nil,
|
|
|
|
})
|
2024-06-26 14:30:02 +03:00
|
|
|
err := s.Add(existingClient)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
want assert.BoolAssertionFunc
|
|
|
|
name string
|
|
|
|
cliName string
|
|
|
|
}{{
|
|
|
|
name: "existing_client",
|
|
|
|
cliName: existingName,
|
|
|
|
want: assert.True,
|
|
|
|
}, {
|
|
|
|
name: "non_existing_client",
|
|
|
|
cliName: "non_existing_client",
|
|
|
|
want: assert.False,
|
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
tc.want(t, s.RemoveByName(tc.cliName))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("duplicate_remove", func(t *testing.T) {
|
2024-07-01 17:34:47 +03:00
|
|
|
s = client.NewStorage(&client.Config{
|
|
|
|
AllowedTags: nil,
|
|
|
|
})
|
2024-06-26 14:30:02 +03:00
|
|
|
err = s.Add(existingClient)
|
|
|
|
require.NoError(t, err)
|
|
|
|
|
|
|
|
assert.True(t, s.RemoveByName(existingName))
|
|
|
|
assert.False(t, s.RemoveByName(existingName))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStorage_Find(t *testing.T) {
|
|
|
|
const (
|
|
|
|
cliIPNone = "1.2.3.4"
|
|
|
|
cliIP1 = "1.1.1.1"
|
|
|
|
cliIP2 = "2.2.2.2"
|
|
|
|
|
|
|
|
cliIPv6 = "1:2:3::4"
|
|
|
|
|
|
|
|
cliSubnet = "2.2.2.0/24"
|
|
|
|
cliSubnetIP = "2.2.2.222"
|
|
|
|
|
|
|
|
cliID = "client-id"
|
|
|
|
cliMAC = "11:11:11:11:11:11"
|
|
|
|
|
|
|
|
linkLocalIP = "fe80::abcd:abcd:abcd:ab%eth0"
|
|
|
|
linkLocalSubnet = "fe80::/16"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
clientWithBothFams = &client.Persistent{
|
|
|
|
Name: "client1",
|
|
|
|
IPs: []netip.Addr{
|
|
|
|
netip.MustParseAddr(cliIP1),
|
|
|
|
netip.MustParseAddr(cliIPv6),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
clientWithSubnet = &client.Persistent{
|
|
|
|
Name: "client2",
|
|
|
|
IPs: []netip.Addr{netip.MustParseAddr(cliIP2)},
|
|
|
|
Subnets: []netip.Prefix{netip.MustParsePrefix(cliSubnet)},
|
|
|
|
}
|
|
|
|
|
|
|
|
clientWithMAC = &client.Persistent{
|
|
|
|
Name: "client_with_mac",
|
|
|
|
MACs: []net.HardwareAddr{mustParseMAC(cliMAC)},
|
|
|
|
}
|
|
|
|
|
|
|
|
clientWithID = &client.Persistent{
|
|
|
|
Name: "client_with_id",
|
|
|
|
ClientIDs: []string{cliID},
|
|
|
|
}
|
|
|
|
|
|
|
|
clientLinkLocal = &client.Persistent{
|
|
|
|
Name: "client_link_local",
|
|
|
|
Subnets: []netip.Prefix{netip.MustParsePrefix(linkLocalSubnet)},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
clients := []*client.Persistent{
|
|
|
|
clientWithBothFams,
|
|
|
|
clientWithSubnet,
|
|
|
|
clientWithMAC,
|
|
|
|
clientWithID,
|
|
|
|
clientLinkLocal,
|
|
|
|
}
|
|
|
|
s := newStorage(t, clients)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
want *client.Persistent
|
|
|
|
name string
|
|
|
|
ids []string
|
|
|
|
}{{
|
|
|
|
name: "ipv4_ipv6",
|
|
|
|
ids: []string{cliIP1, cliIPv6},
|
|
|
|
want: clientWithBothFams,
|
|
|
|
}, {
|
|
|
|
name: "ipv4_subnet",
|
|
|
|
ids: []string{cliIP2, cliSubnetIP},
|
|
|
|
want: clientWithSubnet,
|
|
|
|
}, {
|
|
|
|
name: "mac",
|
|
|
|
ids: []string{cliMAC},
|
|
|
|
want: clientWithMAC,
|
|
|
|
}, {
|
|
|
|
name: "client_id",
|
|
|
|
ids: []string{cliID},
|
|
|
|
want: clientWithID,
|
|
|
|
}, {
|
|
|
|
name: "client_link_local_subnet",
|
|
|
|
ids: []string{linkLocalIP},
|
|
|
|
want: clientLinkLocal,
|
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
for _, id := range tc.ids {
|
|
|
|
c, ok := s.Find(id)
|
|
|
|
require.True(t, ok)
|
|
|
|
|
|
|
|
assert.Equal(t, tc.want, c)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("not_found", func(t *testing.T) {
|
|
|
|
_, ok := s.Find(cliIPNone)
|
|
|
|
assert.False(t, ok)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStorage_FindLoose(t *testing.T) {
|
|
|
|
const (
|
|
|
|
nonExistingClientID = "client_id"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
ip = netip.MustParseAddr("fe80::a098:7654:32ef:ff1")
|
|
|
|
ipWithZone = netip.MustParseAddr("fe80::1ff:fe23:4567:890a%eth2")
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
clientNoZone = &client.Persistent{
|
|
|
|
Name: "client",
|
|
|
|
IPs: []netip.Addr{ip},
|
|
|
|
}
|
|
|
|
|
|
|
|
clientWithZone = &client.Persistent{
|
|
|
|
Name: "client_with_zone",
|
|
|
|
IPs: []netip.Addr{ipWithZone},
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
s := newStorage(
|
|
|
|
t,
|
|
|
|
[]*client.Persistent{
|
|
|
|
clientNoZone,
|
|
|
|
clientWithZone,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
ip netip.Addr
|
|
|
|
want assert.BoolAssertionFunc
|
|
|
|
wantCli *client.Persistent
|
|
|
|
name string
|
|
|
|
}{{
|
|
|
|
name: "without_zone",
|
|
|
|
ip: ip,
|
|
|
|
wantCli: clientNoZone,
|
|
|
|
want: assert.True,
|
|
|
|
}, {
|
|
|
|
name: "with_zone",
|
|
|
|
ip: ipWithZone,
|
|
|
|
wantCli: clientWithZone,
|
|
|
|
want: assert.True,
|
|
|
|
}, {
|
|
|
|
name: "zero_address",
|
|
|
|
ip: netip.Addr{},
|
|
|
|
wantCli: nil,
|
|
|
|
want: assert.False,
|
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
c, ok := s.FindLoose(tc.ip.WithZone(""), nonExistingClientID)
|
|
|
|
assert.Equal(t, tc.wantCli, c)
|
|
|
|
tc.want(t, ok)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStorage_Update(t *testing.T) {
|
|
|
|
const (
|
|
|
|
clientName = "client_name"
|
|
|
|
obstructingName = "obstructing_name"
|
|
|
|
obstructingClientID = "obstructing_client_id"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
obstructingIP = netip.MustParseAddr("1.2.3.4")
|
|
|
|
obstructingSubnet = netip.MustParsePrefix("1.2.3.0/24")
|
|
|
|
)
|
|
|
|
|
|
|
|
obstructingClient := &client.Persistent{
|
|
|
|
Name: obstructingName,
|
|
|
|
IPs: []netip.Addr{obstructingIP},
|
|
|
|
Subnets: []netip.Prefix{obstructingSubnet},
|
|
|
|
ClientIDs: []string{obstructingClientID},
|
|
|
|
}
|
|
|
|
|
|
|
|
clientToUpdate := &client.Persistent{
|
|
|
|
Name: clientName,
|
|
|
|
IPs: []netip.Addr{netip.MustParseAddr("1.1.1.1")},
|
|
|
|
}
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
cli *client.Persistent
|
|
|
|
wantErrMsg string
|
|
|
|
}{{
|
|
|
|
name: "basic",
|
|
|
|
cli: &client.Persistent{
|
|
|
|
Name: "basic",
|
|
|
|
IPs: []netip.Addr{netip.MustParseAddr("1.1.1.1")},
|
|
|
|
UID: client.MustNewUID(),
|
|
|
|
},
|
|
|
|
wantErrMsg: "",
|
|
|
|
}, {
|
|
|
|
name: "duplicate_name",
|
|
|
|
cli: &client.Persistent{
|
|
|
|
Name: obstructingName,
|
|
|
|
IPs: []netip.Addr{netip.MustParseAddr("3.3.3.3")},
|
|
|
|
UID: client.MustNewUID(),
|
|
|
|
},
|
|
|
|
wantErrMsg: `updating client: another client uses the same name "obstructing_name"`,
|
|
|
|
}, {
|
|
|
|
name: "duplicate_ip",
|
|
|
|
cli: &client.Persistent{
|
|
|
|
Name: "duplicate_ip",
|
|
|
|
IPs: []netip.Addr{obstructingIP},
|
|
|
|
UID: client.MustNewUID(),
|
|
|
|
},
|
|
|
|
wantErrMsg: `updating client: another client "obstructing_name" uses the same IP "1.2.3.4"`,
|
|
|
|
}, {
|
|
|
|
name: "duplicate_subnet",
|
|
|
|
cli: &client.Persistent{
|
|
|
|
Name: "duplicate_subnet",
|
|
|
|
Subnets: []netip.Prefix{obstructingSubnet},
|
|
|
|
UID: client.MustNewUID(),
|
|
|
|
},
|
|
|
|
wantErrMsg: `updating client: another client "obstructing_name" ` +
|
|
|
|
`uses the same subnet "1.2.3.0/24"`,
|
|
|
|
}, {
|
|
|
|
name: "duplicate_client_id",
|
|
|
|
cli: &client.Persistent{
|
|
|
|
Name: "duplicate_client_id",
|
|
|
|
ClientIDs: []string{obstructingClientID},
|
|
|
|
UID: client.MustNewUID(),
|
|
|
|
},
|
|
|
|
wantErrMsg: `updating client: another client "obstructing_name" ` +
|
|
|
|
`uses the same ClientID "obstructing_client_id"`,
|
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
s := newStorage(
|
|
|
|
t,
|
|
|
|
[]*client.Persistent{
|
|
|
|
clientToUpdate,
|
|
|
|
obstructingClient,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
err := s.Update(clientName, tc.cli)
|
|
|
|
testutil.AssertErrorMsg(t, tc.wantErrMsg, err)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestStorage_RangeByName(t *testing.T) {
|
|
|
|
sortedClients := []*client.Persistent{{
|
|
|
|
Name: "clientA",
|
|
|
|
ClientIDs: []string{"A"},
|
|
|
|
}, {
|
|
|
|
Name: "clientB",
|
|
|
|
ClientIDs: []string{"B"},
|
|
|
|
}, {
|
|
|
|
Name: "clientC",
|
|
|
|
ClientIDs: []string{"C"},
|
|
|
|
}, {
|
|
|
|
Name: "clientD",
|
|
|
|
ClientIDs: []string{"D"},
|
|
|
|
}, {
|
|
|
|
Name: "clientE",
|
|
|
|
ClientIDs: []string{"E"},
|
|
|
|
}}
|
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
want []*client.Persistent
|
|
|
|
}{{
|
|
|
|
name: "basic",
|
|
|
|
want: sortedClients,
|
|
|
|
}, {
|
|
|
|
name: "nil",
|
|
|
|
want: nil,
|
|
|
|
}, {
|
|
|
|
name: "one_element",
|
|
|
|
want: sortedClients[:1],
|
|
|
|
}, {
|
|
|
|
name: "two_elements",
|
|
|
|
want: sortedClients[:2],
|
|
|
|
}}
|
|
|
|
|
|
|
|
for _, tc := range testCases {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
s := newStorage(t, tc.want)
|
|
|
|
|
|
|
|
var got []*client.Persistent
|
|
|
|
s.RangeByName(func(c *client.Persistent) (cont bool) {
|
|
|
|
got = append(got, c)
|
|
|
|
|
|
|
|
return true
|
|
|
|
})
|
|
|
|
|
|
|
|
assert.Equal(t, tc.want, got)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|