summaryrefslogtreecommitdiff
path: root/tools/network/resolver_test.go
blob: 6efe1bea456395d95cf3fef204fcd65a318bb380 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// Copyright (C) 2019-2023 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand.  If not, see <https://www.gnu.org/licenses/>.

package network

import (
	"context"
	"net"
	"testing"
	"time"

	"github.com/stretchr/testify/require"

	"github.com/algorand/go-algorand/test/partitiontest"
)

func TestResolverWithDefaultDNSResolution(t *testing.T) {
	partitiontest.PartitionTest(t)
	t.Parallel()

	// configure a resolver that has no specific DNS address defined.
	// we want to make sure that it will go to the default DNS server ( 8.8.8.8 )
	resolver := Resolver{}
	cname, addrs, err := resolver.LookupSRV(context.Background(), "telemetry", "tls", "devnet.algodev.network")
	require.NoError(t, err)
	require.Equal(t, "_telemetry._tls.devnet.algodev.network.", cname)
	require.True(t, len(addrs) == 1)
	require.Equal(t, defaultDNSAddress, resolver.EffectiveResolverDNS())
}

func TestResolverWithCloudflareDNSResolution(t *testing.T) {
	partitiontest.PartitionTest(t)
	t.Parallel()

	resolver := Resolver{}

	// The test previously specified Cloudflare's primary DNS server (1.1.1.1).
	// However, CircleCI began blocking requests to 1.1.1.1.  In order to
	// preserve the test's spirit, it now uses Cloudflare's secondary DNS
	// server (1.0.0.1).
	cloudflareIPAddr, _ := net.ResolveIPAddr("ip", "1.0.0.1")
	resolver = Resolver{
		dnsAddress: *cloudflareIPAddr,
	}
	cname, addrs, err := resolver.LookupSRV(context.Background(), "telemetry", "tls", "devnet.algodev.network")
	require.NoError(t, err)
	require.Equal(t, "_telemetry._tls.devnet.algodev.network.", cname)
	require.True(t, len(addrs) == 1)
	require.Equal(t, "1.0.0.1", resolver.EffectiveResolverDNS())
}

func TestResolverWithInvalidDNSResolution(t *testing.T) {
	partitiontest.PartitionTest(t)
	t.Parallel()

	resolver := Resolver{}
	// specify an invalid dns resolver ip address and examine the fail case.
	dummyIPAddr, _ := net.ResolveIPAddr("ip", "255.255.128.1")
	resolver = Resolver{
		dnsAddress: *dummyIPAddr,
	}
	timingOutContext, timingOutContextFunc := context.WithTimeout(context.Background(), time.Duration(100)*time.Millisecond)
	defer timingOutContextFunc()
	cname, addrs, err := resolver.LookupSRV(timingOutContext, "telemetry", "tls", "devnet.algodev.network")
	require.Error(t, err)
	require.Equal(t, "", cname)
	require.True(t, len(addrs) == 0)
	require.Equal(t, "255.255.128.1", resolver.EffectiveResolverDNS())
}