mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-24 22:15:45 +03:00
40884624c2
Updates #5990. Squashed commit of the following: commit 1d5d3451c855681a631b85652417ee1bebadab01 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jul 11 20:11:45 2023 +0300 all: allow ignoring root in querylog and stats
59 lines
1.1 KiB
Go
59 lines
1.1 KiB
Go
package aghnet_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghnet"
|
|
"github.com/AdguardTeam/golibs/testutil"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNewDomainNameSet(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
testCases := []struct {
|
|
name string
|
|
wantErrMsg string
|
|
in []string
|
|
}{{
|
|
name: "nil",
|
|
wantErrMsg: "",
|
|
in: nil,
|
|
}, {
|
|
name: "success",
|
|
wantErrMsg: "",
|
|
in: []string{
|
|
"Domain.Example",
|
|
".",
|
|
},
|
|
}, {
|
|
name: "dups",
|
|
wantErrMsg: `duplicate hostname "domain.example" at index 1`,
|
|
in: []string{
|
|
"Domain.Example",
|
|
"domain.example",
|
|
},
|
|
}, {
|
|
name: "bad_domain",
|
|
wantErrMsg: "at index 0: hostname is empty",
|
|
in: []string{
|
|
"",
|
|
},
|
|
}}
|
|
|
|
for _, tc := range testCases {
|
|
tc := tc
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
t.Parallel()
|
|
set, err := aghnet.NewDomainNameSet(tc.in)
|
|
testutil.AssertErrorMsg(t, tc.wantErrMsg, err)
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
for _, host := range tc.in {
|
|
assert.Truef(t, set.Has(aghnet.NormalizeDomain(host)), "%q not matched", host)
|
|
}
|
|
})
|
|
}
|
|
}
|