2019-06-10 11:33:19 +03:00
|
|
|
package home
|
2019-04-26 15:10:29 +03:00
|
|
|
|
2019-09-18 18:44:27 +03:00
|
|
|
import (
|
2019-12-23 16:59:02 +03:00
|
|
|
"net"
|
2022-10-14 15:29:44 +03:00
|
|
|
"net/netip"
|
2019-12-23 16:59:02 +03:00
|
|
|
"os"
|
2022-01-25 19:47:02 +03:00
|
|
|
"runtime"
|
2019-09-18 18:44:27 +03:00
|
|
|
"testing"
|
2019-12-23 16:59:02 +03:00
|
|
|
"time"
|
|
|
|
|
2020-10-30 13:32:02 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dhcpd"
|
2023-04-06 14:12:50 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/filtering"
|
2022-01-25 19:47:02 +03:00
|
|
|
"github.com/AdguardTeam/golibs/testutil"
|
2019-09-18 18:44:27 +03:00
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2021-03-11 17:32:58 +03:00
|
|
|
"github.com/stretchr/testify/require"
|
2019-09-18 18:44:27 +03:00
|
|
|
)
|
2019-04-26 15:10:29 +03:00
|
|
|
|
2023-04-06 14:12:50 +03:00
|
|
|
// newClientsContainer is a helper that creates a new clients container for
|
|
|
|
// tests.
|
|
|
|
func newClientsContainer() (c *clientsContainer) {
|
|
|
|
c = &clientsContainer{
|
|
|
|
testing: true,
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Init(nil, nil, nil, nil, &filtering.Config{})
|
2019-04-26 15:10:29 +03:00
|
|
|
|
2023-04-06 14:12:50 +03:00
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestClients(t *testing.T) {
|
|
|
|
clients := newClientsContainer()
|
2019-04-26 15:10:29 +03:00
|
|
|
|
2020-12-07 16:04:53 +03:00
|
|
|
t.Run("add_success", func(t *testing.T) {
|
2022-11-09 14:37:07 +03:00
|
|
|
var (
|
|
|
|
cliNone = "1.2.3.4"
|
|
|
|
cli1 = "1.1.1.1"
|
|
|
|
cli2 = "2.2.2.2"
|
|
|
|
|
|
|
|
cliNoneIP = netip.MustParseAddr(cliNone)
|
|
|
|
cli1IP = netip.MustParseAddr(cli1)
|
|
|
|
cli2IP = netip.MustParseAddr(cli2)
|
|
|
|
)
|
|
|
|
|
2021-01-27 18:32:13 +03:00
|
|
|
c := &Client{
|
2022-11-09 14:37:07 +03:00
|
|
|
IDs: []string{cli1, "1:2:3::4", "aa:aa:aa:aa:aa:aa"},
|
2020-12-07 16:04:53 +03:00
|
|
|
Name: "client1",
|
|
|
|
}
|
|
|
|
|
2021-01-27 18:32:13 +03:00
|
|
|
ok, err := clients.Add(c)
|
2021-05-28 13:02:59 +03:00
|
|
|
require.NoError(t, err)
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2021-01-27 18:32:13 +03:00
|
|
|
assert.True(t, ok)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2021-01-27 18:32:13 +03:00
|
|
|
c = &Client{
|
2022-11-09 14:37:07 +03:00
|
|
|
IDs: []string{cli2},
|
2020-12-07 16:04:53 +03:00
|
|
|
Name: "client2",
|
|
|
|
}
|
|
|
|
|
2021-01-27 18:32:13 +03:00
|
|
|
ok, err = clients.Add(c)
|
2021-05-28 13:02:59 +03:00
|
|
|
require.NoError(t, err)
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2021-01-27 18:32:13 +03:00
|
|
|
assert.True(t, ok)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2022-11-09 14:37:07 +03:00
|
|
|
c, ok = clients.Find(cli1)
|
2021-03-11 17:32:58 +03:00
|
|
|
require.True(t, ok)
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2021-01-27 18:32:13 +03:00
|
|
|
assert.Equal(t, "client1", c.Name)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2021-01-27 18:32:13 +03:00
|
|
|
c, ok = clients.Find("1:2:3::4")
|
2021-03-11 17:32:58 +03:00
|
|
|
require.True(t, ok)
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2021-01-27 18:32:13 +03:00
|
|
|
assert.Equal(t, "client1", c.Name)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2022-11-09 14:37:07 +03:00
|
|
|
c, ok = clients.Find(cli2)
|
2021-03-11 17:32:58 +03:00
|
|
|
require.True(t, ok)
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2021-01-27 18:32:13 +03:00
|
|
|
assert.Equal(t, "client2", c.Name)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2023-02-10 16:40:36 +03:00
|
|
|
assert.Equal(t, clients.clientSource(cliNoneIP), ClientSourceNone)
|
|
|
|
assert.Equal(t, clients.clientSource(cli1IP), ClientSourcePersistent)
|
|
|
|
assert.Equal(t, clients.clientSource(cli2IP), ClientSourcePersistent)
|
2020-12-07 16:04:53 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("add_fail_name", func(t *testing.T) {
|
2021-03-11 17:32:58 +03:00
|
|
|
ok, err := clients.Add(&Client{
|
2020-12-07 16:04:53 +03:00
|
|
|
IDs: []string{"1.2.3.5"},
|
|
|
|
Name: "client1",
|
2021-03-11 17:32:58 +03:00
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
require.NoError(t, err)
|
2021-01-27 18:32:13 +03:00
|
|
|
assert.False(t, ok)
|
2020-12-07 16:04:53 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("add_fail_ip", func(t *testing.T) {
|
2021-03-11 17:32:58 +03:00
|
|
|
ok, err := clients.Add(&Client{
|
2020-12-07 16:04:53 +03:00
|
|
|
IDs: []string{"2.2.2.2"},
|
|
|
|
Name: "client3",
|
2021-03-11 17:32:58 +03:00
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
require.Error(t, err)
|
2021-01-27 18:32:13 +03:00
|
|
|
assert.False(t, ok)
|
2020-12-07 16:04:53 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("update_fail_name", func(t *testing.T) {
|
2021-03-11 17:32:58 +03:00
|
|
|
err := clients.Update("client3", &Client{
|
2020-12-07 16:04:53 +03:00
|
|
|
IDs: []string{"1.2.3.0"},
|
|
|
|
Name: "client3",
|
2021-03-11 17:32:58 +03:00
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
require.Error(t, err)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
err = clients.Update("client3", &Client{
|
2020-12-07 16:04:53 +03:00
|
|
|
IDs: []string{"1.2.3.0"},
|
|
|
|
Name: "client2",
|
2021-03-11 17:32:58 +03:00
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
assert.Error(t, err)
|
2020-12-07 16:04:53 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("update_fail_ip", func(t *testing.T) {
|
2021-03-11 17:32:58 +03:00
|
|
|
err := clients.Update("client1", &Client{
|
2020-12-07 16:04:53 +03:00
|
|
|
IDs: []string{"2.2.2.2"},
|
|
|
|
Name: "client1",
|
2021-03-11 17:32:58 +03:00
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
assert.Error(t, err)
|
2020-12-07 16:04:53 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("update_success", func(t *testing.T) {
|
2022-11-09 14:37:07 +03:00
|
|
|
var (
|
|
|
|
cliOld = "1.1.1.1"
|
|
|
|
cliNew = "1.1.1.2"
|
|
|
|
|
|
|
|
cliOldIP = netip.MustParseAddr(cliOld)
|
|
|
|
cliNewIP = netip.MustParseAddr(cliNew)
|
|
|
|
)
|
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
err := clients.Update("client1", &Client{
|
2022-11-09 14:37:07 +03:00
|
|
|
IDs: []string{cliNew},
|
2020-12-07 16:04:53 +03:00
|
|
|
Name: "client1",
|
2021-03-11 17:32:58 +03:00
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
require.NoError(t, err)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2023-02-10 16:40:36 +03:00
|
|
|
assert.Equal(t, clients.clientSource(cliOldIP), ClientSourceNone)
|
|
|
|
assert.Equal(t, clients.clientSource(cliNewIP), ClientSourcePersistent)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
err = clients.Update("client1", &Client{
|
2022-11-09 14:37:07 +03:00
|
|
|
IDs: []string{cliNew},
|
2020-12-07 16:04:53 +03:00
|
|
|
Name: "client1-renamed",
|
|
|
|
UseOwnSettings: true,
|
2021-03-11 17:32:58 +03:00
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
require.NoError(t, err)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2022-11-09 14:37:07 +03:00
|
|
|
c, ok := clients.Find(cliNew)
|
2021-03-11 17:32:58 +03:00
|
|
|
require.True(t, ok)
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2021-01-13 16:56:05 +03:00
|
|
|
assert.Equal(t, "client1-renamed", c.Name)
|
2020-12-07 16:04:53 +03:00
|
|
|
assert.True(t, c.UseOwnSettings)
|
2021-03-11 17:32:58 +03:00
|
|
|
|
|
|
|
nilCli, ok := clients.list["client1"]
|
|
|
|
require.False(t, ok)
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
assert.Nil(t, nilCli)
|
|
|
|
|
|
|
|
require.Len(t, c.IDs, 1)
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2022-11-09 14:37:07 +03:00
|
|
|
assert.Equal(t, cliNew, c.IDs[0])
|
2020-12-07 16:04:53 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("del_success", func(t *testing.T) {
|
2021-01-27 18:32:13 +03:00
|
|
|
ok := clients.Del("client1-renamed")
|
2021-03-11 17:32:58 +03:00
|
|
|
require.True(t, ok)
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2023-02-10 16:40:36 +03:00
|
|
|
assert.Equal(t, clients.clientSource(netip.MustParseAddr("1.1.1.2")), ClientSourceNone)
|
2020-12-07 16:04:53 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("del_fail", func(t *testing.T) {
|
2021-01-27 18:32:13 +03:00
|
|
|
ok := clients.Del("client3")
|
|
|
|
assert.False(t, ok)
|
2020-12-07 16:04:53 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("addhost_success", func(t *testing.T) {
|
2022-11-09 14:37:07 +03:00
|
|
|
ip := netip.MustParseAddr("1.1.1.1")
|
|
|
|
ok := clients.AddHost(ip, "host", ClientSourceARP)
|
2021-01-27 18:32:13 +03:00
|
|
|
assert.True(t, ok)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2022-11-09 14:37:07 +03:00
|
|
|
ok = clients.AddHost(ip, "host2", ClientSourceARP)
|
2021-01-27 18:32:13 +03:00
|
|
|
assert.True(t, ok)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2022-11-09 14:37:07 +03:00
|
|
|
ok = clients.AddHost(ip, "host3", ClientSourceHostsFile)
|
2021-01-27 18:32:13 +03:00
|
|
|
assert.True(t, ok)
|
2020-12-07 16:04:53 +03:00
|
|
|
|
2023-02-10 16:40:36 +03:00
|
|
|
assert.Equal(t, clients.clientSource(ip), ClientSourceHostsFile)
|
2020-12-07 16:04:53 +03:00
|
|
|
})
|
|
|
|
|
2021-06-10 14:54:47 +03:00
|
|
|
t.Run("dhcp_replaces_arp", func(t *testing.T) {
|
2022-11-09 14:37:07 +03:00
|
|
|
ip := netip.MustParseAddr("1.2.3.4")
|
|
|
|
ok := clients.AddHost(ip, "from_arp", ClientSourceARP)
|
2021-06-29 15:53:28 +03:00
|
|
|
assert.True(t, ok)
|
2023-02-10 16:40:36 +03:00
|
|
|
assert.Equal(t, clients.clientSource(ip), ClientSourceARP)
|
2021-06-10 14:54:47 +03:00
|
|
|
|
2022-11-09 14:37:07 +03:00
|
|
|
ok = clients.AddHost(ip, "from_dhcp", ClientSourceDHCP)
|
2021-06-29 15:53:28 +03:00
|
|
|
assert.True(t, ok)
|
2023-02-10 16:40:36 +03:00
|
|
|
assert.Equal(t, clients.clientSource(ip), ClientSourceDHCP)
|
2021-06-10 14:54:47 +03:00
|
|
|
})
|
|
|
|
|
2020-12-07 16:04:53 +03:00
|
|
|
t.Run("addhost_fail", func(t *testing.T) {
|
2022-11-09 14:37:07 +03:00
|
|
|
ip := netip.MustParseAddr("1.1.1.1")
|
|
|
|
ok := clients.AddHost(ip, "host1", ClientSourceRDNS)
|
2021-01-27 18:32:13 +03:00
|
|
|
assert.False(t, ok)
|
2020-12-07 16:04:53 +03:00
|
|
|
})
|
2019-04-26 15:10:29 +03:00
|
|
|
}
|
2019-10-11 16:58:10 +03:00
|
|
|
|
2021-06-18 18:13:36 +03:00
|
|
|
func TestClientsWHOIS(t *testing.T) {
|
2023-04-06 14:12:50 +03:00
|
|
|
clients := newClientsContainer()
|
2021-06-18 18:13:36 +03:00
|
|
|
whois := &RuntimeClientWHOISInfo{
|
2021-04-02 17:30:39 +03:00
|
|
|
Country: "AU",
|
|
|
|
Orgname: "Example Org",
|
|
|
|
}
|
2021-03-11 17:32:58 +03:00
|
|
|
|
|
|
|
t.Run("new_client", func(t *testing.T) {
|
2022-10-24 17:49:52 +03:00
|
|
|
ip := netip.MustParseAddr("1.1.1.255")
|
2022-11-09 14:37:07 +03:00
|
|
|
clients.setWHOISInfo(ip, whois)
|
2022-10-24 17:49:52 +03:00
|
|
|
rc := clients.ipToRC[ip]
|
2021-06-29 15:53:28 +03:00
|
|
|
require.NotNil(t, rc)
|
2019-10-11 16:58:10 +03:00
|
|
|
|
2021-06-29 15:53:28 +03:00
|
|
|
assert.Equal(t, rc.WHOISInfo, whois)
|
2021-03-11 17:32:58 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("existing_auto-client", func(t *testing.T) {
|
2022-10-24 17:49:52 +03:00
|
|
|
ip := netip.MustParseAddr("1.1.1.1")
|
2022-11-09 14:37:07 +03:00
|
|
|
ok := clients.AddHost(ip, "host", ClientSourceRDNS)
|
2021-03-11 17:32:58 +03:00
|
|
|
assert.True(t, ok)
|
|
|
|
|
2022-11-09 14:37:07 +03:00
|
|
|
clients.setWHOISInfo(ip, whois)
|
2022-10-24 17:49:52 +03:00
|
|
|
rc := clients.ipToRC[ip]
|
2021-06-29 15:53:28 +03:00
|
|
|
require.NotNil(t, rc)
|
2019-10-11 16:58:10 +03:00
|
|
|
|
2021-06-29 15:53:28 +03:00
|
|
|
assert.Equal(t, rc.WHOISInfo, whois)
|
2021-03-11 17:32:58 +03:00
|
|
|
})
|
2019-12-23 16:59:02 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
t.Run("can't_set_manually-added", func(t *testing.T) {
|
2022-10-24 17:49:52 +03:00
|
|
|
ip := netip.MustParseAddr("1.1.1.2")
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
ok, err := clients.Add(&Client{
|
|
|
|
IDs: []string{"1.1.1.2"},
|
|
|
|
Name: "client1",
|
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
require.NoError(t, err)
|
2021-03-11 17:32:58 +03:00
|
|
|
assert.True(t, ok)
|
2019-12-23 16:59:02 +03:00
|
|
|
|
2022-11-09 14:37:07 +03:00
|
|
|
clients.setWHOISInfo(ip, whois)
|
2022-10-24 17:49:52 +03:00
|
|
|
rc := clients.ipToRC[ip]
|
|
|
|
require.Nil(t, rc)
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
assert.True(t, clients.Del("client1"))
|
|
|
|
})
|
|
|
|
}
|
2019-12-23 16:59:02 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
func TestClientsAddExisting(t *testing.T) {
|
2023-04-06 14:12:50 +03:00
|
|
|
clients := newClientsContainer()
|
2019-12-23 16:59:02 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
t.Run("simple", func(t *testing.T) {
|
2022-11-09 14:37:07 +03:00
|
|
|
ip := netip.MustParseAddr("1.1.1.1")
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
// Add a client.
|
|
|
|
ok, err := clients.Add(&Client{
|
2021-06-29 15:53:28 +03:00
|
|
|
IDs: []string{ip.String(), "1:2:3::4", "aa:aa:aa:aa:aa:aa", "2.2.2.0/24"},
|
2021-03-11 17:32:58 +03:00
|
|
|
Name: "client1",
|
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
require.NoError(t, err)
|
2021-03-11 17:32:58 +03:00
|
|
|
assert.True(t, ok)
|
2019-12-23 16:59:02 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
// Now add an auto-client with the same IP.
|
2022-11-09 14:37:07 +03:00
|
|
|
ok = clients.AddHost(ip, "test", ClientSourceRDNS)
|
2021-03-11 17:32:58 +03:00
|
|
|
assert.True(t, ok)
|
2019-12-23 16:59:02 +03:00
|
|
|
})
|
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
t.Run("complicated", func(t *testing.T) {
|
2022-01-25 19:47:02 +03:00
|
|
|
// TODO(a.garipov): Properly decouple the DHCP server from the client
|
|
|
|
// storage.
|
|
|
|
if runtime.GOOS == "windows" {
|
|
|
|
t.Skip("skipping dhcp test on windows")
|
|
|
|
}
|
|
|
|
|
2023-03-23 16:52:01 +03:00
|
|
|
ip := netip.MustParseAddr("1.2.3.4")
|
2019-12-23 17:12:50 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
// First, init a DHCP server with a single static lease.
|
2022-01-25 19:47:02 +03:00
|
|
|
config := &dhcpd.ServerConfig{
|
2021-03-16 19:11:32 +03:00
|
|
|
Enabled: true,
|
2021-03-11 17:32:58 +03:00
|
|
|
DBFilePath: "leases.db",
|
2021-03-16 19:11:32 +03:00
|
|
|
Conf4: dhcpd.V4ServerConf{
|
|
|
|
Enabled: true,
|
2022-10-14 15:29:44 +03:00
|
|
|
GatewayIP: netip.MustParseAddr("1.2.3.1"),
|
|
|
|
SubnetMask: netip.MustParseAddr("255.255.255.0"),
|
|
|
|
RangeStart: netip.MustParseAddr("1.2.3.2"),
|
|
|
|
RangeEnd: netip.MustParseAddr("1.2.3.10"),
|
2021-03-16 19:11:32 +03:00
|
|
|
},
|
2021-03-11 17:32:58 +03:00
|
|
|
}
|
2021-03-16 19:11:32 +03:00
|
|
|
|
2022-09-13 23:45:35 +03:00
|
|
|
dhcpServer, err := dhcpd.Create(config)
|
2021-06-16 16:48:46 +03:00
|
|
|
require.NoError(t, err)
|
2022-01-25 19:47:02 +03:00
|
|
|
testutil.CleanupAndRequireSuccess(t, func() (err error) {
|
|
|
|
return os.Remove("leases.db")
|
|
|
|
})
|
2021-03-11 17:32:58 +03:00
|
|
|
|
2022-09-13 23:45:35 +03:00
|
|
|
clients.dhcpServer = dhcpServer
|
|
|
|
|
|
|
|
err = dhcpServer.AddStaticLease(&dhcpd.Lease{
|
2021-03-11 17:32:58 +03:00
|
|
|
HWAddr: net.HardwareAddr{0xAA, 0xAA, 0xAA, 0xAA, 0xAA, 0xAA},
|
2021-06-29 15:53:28 +03:00
|
|
|
IP: ip,
|
2021-03-11 17:32:58 +03:00
|
|
|
Hostname: "testhost",
|
|
|
|
Expiry: time.Now().Add(time.Hour),
|
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
require.NoError(t, err)
|
2021-03-11 17:32:58 +03:00
|
|
|
|
|
|
|
// Add a new client with the same IP as for a client with MAC.
|
|
|
|
ok, err := clients.Add(&Client{
|
2021-06-29 15:53:28 +03:00
|
|
|
IDs: []string{ip.String()},
|
2021-03-11 17:32:58 +03:00
|
|
|
Name: "client2",
|
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
require.NoError(t, err)
|
2021-03-11 17:32:58 +03:00
|
|
|
assert.True(t, ok)
|
|
|
|
|
2021-10-22 11:58:18 +03:00
|
|
|
// Add a new client with the IP from the first client's IP range.
|
2021-03-11 17:32:58 +03:00
|
|
|
ok, err = clients.Add(&Client{
|
|
|
|
IDs: []string{"2.2.2.2"},
|
|
|
|
Name: "client3",
|
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
require.NoError(t, err)
|
2021-03-11 17:32:58 +03:00
|
|
|
assert.True(t, ok)
|
|
|
|
})
|
2019-12-23 16:59:02 +03:00
|
|
|
}
|
2020-05-13 20:31:43 +03:00
|
|
|
|
|
|
|
func TestClientsCustomUpstream(t *testing.T) {
|
2023-04-06 14:12:50 +03:00
|
|
|
clients := newClientsContainer()
|
2020-05-13 20:31:43 +03:00
|
|
|
|
2021-03-11 17:32:58 +03:00
|
|
|
// Add client with upstreams.
|
|
|
|
ok, err := clients.Add(&Client{
|
2020-05-13 20:31:43 +03:00
|
|
|
IDs: []string{"1.1.1.1", "1:2:3::4", "aa:aa:aa:aa:aa:aa"},
|
|
|
|
Name: "client1",
|
|
|
|
Upstreams: []string{
|
|
|
|
"1.1.1.1",
|
|
|
|
"[/example.org/]8.8.8.8",
|
|
|
|
},
|
2021-03-11 17:32:58 +03:00
|
|
|
})
|
2021-05-28 13:02:59 +03:00
|
|
|
require.NoError(t, err)
|
2020-05-13 20:31:43 +03:00
|
|
|
assert.True(t, ok)
|
|
|
|
|
2021-05-28 13:02:59 +03:00
|
|
|
config, err := clients.findUpstreams("1.2.3.4")
|
2020-05-13 20:31:43 +03:00
|
|
|
assert.Nil(t, config)
|
2021-05-28 13:02:59 +03:00
|
|
|
assert.NoError(t, err)
|
2020-05-13 20:31:43 +03:00
|
|
|
|
2021-05-28 13:02:59 +03:00
|
|
|
config, err = clients.findUpstreams("1.1.1.1")
|
2021-03-11 17:32:58 +03:00
|
|
|
require.NotNil(t, config)
|
2021-05-28 13:02:59 +03:00
|
|
|
assert.NoError(t, err)
|
2021-03-11 17:32:58 +03:00
|
|
|
assert.Len(t, config.Upstreams, 1)
|
|
|
|
assert.Len(t, config.DomainReservedUpstreams, 1)
|
2020-05-13 20:31:43 +03:00
|
|
|
}
|