frontend: resolve asn in dns/whois/fail order & fix tests

This commit is contained in:
Lan Tian 2021-07-31 16:56:39 +08:00 committed by Yuhui Xu
parent 2e0cb131ca
commit bee26f421c
4 changed files with 60 additions and 18 deletions

View File

@ -11,30 +11,35 @@ func getASNRepresentation(asn string) string {
if setting.dnsInterface != "" {
// get ASN representation using DNS
records, err := net.LookupTXT(fmt.Sprintf("AS%s.%s", asn, setting.dnsInterface))
if err != nil {
// DNS query failed, only use ASN as output
return fmt.Sprintf("AS%s", asn)
if err == nil {
result := strings.Join(records, " ")
if resultSplit := strings.Split(result, " | "); len(resultSplit) > 1 {
result = strings.Join(resultSplit[1:], "\\n")
}
return fmt.Sprintf("AS%s\\n%s", asn, result)
}
}
result := strings.Join(records, " ")
if resultSplit := strings.Split(result, " | "); len(resultSplit) > 1 {
result = strings.Join(resultSplit[1:], "\\n")
}
return fmt.Sprintf("AS%s\\n%s", asn, result)
} else {
if setting.whoisServer != "" {
// get ASN representation using WHOIS
records := whois(fmt.Sprintf("AS%s", asn))
recordsSplit := strings.Split(records, "\n")
result := "\\n"
for _, line := range recordsSplit {
if strings.Contains(line, "as-name:") || strings.Contains(line, "ASName:") {
result = result + strings.TrimSpace(strings.SplitN(line, ":", 2)[1])
} else if strings.Contains(line, "descr:") {
result = result + "\\n" + strings.TrimSpace(strings.SplitN(line, ":", 2)[1])
if records != "" {
recordsSplit := strings.Split(records, "\n")
result := ""
for _, line := range recordsSplit {
if strings.Contains(line, "as-name:") || strings.Contains(line, "ASName:") {
result = result + strings.TrimSpace(strings.SplitN(line, ":", 2)[1])
} else if strings.Contains(line, "descr:") {
result = result + "\\n" + strings.TrimSpace(strings.SplitN(line, ":", 2)[1])
}
}
if result != "" {
return fmt.Sprintf("AS%s\\n%s", asn, result)
}
}
return fmt.Sprintf("AS%s%s", asn, result)
}
return fmt.Sprintf("AS%s", asn)
}
func birdRouteToGraphviz(servers []string, responses []string, target string) string {

View File

@ -5,8 +5,18 @@ import (
"testing"
)
func TestGetASNRepresentation(t *testing.T) {
func TestGetASNRepresentationDNS(t *testing.T) {
setting.dnsInterface = "asn.cymru.com"
setting.whoisServer = ""
result := getASNRepresentation("6939")
if !strings.Contains(result, "HURRICANE") {
t.Errorf("Lookup AS6939 failed, got %s", result)
}
}
func TestGetASNRepresentationWhois(t *testing.T) {
setting.dnsInterface = ""
setting.whoisServer = "whois.arin.net"
result := getASNRepresentation("6939")
if !strings.Contains(result, "HURRICANE") {
t.Errorf("Lookup AS6939 failed, got %s", result)
@ -15,6 +25,7 @@ func TestGetASNRepresentation(t *testing.T) {
func TestGetASNRepresentationFallback(t *testing.T) {
setting.dnsInterface = ""
setting.whoisServer = ""
result := getASNRepresentation("6939")
if result != "AS6939" {
t.Errorf("Lookup AS6939 failed, got %s", result)

View File

@ -7,6 +7,10 @@ import (
// Send a whois request
func whois(s string) string {
if setting.whoisServer == "" {
return ""
}
conn, err := net.Dial("tcp", setting.whoisServer+":43")
if err != nil {
return err.Error()

22
frontend/whois_test.go Normal file
View File

@ -0,0 +1,22 @@
package main
import (
"strings"
"testing"
)
func TestWhois(t *testing.T) {
setting.whoisServer = "whois.arin.net"
result := whois("AS6939")
if !strings.Contains(result, "HURRICANE") {
t.Errorf("Whois AS6939 failed, got %s", result)
}
}
func TestWhoisWithoutServer(t *testing.T) {
setting.whoisServer = ""
result := whois("AS6939")
if result != "" {
t.Errorf("Whois AS6939 without server produced output, got %s", result)
}
}