Unidata / netcdf-java

The Unidata netcdf-java library
https://docs.unidata.ucar.edu/netcdf-java/current/userguide/index.html
BSD 3-Clause "New" or "Revised" License
142 stars 69 forks source link

Improve test reliability #1298

Closed tdrwenski closed 7 months ago

tdrwenski commented 7 months ago

Improve test reliability by checking the actual connections is same as before and after test instead of checking it is 0.

The actualconnections will increase any time a new HTTPConnection is opened, but if this isn't opened with try-with-resources, the connection may not be closed. So if we check if the actualconnections == 0 in our tests, we are testing that everywhere in the tests run before the HTTPConnections have been closed properly, which probably is not always the case.

Description of Changes

Erase this and add a general description of changes, heads-up on any tricky parts, etc., here.

PR Checklist