open-consul/lib
Daniel Nephin 4f0d092c95 testing: remove unnecessary calls to freeport
Previously we believe it was necessary for all code that required ports
to use freeport to prevent conflicts.

https://github.com/dnephin/freeport-test shows that it is actually save
to use port 0 (`127.0.0.1:0`) as long as it is passed directly to
`net.Listen`, and the listener holds the port for as long as it is
needed.

This works because freeport explicitly avoids the ephemeral port range,
and port 0 always uses that range. As you can see from the test output
of https://github.com/dnephin/freeport-test, the two systems never use
overlapping ports.

This commit converts all uses of freeport that were being passed
directly to a net.Listen to use port 0 instead. This allows us to remove
a bit of wrapping we had around httptest, in a couple places.
2021-11-29 12:19:43 -05:00
..
decode lib/decode: fix hook to work with embedded squash struct 2021-09-22 13:22:16 -04:00
file
mutex lib/mutex: add mutex with TryLock and update vendor 2021-01-25 18:01:47 -05:00
retry lib/retry: allow jitter to exceed max wait. 2021-04-07 18:33:11 -04:00
routine consul: fix data race in leader CA tests 2021-07-14 18:58:15 -04:00
semaphore testing: skip slow tests with -short 2020-12-07 13:42:55 -05:00
serf
stringslice
template
ttlcache lib/ttlcache: never decrease the expiry on update 2021-04-21 15:32:26 -04:00
cluster.go
cluster_test.go
eof.go RPC Timeout/Retries account for blocking requests (#8978) 2021-05-27 17:29:43 -04:00
eof_test.go
json.go
map_walker.go
map_walker_test.go
math.go
math_test.go
path.go
rand.go
rtt.go
rtt_test.go
stop_context.go
stop_context_test.go
telemetry.go add note about deleting TelemetryConfig.MergeDefaults in the future 2020-11-16 15:53:52 -08:00
telemetry_test.go fix some tests that were broken from the TelemetryConfig change 2020-11-16 15:22:36 -08:00
translate.go
translate_test.go
useragent.go
useragent_test.go
uuid.go