You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the Cube extension, when the connectionMode is set to STARTORCONNECTANDLEAVE and a Docker network is created during the start of the test, an attempt is made to delete this network at the end of the test. However, this deletion fails because the containers themselves are not deleted, as expected.
Expected Behaviour
The network should not be attempted to be deleted when the connectionMode is set to STARTORCONNECTANDLEAVE, even if it has been created by the test itself.
Current Behaviour
An attempt is made to delete the network, resulting in an exception at the end of the test:
Status 403: error while removing network: network arquillian id xxx has active endpoints
When the network exists before the test is started, the network won't be deleted, and everything works as expected.
Steps To Reproduce
Use the cube extension with connectionMode set to STARTORCONNECTANDLEAVE.
Use the docker extension with a docker compose file specifying a (currently non-exisiting) network.
Run a test.
The text was updated successfully, but these errors were encountered:
Issue Overview
In the Cube extension, when the
connectionMode
is set toSTARTORCONNECTANDLEAVE
and a Docker network is created during the start of the test, an attempt is made to delete this network at the end of the test. However, this deletion fails because the containers themselves are not deleted, as expected.Expected Behaviour
The network should not be attempted to be deleted when the
connectionMode
is set toSTARTORCONNECTANDLEAVE
, even if it has been created by the test itself.Current Behaviour
An attempt is made to delete the network, resulting in an exception at the end of the test:
Status 403: error while removing network: network arquillian id xxx has active endpoints
When the network exists before the test is started, the network won't be deleted, and everything works as expected.
Steps To Reproduce
connectionMode
set toSTARTORCONNECTANDLEAVE
.The text was updated successfully, but these errors were encountered: