Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testDNS (0.08 sec)

  1. pkg/dns/client/dns_test.go

    	dnsProto "istio.io/istio/pkg/dns/proto"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func TestDNSForwardParallel(t *testing.T) {
    	d := initDNS(t, true)
    	testDNS(t, d)
    }
    
    func TestDNS(t *testing.T) {
    	d := initDNS(t, false)
    	testDNS(t, d)
    }
    
    func TestBuildAlternateHosts(t *testing.T) {
    	// Create the server instance without starting it, as it's unnecessary for this test
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. pkg/spiffe/spiffe_test.go

    			want: map[string]struct{}{
    				"spiffe://cluster.local/custom-suffix": {},
    			},
    		},
    		{
    			name:      "Non SPIFFE URI",
    			spiffeURI: []string{"testdns.com"},
    			trustDomains: []string{
    				"foo",
    			},
    			want: map[string]struct{}{
    				"testdns.com": {},
    			},
    		},
    	}
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 18.1K bytes
    - Viewed (0)
Back to top