mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-22 04:55:33 +03:00
all: imp tests
This commit is contained in:
parent
80f7e98d30
commit
0a001fffbe
1 changed files with 26 additions and 21 deletions
|
@ -420,28 +420,12 @@ func TestClientsDHCP(t *testing.T) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestClientsAddExisting(t *testing.T) {
|
func TestClientsAddExisting(t *testing.T) {
|
||||||
// First, init a DHCP server with a single static lease.
|
|
||||||
config := &dhcpd.ServerConfig{
|
|
||||||
Enabled: true,
|
|
||||||
DataDir: t.TempDir(),
|
|
||||||
Conf4: dhcpd.V4ServerConf{
|
|
||||||
Enabled: true,
|
|
||||||
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"),
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
dhcpServer, err := dhcpd.Create(config)
|
|
||||||
require.NoError(t, err)
|
|
||||||
|
|
||||||
storage, err := client.NewStorage(&client.StorageConfig{
|
|
||||||
DHCP: dhcpServer,
|
|
||||||
})
|
|
||||||
require.NoError(t, err)
|
|
||||||
|
|
||||||
t.Run("simple", func(t *testing.T) {
|
t.Run("simple", func(t *testing.T) {
|
||||||
|
storage, err := client.NewStorage(&client.StorageConfig{
|
||||||
|
DHCP: client.EmptyDHCP{},
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
ip := netip.MustParseAddr("1.1.1.1")
|
ip := netip.MustParseAddr("1.1.1.1")
|
||||||
|
|
||||||
// Add a client.
|
// Add a client.
|
||||||
|
@ -467,6 +451,27 @@ func TestClientsAddExisting(t *testing.T) {
|
||||||
t.Skip("skipping dhcp test on windows")
|
t.Skip("skipping dhcp test on windows")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// First, init a DHCP server with a single static lease.
|
||||||
|
config := &dhcpd.ServerConfig{
|
||||||
|
Enabled: true,
|
||||||
|
DataDir: t.TempDir(),
|
||||||
|
Conf4: dhcpd.V4ServerConf{
|
||||||
|
Enabled: true,
|
||||||
|
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"),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
dhcpServer, err := dhcpd.Create(config)
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
|
storage, err := client.NewStorage(&client.StorageConfig{
|
||||||
|
DHCP: dhcpServer,
|
||||||
|
})
|
||||||
|
require.NoError(t, err)
|
||||||
|
|
||||||
ip := netip.MustParseAddr("1.2.3.4")
|
ip := netip.MustParseAddr("1.2.3.4")
|
||||||
|
|
||||||
err = dhcpServer.AddStaticLease(&dhcpsvc.Lease{
|
err = dhcpServer.AddStaticLease(&dhcpsvc.Lease{
|
||||||
|
|
Loading…
Reference in a new issue