nebula/dns_server_test.go
Slack Security Team f22b4b584d Public Release
2019-11-19 17:00:20 +00:00

20 lines
312 B
Go

package nebula
import (
"testing"
"github.com/miekg/dns"
)
func TestParsequery(t *testing.T) {
//TODO: This test is basically pointless
hostMap := &HostMap{}
ds := newDnsRecords(hostMap)
ds.Add("test.com.com", "1.2.3.4")
m := new(dns.Msg)
m.SetQuestion("test.com.com", dns.TypeA)
//parseQuery(m)
}