2021-11-16 10:22:01 -04:00
|
|
|
package dnsdisc
|
2021-09-27 18:52:56 +01:00
|
|
|
|
|
|
|
import (
|
2021-10-01 06:32:15 -04:00
|
|
|
"context"
|
2021-09-27 18:52:56 +01:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestRetrieveNodes uses a live connection, so it could be
|
|
|
|
// flaky, it should though pay for itself and should be fairly stable
|
|
|
|
func TestRetrieveNodes(t *testing.T) {
|
2022-01-18 14:17:06 -04:00
|
|
|
url := "enrtree://AOFTICU2XWDULNLZGRMQS4RIZPAZEHYMV4FYHAPW563HNRAOERP7C@test.waku.nodes.status.im"
|
2021-09-27 18:52:56 +01:00
|
|
|
|
2021-10-01 06:32:15 -04:00
|
|
|
nodes, err := RetrieveNodes(context.Background(), url)
|
2021-09-27 18:52:56 +01:00
|
|
|
require.NoError(t, err)
|
|
|
|
require.NotEmpty(t, nodes)
|
|
|
|
}
|