Truffle Tests of UUPS proxy smart-contract fails with ETIMEDOUT
My test for UUPS proxy contract fails with:
Uncaught PollingBlockTracker - encountered an error while attempting to update latest block: Error: ETIMEDOUT
I'm running truffle test test/<my-file>
, thus I'm not connecting to any RPC and don't understand how that could possibly fail.
Non-upgradable tests don't suffer.
1) Contract: MyContract
"before all" hook: prepare suite for "should fail to deploy if unstake timestamp is bigger than end timestamp":
Uncaught PollingBlockTracker - encountered an error while attempting to update latest block:
Error: ETIMEDOUT
at Timeout.<anonymous> (/Users/.../node_modules/request/request.js:848:19)
at listOnTimeout (node:internal/timers:557:17)
at processTimers (node:internal/timers:500:7)
Error: PollingBlockTracker - encountered an error while attempting to update latest block:
Error: ETIMEDOUT
at Timeout.<anonymous> (node_modules/request/request.js:848:19)
at listOnTimeout (node:internal/timers:557:17)
at processTimers (node:internal/timers:500:7)
at PollingBlockTracker._performSync (node_modules/eth-block-tracker/src/polling.js:51:24)
at runMicrotasks (<anonymous>)
at processTicksAndRejections (node:internal/process/task_queues:96:5)
2) Contract: MyContract
"before all" hook: prepare suite for "should fail to deploy if unstake timestamp is bigger than end timestamp":
Error: done() called multiple times in hook <Contract: MyContract "before all" hook: prepare suite for "should fail to deploy if unstake timestamp is bigger than end timestamp"> of file /Users/.../test/MyContract.js
at runMicrotasks (<anonymous>)
at processTicksAndRejections (node:internal/process/task_queues:96:5)
And in another case, I get next error:
1) Contract: MyContract
should fail to deploy if unstake timestamp is bigger than end timestamp:
Error: Invalid JSON RPC response: ""
at Object.InvalidResponse (node_modules/web3/node_modules/web3-core-helpers/lib/errors.js:43:16)
at XMLHttpRequest.request.onreadystatechange (node_modules/web3/node_modules/web3-providers-http/lib/index.js:95:32)
at XMLHttpRequestEventTarget.dispatchEvent (node_modules/xhr2-cookies/xml-http-request-event-target.ts:44:13)
at XMLHttpRequest._setReadyState (node_modules/xhr2-cookies/xml-http-request.ts:219:8)
at XMLHttpRequest._onHttpRequestError (node_modules/xhr2-cookies/xml-http-request.ts:379:8)
at ClientRequest.<anonymous> (node_modules/xhr2-cookies/xml-http-request.ts:266:37)
at ClientRequest.emit (node:events:390:28)
at Socket.socketErrorListener (node:_http_client:447:9)
at Socket.emit (node:events:390:28)
at emitErrorNT (node:internal/streams/destroy:164:8)
at emitErrorCloseNT (node:internal/streams/destroy:129:3)
at processTicksAndRejections (node:internal/process/task_queues:83:21)
2) Contract: MyContract
with deployed contract which has unavailable unstake
should fail to unstake:
Error: Invalid JSON RPC response: ""
at Object.InvalidResponse (node_modules/web3/node_modules/web3-core-helpers/lib/errors.js:43:16)
at XMLHttpRequest.request.onreadystatechange (node_modules/web3/node_modules/web3-providers-http/lib/index.js:95:32)
at XMLHttpRequestEventTarget.dispatchEvent (node_modules/xhr2-cookies/xml-http-request-event-target.ts:44:13)
at XMLHttpRequest._setReadyState (node_modules/xhr2-cookies/xml-http-request.ts:219:8)
at XMLHttpRequest._onHttpRequestError (node_modules/xhr2-cookies/xml-http-request.ts:379:8)
at ClientRequest.<anonymous> (node_modules/xhr2-cookies/xml-http-request.ts:266:37)
at ClientRequest.emit (node:events:390:28)
at Socket.socketErrorListener (node:_http_client:447:9)
at Socket.emit (node:events:390:28)
at emitErrorNT (node:internal/streams/destroy:164:8)
at emitErrorCloseNT (node:internal/streams/destroy:129:3)
at processTicksAndRejections (node:internal/process/task_queues:83:21)
Environment
Truffle v5.4.23 (core: 5.4.23)
Solidity - 0.8.3 (solc-js)
Node v17.0.1
Web3.js v1.5.3