frontend: skip network related tests when unavailable

Fix #46
This commit is contained in:
Lan Tian 2022-01-09 00:10:06 -06:00
parent af5b653326
commit a4e0f4c193
No known key found for this signature in database
GPG Key ID: 04E66B6B25A0862B
3 changed files with 36 additions and 0 deletions

View File

@ -6,6 +6,8 @@ import (
)
func TestGetASNRepresentationDNS(t *testing.T) {
checkNetwork(t)
setting.dnsInterface = "asn.cymru.com"
setting.whoisServer = ""
result := getASNRepresentation("6939")
@ -15,6 +17,8 @@ func TestGetASNRepresentationDNS(t *testing.T) {
}
func TestGetASNRepresentationWhois(t *testing.T) {
checkNetwork(t)
setting.dnsInterface = ""
setting.whoisServer = "whois.arin.net"
result := getASNRepresentation("6939")

30
frontend/network_test.go Normal file
View File

@ -0,0 +1,30 @@
package main
import (
"net"
"testing"
"time"
)
const (
NETWORK_UNKNOWN = 0
NETWORK_DOWN = 1
NETWORK_UP = 2
)
var networkState int = NETWORK_UNKNOWN
func checkNetwork(t *testing.T) {
if networkState == NETWORK_UNKNOWN {
conn, err := net.DialTimeout("tcp", "8.8.8.8:53", 1*time.Second)
if err != nil {
networkState = NETWORK_DOWN
} else {
networkState = NETWORK_UP
conn.Close()
}
}
if networkState == NETWORK_DOWN {
t.Skipf("Test skipped for network error")
}
}

View File

@ -6,6 +6,8 @@ import (
)
func TestWhois(t *testing.T) {
checkNetwork(t)
setting.whoisServer = "whois.arin.net"
result := whois("AS6939")
if !strings.Contains(result, "HURRICANE") {