Hspec `UpdateList` tests are subjects to stall on latest `dev`
I am working on #391 (closed), and I have rebased against dev
. After running the tests with:
nix-shell --run "cabal v2-test garg-test-hspec --test-show-details=streaming --test-option=--match='/UpdateList API/'"
I have got them hanging indefinitely right away:
Running 1 test suites...
Test suite garg-test-hspec: RUNNING...
API
UpdateList API
setup DB triggers and users [✔]
POST /api/v1.0/lists/:id/add/form/async (JSON)
Then, after I killed the process with Ctrl^C and restarted them, I got this and another stall:
Running 1 test suites...
Test suite garg-test-hspec: RUNNING...
garg-test-hspec: NNException "nanomsg-haskell error at bind. Errno 48: Address already in use"
garg-test-hspec: NNException "nanomsg-haskell error at bind. Errno 48: Address already in use"
API
UpdateList API
setup DB triggers and users [✔]
POST /api/v1.0/lists/:id/add/form/async (JSON)
[DEBUG] [central_exchange] update tree: nodeId-16
getTableNgrams/setScores #ngrams=1 time=128.00 us
allows uploading a JSON ngrams file [✔]
I wonder if this is related to #341 (I haven't run git bisect
just yet, though). However, it shows that at least resource cleanup is not being executed correctly -- if we kill the test process abruptly, the nanomsg socket remains alive.
Plus, the debug logs really mess up the output of the tests -- we should silence these.
EDIT: Ah, it seems to happen (only?) for the test files I was editing as part of the adinapoli/issue-385-better-testing
branch, I wonder if I'm simply missing some initial step to setup websockets and/or I need a different way now to fetch the progress rather than /poll
, and that's what's making those tests stall.
@cgenie any insight?