bb6563f363
This commit moves the TH structs and definitions to model. We don't want oohelperd to depend on web_connectivity@v0.4. Part of https://github.com/ooni/probe/issues/2240
25 lines
462 B
Go
25 lines
462 B
Go
package webconnectivity
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/google/go-cmp/cmp"
|
|
)
|
|
|
|
func TestFillASNsEmpty(t *testing.T) {
|
|
dns := new(ControlDNSResult)
|
|
fillASNs(dns)
|
|
if diff := cmp.Diff(dns.ASNs, []int64{}); diff != "" {
|
|
t.Fatal(diff)
|
|
}
|
|
}
|
|
|
|
func TestFillASNsSuccess(t *testing.T) {
|
|
dns := new(ControlDNSResult)
|
|
dns.Addrs = []string{"8.8.8.8", "1.1.1.1"}
|
|
fillASNs(dns)
|
|
if diff := cmp.Diff(dns.ASNs, []int64{15169, 13335}); diff != "" {
|
|
t.Fatal(diff)
|
|
}
|
|
}
|