Skip to content

Commit

Permalink
Cleanup expired queries
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonVerkada committed Feb 7, 2024
1 parent 1d4f9bc commit 225c67e
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
9 changes: 9 additions & 0 deletions conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,15 @@ func (c *Conn) Query(ctx context.Context, name string) (dnsmessage.ResourceHeade
c.mu.Unlock()

defer ticker.Stop()
defer func() {
c.mu.Lock()
defer c.mu.Unlock()
for i := len(c.queries) - 1; i >= 0; i-- {
if c.queries[i].nameWithSuffix == nameWithSuffix {
c.queries = append(c.queries[:i], c.queries[i+1:]...)
}
}
}()

c.sendQuestion(nameWithSuffix)
for {
Expand Down
22 changes: 22 additions & 0 deletions conn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,13 @@ func TestValidCommunication(t *testing.T) {

check(aServer.Close(), t)
check(bServer.Close(), t)

if len(aServer.queries) > 0 {
t.Fatalf("Queries not cleaned up after aServer close")
}
if len(bServer.queries) > 0 {
t.Fatalf("Queries not cleaned up after bServer close")
}
}

func TestValidCommunicationWithAddressConfig(t *testing.T) {
Expand All @@ -93,6 +100,9 @@ func TestValidCommunicationWithAddressConfig(t *testing.T) {
}

check(aServer.Close(), t)
if len(aServer.queries) > 0 {
t.Fatalf("Queries not cleaned up after aServer close")
}
}

func TestMultipleClose(t *testing.T) {
Expand All @@ -109,6 +119,10 @@ func TestMultipleClose(t *testing.T) {

check(server.Close(), t)
check(server.Close(), t)

if len(server.queries) > 0 {
t.Fatalf("Queries not cleaned up after server close")
}
}

func TestQueryRespectTimeout(t *testing.T) {
Expand All @@ -133,6 +147,10 @@ func TestQueryRespectTimeout(t *testing.T) {
if closeErr := server.Close(); closeErr != nil {
t.Fatal(closeErr)
}

if len(server.queries) > 0 {
t.Fatalf("Queries not cleaned up after context expiration")
}
}

func TestQueryRespectClose(t *testing.T) {
Expand All @@ -159,6 +177,10 @@ func TestQueryRespectClose(t *testing.T) {
if _, _, err = server.Query(context.TODO(), "invalid-host"); !errors.Is(err, errConnectionClosed) {
t.Fatalf("Query on closed server but returned unexpected error %v", err)
}

if len(server.queries) > 0 {
t.Fatalf("Queries not cleaned up after query")
}
}

func TestResourceParsing(t *testing.T) {
Expand Down

0 comments on commit 225c67e

Please sign in to comment.