How to use testSendSoapFaultWithDetail method of com.consol.citrus.dsl.design.SendSoapFaultTestDesignerTest class

Best Citrus code snippet using com.consol.citrus.dsl.design.SendSoapFaultTestDesignerTest.testSendSoapFaultWithDetail

Source:SendSoapFaultTestDesignerTest.java Github

copy

Full Screen

...103 Assert.assertEquals(action.getFaultCode(), FAULT_CODE);104 Assert.assertEquals(action.getFaultString(), FAULT_STRING);105 }106 @Test107 public void testSendSoapFaultWithDetailResource() throws IOException {108 MockTestDesigner builder = new MockTestDesigner(applicationContext, context) {109 @Override110 public void configure() {111 soap().server(soapServer)112 .sendFault()113 .faultCode(FAULT_CODE)114 .faultDetailResource(resource)115 .faultString(FAULT_STRING);116 }117 };118 reset(resource);119 when(resource.getInputStream()).thenReturn(new ByteArrayInputStream("someDetailData".getBytes()));120 builder.configure();121 TestCase test = builder.getTestCase();122 Assert.assertEquals(test.getActionCount(), 1);123 Assert.assertEquals(test.getActions().get(0).getClass(), DelegatingTestAction.class);124 Assert.assertEquals(((DelegatingTestAction)test.getActions().get(0)).getDelegate().getClass(), SendSoapFaultAction.class);125 SendSoapFaultAction action = (SendSoapFaultAction) ((DelegatingTestAction)test.getActions().get(0)).getDelegate();126 Assert.assertEquals(action.getName(), "send");127 Assert.assertEquals(action.getEndpoint(), soapServer);128 Assert.assertEquals(action.getMessageBuilder().getClass(), StaticMessageContentBuilder.class);129 StaticMessageContentBuilder messageBuilder = (StaticMessageContentBuilder) action.getMessageBuilder();130 Assert.assertEquals(messageBuilder.getMessage().getPayload(), "");131 Assert.assertEquals(messageBuilder.getMessageHeaders().size(), 0L);132 Assert.assertEquals(action.getFaultDetails().size(), 1L);133 Assert.assertEquals(action.getFaultDetails().get(0), "someDetailData");134 Assert.assertEquals(action.getFaultCode(), FAULT_CODE);135 Assert.assertEquals(action.getFaultString(), FAULT_STRING);136 }137 @Test138 public void testSendSoapFaultWithDetail() {139 MockTestDesigner builder = new MockTestDesigner(applicationContext, context) {140 @Override141 public void configure() {142 soap().server(soapServer)143 .sendFault()144 .faultCode(FAULT_CODE)145 .faultDetail("DETAIL")146 .faultString(FAULT_STRING);147 }148 };149 builder.configure();150 TestCase test = builder.getTestCase();151 Assert.assertEquals(test.getActionCount(), 1);152 Assert.assertEquals(test.getActions().get(0).getClass(), DelegatingTestAction.class);153 Assert.assertEquals(((DelegatingTestAction)test.getActions().get(0)).getDelegate().getClass(), SendSoapFaultAction.class);154 SendSoapFaultAction action = (SendSoapFaultAction) ((DelegatingTestAction)test.getActions().get(0)).getDelegate();155 Assert.assertEquals(action.getName(), "send");156 Assert.assertEquals(action.getEndpoint(), soapServer);157 Assert.assertEquals(action.getMessageBuilder().getClass(), StaticMessageContentBuilder.class);158 StaticMessageContentBuilder messageBuilder = (StaticMessageContentBuilder) action.getMessageBuilder();159 Assert.assertEquals(messageBuilder.getMessage().getPayload(), "");160 Assert.assertEquals(messageBuilder.getMessageHeaders().size(), 0L);161 Assert.assertEquals(action.getFaultDetails().size(), 1L);162 Assert.assertEquals(action.getFaultDetails().get(0), "DETAIL");163 Assert.assertEquals(action.getFaultCode(), FAULT_CODE);164 Assert.assertEquals(action.getFaultString(), FAULT_STRING);165 }166 @Test167 public void testSendSoapFaultWithDetailResourcePath() {168 MockTestDesigner builder = new MockTestDesigner(applicationContext, context) {169 @Override170 public void configure() {171 soap().server(soapServer)172 .sendFault()173 .faultCode(FAULT_CODE)174 .faultDetailResource("com/consol/citrus/soap/fault.xml")175 .faultString(FAULT_STRING);176 }177 };178 builder.configure();179 TestCase test = builder.getTestCase();180 Assert.assertEquals(test.getActionCount(), 1);181 Assert.assertEquals(test.getActions().get(0).getClass(), DelegatingTestAction.class);...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Citrus automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful