mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-20 05:52:25 +03:00
1d6d85cff4
Squashed commit of the following: commit586b0eb180
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Nov 12 19:58:56 2024 +0300 next: upd more commitd729aa150f
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Nov 12 16:53:15 2024 +0300 next/websvc: upd more commit0c64e6cfc6
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Mon Nov 11 21:08:51 2024 +0300 next: upd more commit05eec75222
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Nov 8 19:20:02 2024 +0300 next: upd code
72 lines
2 KiB
Go
72 lines
2 KiB
Go
package websvc_test
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/netip"
|
|
"net/url"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghhttp"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/next/agh"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/next/dnssvc"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/next/websvc"
|
|
"github.com/AdguardTeam/golibs/logutil/slogutil"
|
|
"github.com/AdguardTeam/golibs/netutil/urlutil"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestService_HandleGetSettingsAll(t *testing.T) {
|
|
// TODO(a.garipov): Add all currently supported parameters.
|
|
|
|
wantDNS := &websvc.HTTPAPIDNSSettings{
|
|
Addresses: []netip.AddrPort{netip.MustParseAddrPort("127.0.0.1:53")},
|
|
BootstrapServers: []string{"94.140.14.140", "94.140.14.141"},
|
|
UpstreamServers: []string{"94.140.14.14", "1.1.1.1"},
|
|
UpstreamTimeout: aghhttp.JSONDuration(1 * time.Second),
|
|
BootstrapPreferIPv6: true,
|
|
}
|
|
|
|
confMgr := newConfigManager()
|
|
confMgr.onDNS = func() (s agh.ServiceWithConfig[*dnssvc.Config]) {
|
|
c, err := dnssvc.New(&dnssvc.Config{
|
|
Logger: slogutil.NewDiscardLogger(),
|
|
Addresses: wantDNS.Addresses,
|
|
UpstreamServers: wantDNS.UpstreamServers,
|
|
BootstrapServers: wantDNS.BootstrapServers,
|
|
UpstreamTimeout: time.Duration(wantDNS.UpstreamTimeout),
|
|
BootstrapPreferIPv6: true,
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
return c
|
|
}
|
|
|
|
svc, addr := newTestServer(t, confMgr)
|
|
u := &url.URL{
|
|
Scheme: urlutil.SchemeHTTP,
|
|
Host: addr.String(),
|
|
Path: websvc.PathPatternV1SettingsAll,
|
|
}
|
|
|
|
confMgr.onWeb = func() (s agh.ServiceWithConfig[*websvc.Config]) {
|
|
return svc
|
|
}
|
|
|
|
wantWeb := &websvc.HTTPAPIHTTPSettings{
|
|
Addresses: []netip.AddrPort{addr},
|
|
SecureAddresses: nil,
|
|
Timeout: aghhttp.JSONDuration(testTimeout),
|
|
ForceHTTPS: false,
|
|
}
|
|
|
|
body := httpGet(t, u, http.StatusOK)
|
|
resp := &websvc.RespGetV1SettingsAll{}
|
|
err := json.Unmarshal(body, resp)
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, wantDNS, resp.DNS)
|
|
assert.Equal(t, wantWeb, resp.HTTP)
|
|
}
|