mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-25 06:25:44 +03:00
f5602d9c46
Merge in DNS/adguard-home from hup-reload to master Squashed commit of the following: commit 5cd4ab85bdc7544a4eded2a61f5a5571175daa44 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Oct 7 19:58:17 2022 +0300 next: imp signal hdlr commit 8fd18e749fec46982d26fc408e661bd802586c37 Merge: a8780455f1dd3334
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Oct 7 19:46:48 2022 +0300 Merge branch 'master' into hup-reload commit a87804550e15d7fe3d9ded2e5a736c395f96febd Merge: 349dbe54960a7a75
Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Oct 7 15:49:23 2022 +0300 Merge branch 'master' into hup-reload commit 349dbe54fe27eeaf56776c73c3cc5649018d4c60 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Oct 7 15:43:52 2022 +0300 next: imp docs, names commit 7287a86d283489127453009267911003cea5227e Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Fri Oct 7 13:39:44 2022 +0300 WIP all: impl dynamic reconfiguration
63 lines
1.7 KiB
Go
63 lines
1.7 KiB
Go
package websvc_test
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/netip"
|
|
"net/url"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/next/agh"
|
|
"github.com/AdguardTeam/AdGuardHome/internal/next/websvc"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestService_HandlePatchSettingsHTTP(t *testing.T) {
|
|
wantWeb := &websvc.HTTPAPIHTTPSettings{
|
|
Addresses: []netip.AddrPort{netip.MustParseAddrPort("127.0.1.1:80")},
|
|
SecureAddresses: []netip.AddrPort{netip.MustParseAddrPort("127.0.1.1:443")},
|
|
Timeout: websvc.JSONDuration(10 * time.Second),
|
|
ForceHTTPS: false,
|
|
}
|
|
|
|
confMgr := newConfigManager()
|
|
confMgr.onWeb = func() (s agh.ServiceWithConfig[*websvc.Config]) {
|
|
return websvc.New(&websvc.Config{
|
|
TLS: &tls.Config{
|
|
Certificates: []tls.Certificate{{}},
|
|
},
|
|
Addresses: []netip.AddrPort{netip.MustParseAddrPort("127.0.0.1:80")},
|
|
SecureAddresses: []netip.AddrPort{netip.MustParseAddrPort("127.0.0.1:443")},
|
|
Timeout: 5 * time.Second,
|
|
ForceHTTPS: true,
|
|
})
|
|
}
|
|
confMgr.onUpdateWeb = func(ctx context.Context, c *websvc.Config) (err error) {
|
|
return nil
|
|
}
|
|
|
|
_, addr := newTestServer(t, confMgr)
|
|
u := &url.URL{
|
|
Scheme: "http",
|
|
Host: addr.String(),
|
|
Path: websvc.PathV1SettingsHTTP,
|
|
}
|
|
|
|
req := jobj{
|
|
"addresses": wantWeb.Addresses,
|
|
"secure_addresses": wantWeb.SecureAddresses,
|
|
"timeout": wantWeb.Timeout,
|
|
"force_https": wantWeb.ForceHTTPS,
|
|
}
|
|
|
|
respBody := httpPatch(t, u, req, http.StatusOK)
|
|
resp := &websvc.HTTPAPIHTTPSettings{}
|
|
err := json.Unmarshal(respBody, resp)
|
|
require.NoError(t, err)
|
|
|
|
assert.Equal(t, wantWeb, resp)
|
|
}
|