From 9f599f795d5544a9829d4559ae841a944ceabe67 Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Thu, 12 Sep 2024 15:02:52 +0200 Subject: [PATCH] test: deflake test-dns Prevent responses from being cached. Fixes: https://github.com/nodejs/node/issues/54124 --- test/parallel/test-dns.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/test/parallel/test-dns.js b/test/parallel/test-dns.js index 63e1b77ab139b6..a6b3e459aa00a5 100644 --- a/test/parallel/test-dns.js +++ b/test/parallel/test-dns.js @@ -361,11 +361,11 @@ assert.throws(() => { const cases = [ { method: 'resolveAny', answers: [ - { type: 'A', address: '1.2.3.4', ttl: 3333333333 }, - { type: 'AAAA', address: '::42', ttl: 3333333333 }, - { type: 'MX', priority: 42, exchange: 'foobar.com', ttl: 3333333333 }, - { type: 'NS', value: 'foobar.org', ttl: 3333333333 }, - { type: 'PTR', value: 'baz.org', ttl: 3333333333 }, + { type: 'A', address: '1.2.3.4', ttl: 0 }, + { type: 'AAAA', address: '::42', ttl: 0 }, + { type: 'MX', priority: 42, exchange: 'foobar.com', ttl: 0 }, + { type: 'NS', value: 'foobar.org', ttl: 0 }, + { type: 'PTR', value: 'baz.org', ttl: 0 }, { type: 'SOA', nsname: 'ns1.example.com', @@ -380,11 +380,11 @@ assert.throws(() => { { method: 'resolve4', options: { ttl: true }, - answers: [ { type: 'A', address: '1.2.3.4', ttl: 3333333333 } ] }, + answers: [ { type: 'A', address: '1.2.3.4', ttl: 0 } ] }, { method: 'resolve6', options: { ttl: true }, - answers: [ { type: 'AAAA', address: '::42', ttl: 3333333333 } ] }, + answers: [ { type: 'AAAA', address: '::42', ttl: 0 } ] }, { method: 'resolveSoa', answers: [ @@ -415,7 +415,7 @@ assert.throws(() => { (answer) => Object.assign({ domain }, answer) ), }), port, address); - }, cases.length)); + }, cases.length * 2 - 1)); server.bind(0, common.mustCall(() => { const address = server.address();