void startBp_storageError()

in src/it/java/com/epam/digital/data/platform/bpwebservice/it/wsendpoint/StartBpEndpointIT.java [116:124]


  void startBp_storageError() {
    redisCluster.stop();
    var requestEnvelope = fileSource("/startBp/cephError/xml/startBpRequest.xml");
    var responseEnvelope = fileSource("/startBp/cephError/xml/startBpResponse.xml");
    mockClient().sendRequest(withSoapEnvelope(requestEnvelope))
        .andExpect(serverOrReceiverFault("Storage connection runtime error"))
        .andExpect(soapEnvelope(responseEnvelope));
    redisCluster.start();
  }