@ -17,9 +17,17 @@ import (
"tailscale.com/util/must"
)
func fakeStoreRoutes ( * RouteInfo ) error { return nil }
func TestUpdateDomains ( t * testing . T ) {
for _ , shouldStore := range [ ] bool { false , true } {
ctx := context . Background ( )
a := NewAppConnector ( t . Logf , nil )
var a * AppConnector
if shouldStore {
a = NewAppConnector ( t . Logf , nil , & RouteInfo { } , fakeStoreRoutes )
} else {
a = NewAppConnector ( t . Logf , nil , nil , nil )
}
a . UpdateDomains ( [ ] string { "example.com" } )
a . Wait ( ctx )
@ -43,11 +51,18 @@ func TestUpdateDomains(t *testing.T) {
t . Errorf ( "got %v; want %v" , got , want )
}
}
}
func TestUpdateRoutes ( t * testing . T ) {
for _ , shouldStore := range [ ] bool { false , true } {
ctx := context . Background ( )
rc := & appctest . RouteCollector { }
a := NewAppConnector ( t . Logf , rc )
var a * AppConnector
if shouldStore {
a = NewAppConnector ( t . Logf , rc , & RouteInfo { } , fakeStoreRoutes )
} else {
a = NewAppConnector ( t . Logf , rc , nil , nil )
}
a . updateDomains ( [ ] string { "*.example.com" } )
// This route should be collapsed into the range
@ -80,10 +95,17 @@ func TestUpdateRoutes(t *testing.T) {
t . Fatalf ( "unexpected removed routes: %v" , rc . RemovedRoutes ( ) )
}
}
}
func TestUpdateRoutesUnadvertisesContainedRoutes ( t * testing . T ) {
for _ , shouldStore := range [ ] bool { false , true } {
rc := & appctest . RouteCollector { }
a := NewAppConnector ( t . Logf , rc )
var a * AppConnector
if shouldStore {
a = NewAppConnector ( t . Logf , rc , & RouteInfo { } , fakeStoreRoutes )
} else {
a = NewAppConnector ( t . Logf , rc , nil , nil )
}
mak . Set ( & a . domains , "example.com" , [ ] netip . Addr { netip . MustParseAddr ( "192.0.2.1" ) } )
rc . SetRoutes ( [ ] netip . Prefix { netip . MustParsePrefix ( "192.0.2.1/32" ) } )
routes := [ ] netip . Prefix { netip . MustParsePrefix ( "192.0.2.0/24" ) }
@ -93,10 +115,17 @@ func TestUpdateRoutesUnadvertisesContainedRoutes(t *testing.T) {
t . Fatalf ( "got %v, want %v" , rc . Routes ( ) , routes )
}
}
}
func TestDomainRoutes ( t * testing . T ) {
for _ , shouldStore := range [ ] bool { false , true } {
rc := & appctest . RouteCollector { }
a := NewAppConnector ( t . Logf , rc )
var a * AppConnector
if shouldStore {
a = NewAppConnector ( t . Logf , rc , & RouteInfo { } , fakeStoreRoutes )
} else {
a = NewAppConnector ( t . Logf , rc , nil , nil )
}
a . updateDomains ( [ ] string { "example.com" } )
a . ObserveDNSResponse ( dnsResponse ( "example.com." , "192.0.0.8" ) )
a . Wait ( context . Background ( ) )
@ -109,11 +138,18 @@ func TestDomainRoutes(t *testing.T) {
t . Fatalf ( "DomainRoutes: got %v, want %v" , got , want )
}
}
}
func TestObserveDNSResponse ( t * testing . T ) {
for _ , shouldStore := range [ ] bool { false , true } {
ctx := context . Background ( )
rc := & appctest . RouteCollector { }
a := NewAppConnector ( t . Logf , rc )
var a * AppConnector
if shouldStore {
a = NewAppConnector ( t . Logf , rc , & RouteInfo { } , fakeStoreRoutes )
} else {
a = NewAppConnector ( t . Logf , rc , nil , nil )
}
// a has no domains configured, so it should not advertise any routes
a . ObserveDNSResponse ( dnsResponse ( "example.com." , "192.0.0.8" ) )
@ -177,11 +213,18 @@ func TestObserveDNSResponse(t *testing.T) {
t . Errorf ( "missing %v from %v" , "192.0.2.1" , a . domains [ "exmaple.com" ] )
}
}
}
func TestWildcardDomains ( t * testing . T ) {
for _ , shouldStore := range [ ] bool { false , true } {
ctx := context . Background ( )
rc := & appctest . RouteCollector { }
a := NewAppConnector ( t . Logf , rc )
var a * AppConnector
if shouldStore {
a = NewAppConnector ( t . Logf , rc , & RouteInfo { } , fakeStoreRoutes )
} else {
a = NewAppConnector ( t . Logf , rc , nil , nil )
}
a . updateDomains ( [ ] string { "*.example.com" } )
a . ObserveDNSResponse ( dnsResponse ( "foo.example.com." , "192.0.0.8" ) )
@ -207,6 +250,7 @@ func TestWildcardDomains(t *testing.T) {
t . Errorf ( "expected only one wildcard domain, got %v" , a . wildcards )
}
}
}
// dnsResponse is a test helper that creates a DNS response buffer for the given domain and address
func dnsResponse ( domain , address string ) [ ] byte {