mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-04-04 08:23:32 +03:00
Merge in DNS/adguard-home from 2926-lla-v6 to master
Updates #2926.
Updates #5035.
Squashed commit of the following:
commit 2e770d4b6d4e1ec3f7762f2f2466662983bf146c
Merge: 25c1afc5 893358ea
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Fri Oct 14 15:14:56 2022 +0300
Merge branch 'master' into 2926-lla-v6
commit 25c1afc5f0a5027fafac9dee77618886aefee29c
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Thu Oct 13 18:24:20 2022 +0300
all: imp code, docs
commit 59549c4f74ee17b10eae542d1f1828d4e59894c9
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Tue Oct 11 18:49:09 2022 +0300
dhcpd: use netip initially
commit 1af623096b0517d07752385540f2f750f7f5b3bb
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Fri Sep 30 18:03:52 2022 +0300
all: imp docs, code
commit e9faeb71dbc0e887b25a7f3d5b33a401805f2ae7
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Thu Sep 29 14:56:37 2022 +0300
all: use netip for web
commit 38305e555a6884c3bd1b0839330b942ce0e59093
Author: Eugene Burkov <E.Burkov@AdGuard.COM>
Date: Wed Sep 28 19:13:58 2022 +0300
add basic lla
180 lines
4.6 KiB
Go
180 lines
4.6 KiB
Go
package home
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"net/netip"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
"howett.net/plist"
|
|
)
|
|
|
|
// setupDNSIPs is a helper that sets up the server IP address configuration for
|
|
// tests and also tears it down in a cleanup function.
|
|
func setupDNSIPs(t testing.TB) {
|
|
t.Helper()
|
|
|
|
prevConfig := config
|
|
prevTLS := Context.tls
|
|
t.Cleanup(func() {
|
|
config = prevConfig
|
|
Context.tls = prevTLS
|
|
})
|
|
|
|
config = &configuration{
|
|
DNS: dnsConfig{
|
|
BindHosts: []netip.Addr{netip.IPv4Unspecified()},
|
|
Port: defaultPortDNS,
|
|
},
|
|
}
|
|
|
|
Context.tls = &TLSMod{}
|
|
}
|
|
|
|
func TestHandleMobileConfigDoH(t *testing.T) {
|
|
setupDNSIPs(t)
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
r, err := http.NewRequest(http.MethodGet, "https://example.com:12345/apple/doh.mobileconfig?host=example.org", nil)
|
|
require.NoError(t, err)
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
handleMobileConfigDoH(w, r)
|
|
require.Equal(t, http.StatusOK, w.Code)
|
|
|
|
var mc mobileConfig
|
|
_, err = plist.Unmarshal(w.Body.Bytes(), &mc)
|
|
require.NoError(t, err)
|
|
require.Len(t, mc.PayloadContent, 1)
|
|
|
|
assert.Equal(t, "example.org DoH", mc.PayloadContent[0].PayloadDisplayName)
|
|
|
|
s := mc.PayloadContent[0].DNSSettings
|
|
require.NotNil(t, s)
|
|
|
|
assert.Empty(t, s.ServerName)
|
|
assert.Equal(t, "https://example.org/dns-query", s.ServerURL)
|
|
})
|
|
|
|
t.Run("error_no_host", func(t *testing.T) {
|
|
oldTLSConf := Context.tls
|
|
t.Cleanup(func() { Context.tls = oldTLSConf })
|
|
|
|
Context.tls = &TLSMod{conf: tlsConfigSettings{}}
|
|
|
|
r, err := http.NewRequest(http.MethodGet, "https://example.com:12345/apple/doh.mobileconfig", nil)
|
|
require.NoError(t, err)
|
|
|
|
b := &bytes.Buffer{}
|
|
err = json.NewEncoder(b).Encode(&jsonError{
|
|
Message: errEmptyHost.Error(),
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
handleMobileConfigDoH(w, r)
|
|
assert.Equal(t, http.StatusInternalServerError, w.Code)
|
|
assert.JSONEq(t, w.Body.String(), b.String())
|
|
})
|
|
|
|
t.Run("client_id", func(t *testing.T) {
|
|
r, err := http.NewRequest(http.MethodGet, "https://example.com:12345/apple/doh.mobileconfig?host=example.org&client_id=cli42", nil)
|
|
require.NoError(t, err)
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
handleMobileConfigDoH(w, r)
|
|
require.Equal(t, http.StatusOK, w.Code)
|
|
|
|
var mc mobileConfig
|
|
_, err = plist.Unmarshal(w.Body.Bytes(), &mc)
|
|
require.NoError(t, err)
|
|
require.Len(t, mc.PayloadContent, 1)
|
|
|
|
assert.Equal(t, "example.org DoH", mc.PayloadContent[0].PayloadDisplayName)
|
|
|
|
s := mc.PayloadContent[0].DNSSettings
|
|
require.NotNil(t, s)
|
|
|
|
assert.Empty(t, s.ServerName)
|
|
assert.Equal(t, "https://example.org/dns-query/cli42", s.ServerURL)
|
|
})
|
|
}
|
|
|
|
func TestHandleMobileConfigDoT(t *testing.T) {
|
|
setupDNSIPs(t)
|
|
|
|
t.Run("success", func(t *testing.T) {
|
|
r, err := http.NewRequest(http.MethodGet, "https://example.com:12345/apple/dot.mobileconfig?host=example.org", nil)
|
|
require.NoError(t, err)
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
handleMobileConfigDoT(w, r)
|
|
require.Equal(t, http.StatusOK, w.Code)
|
|
|
|
var mc mobileConfig
|
|
_, err = plist.Unmarshal(w.Body.Bytes(), &mc)
|
|
require.NoError(t, err)
|
|
require.Len(t, mc.PayloadContent, 1)
|
|
|
|
assert.Equal(t, "example.org DoT", mc.PayloadContent[0].PayloadDisplayName)
|
|
|
|
s := mc.PayloadContent[0].DNSSettings
|
|
require.NotNil(t, s)
|
|
|
|
assert.Equal(t, "example.org", s.ServerName)
|
|
assert.Empty(t, s.ServerURL)
|
|
})
|
|
|
|
t.Run("error_no_host", func(t *testing.T) {
|
|
oldTLSConf := Context.tls
|
|
t.Cleanup(func() { Context.tls = oldTLSConf })
|
|
|
|
Context.tls = &TLSMod{conf: tlsConfigSettings{}}
|
|
|
|
r, err := http.NewRequest(http.MethodGet, "https://example.com:12345/apple/dot.mobileconfig", nil)
|
|
require.NoError(t, err)
|
|
|
|
b := &bytes.Buffer{}
|
|
err = json.NewEncoder(b).Encode(&jsonError{
|
|
Message: errEmptyHost.Error(),
|
|
})
|
|
require.NoError(t, err)
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
handleMobileConfigDoT(w, r)
|
|
assert.Equal(t, http.StatusInternalServerError, w.Code)
|
|
assert.JSONEq(t, w.Body.String(), b.String())
|
|
})
|
|
|
|
t.Run("client_id", func(t *testing.T) {
|
|
r, err := http.NewRequest(http.MethodGet, "https://example.com:12345/apple/dot.mobileconfig?host=example.org&client_id=cli42", nil)
|
|
require.NoError(t, err)
|
|
|
|
w := httptest.NewRecorder()
|
|
|
|
handleMobileConfigDoT(w, r)
|
|
require.Equal(t, http.StatusOK, w.Code)
|
|
|
|
var mc mobileConfig
|
|
_, err = plist.Unmarshal(w.Body.Bytes(), &mc)
|
|
require.NoError(t, err)
|
|
require.Len(t, mc.PayloadContent, 1)
|
|
|
|
assert.Equal(t, "example.org DoT", mc.PayloadContent[0].PayloadDisplayName)
|
|
|
|
s := mc.PayloadContent[0].DNSSettings
|
|
require.NotNil(t, s)
|
|
|
|
assert.Equal(t, "cli42.example.org", s.ServerName)
|
|
assert.Empty(t, s.ServerURL)
|
|
})
|
|
}
|