Skip to content

Commit 25408a8

Browse files
Merge pull request #18 from libp2p/fix-flaky-ttl-test
fix flaky TTL test
2 parents f9db021 + afe3b0d commit 25408a8

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

client.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ const (
2626
IPv4AndIPv6 = IPv4 | IPv6 // default option
2727
)
2828

29+
var initialQueryInterval = 4 * time.Second
30+
2931
// Client structure encapsulates both IPv4/IPv6 UDP connections.
3032
type client struct {
3133
ipv4conn *ipv4.PacketConn
@@ -371,7 +373,7 @@ func (c *client) periodicQuery(ctx context.Context, params *lookupParams) error
371373
}
372374

373375
const maxInterval = 60 * time.Second
374-
interval := 4 * time.Second
376+
interval := initialQueryInterval
375377
timer := time.NewTimer(interval)
376378
defer timer.Stop()
377379
for {

service_test.go

+8-5
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,14 @@ func TestSubtype(t *testing.T) {
161161
t.Run("ttl", func(t *testing.T) {
162162
origTTL := defaultTTL
163163
origCleanupFreq := cleanupFreq
164-
defer func() {
164+
origInitialQueryInterval := initialQueryInterval
165+
t.Cleanup(func() {
165166
defaultTTL = origTTL
166167
cleanupFreq = origCleanupFreq
167-
}()
168-
defaultTTL = 2 // 2 seconds
168+
initialQueryInterval = origInitialQueryInterval
169+
})
170+
defaultTTL = 1 // 1 second
171+
initialQueryInterval = 100 * time.Millisecond
169172
cleanupFreq = 100 * time.Millisecond
170173

171174
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
@@ -178,8 +181,8 @@ func TestSubtype(t *testing.T) {
178181
}
179182

180183
<-ctx.Done()
181-
if len(entries) != 2 {
182-
t.Fatalf("Expected to have received 2 entries, but got %d", len(entries))
184+
if len(entries) < 2 {
185+
t.Fatalf("Expected to have received at least 2 entries, but got %d", len(entries))
183186
}
184187
res1 := <-entries
185188
res2 := <-entries

0 commit comments

Comments
 (0)