There is flow which is going to call http-outbound endpoint. I want to write test case for the scenario if http is not available(catching the exception in flow and working as expected from POSTMAN). I tried using throw an exception for mocking the exception to be thrown when message process is http:request.. but it didn't worked. Can someone please help how to mock exception in munit?
Below is the code which i tried:
<munit:test name="test-project-test-suite-munit-testFlowTest3" description="Test" >
<mock:when messageProcessor="mule:set-payload" doc:name="Mock">
<mock:with-attributes>
<mock:with-attribute name="doc:name" whereValue="#['Set Payload']"/>
</mock:with-attributes>
<mock:then-return payload="#['payload3']"/>
</mock:when>
<mock:when messageProcessor="mule:flow" doc:name="Mock">
<mock:with-attributes>
<mock:with-attribute name="name" whereValue="#[matchContains('munit-testFlow2')]"/>
</mock:with-attributes>
<mock:then-return payload="#[]">
<mock:invocation-properties>
<mock:invocation-property key="variable2" value="#['response2']"/>
</mock:invocation-properties>
</mock:then-return>
</mock:when>
<mock:throw-an exception-ref="#[new org.mule.api.MessagingException()]" whenCalling="http:request" doc:name="Throw an Exception">
<mock:with-attributes>
<mock:with-attribute name="doc:name" whereValue="#['HTTP-RES']"/>
</mock:with-attributes>
</mock:throw-an>
<flow-ref name="munit-testFlow" doc:name="munit-testFlow"/>
<munit:assert-payload-equals message="oops failed" expectedValue="#['error-response']" doc:name="Assert Payload"/>
</munit:test>