How to use SoapMessage method of com.consol.citrus.dsl.builder.SoapServerResponseActionBuilder class

Best Citrus code snippet using com.consol.citrus.dsl.builder.SoapServerResponseActionBuilder.SoapMessage

Source:SoapServerResponseActionBuilder.java Github

copy

Full Screen

...18import com.consol.citrus.dsl.actions.DelegatingTestAction;19import com.consol.citrus.endpoint.Endpoint;20import com.consol.citrus.exceptions.CitrusRuntimeException;21import com.consol.citrus.util.FileUtils;22import com.consol.citrus.ws.actions.SendSoapMessageAction;23import com.consol.citrus.ws.message.*;24import org.springframework.core.io.Resource;25import org.springframework.http.HttpStatus;26import java.io.IOException;27import java.nio.charset.Charset;28/**29 * @author Christoph Deppisch30 * @since 2.631 */32public class SoapServerResponseActionBuilder extends SendMessageBuilder<SendSoapMessageAction, SoapServerResponseActionBuilder> {33 /** Soap message to send or receive */34 private SoapMessage soapMessage = new SoapMessage();35 /**36 * Default constructor using soap client endpoint.37 * @param delegate38 * @param soapServer39 */40 public SoapServerResponseActionBuilder(DelegatingTestAction<TestAction> delegate, Endpoint soapServer) {41 super(delegate);42 delegate.setDelegate(new SendSoapMessageAction());43 getAction().setEndpoint(soapServer);44 message(soapMessage);45 }46 @Override47 protected void setPayload(String payload) {48 soapMessage.setPayload(payload);49 }50 /**51 * Sets the attachment with string content.52 * @param contentId53 * @param contentType54 * @param content55 * @return56 */57 public SoapServerResponseActionBuilder attachment(String contentId, String contentType, String content) {58 SoapAttachment attachment = new SoapAttachment();59 attachment.setContentId(contentId);60 attachment.setContentType(contentType);61 attachment.setContent(content);62 getAction().getAttachments().add(attachment);63 return this;64 }65 /**66 * Sets the attachment with content resource.67 * @param contentId68 * @param contentType69 * @param contentResource70 * @return71 */72 public SoapServerResponseActionBuilder attachment(String contentId, String contentType, Resource contentResource) {73 return attachment(contentId, contentType, contentResource, FileUtils.getDefaultCharset());74 }75 /**76 * Sets the attachment with content resource.77 * @param contentId78 * @param contentType79 * @param contentResource80 * @param charset81 * @return82 */83 public SoapServerResponseActionBuilder attachment(String contentId, String contentType, Resource contentResource, Charset charset) {84 SoapAttachment attachment = new SoapAttachment();85 attachment.setContentId(contentId);86 attachment.setContentType(contentType);87 try {88 attachment.setContent(FileUtils.readToString(contentResource, charset));89 } catch (IOException e) {90 throw new CitrusRuntimeException("Failed to read attachment resource", e);91 }92 getAction().getAttachments().add(attachment);93 return this;94 }95 /**96 * Sets the charset name for this send action builder's attachment.97 * @param charsetName98 * @return99 */100 public SoapServerResponseActionBuilder charset(String charsetName) {101 if (!getAction().getAttachments().isEmpty()) {102 getAction().getAttachments().get(getAction().getAttachments().size() - 1).setCharsetName(charsetName);103 }104 return this;105 }106 /**107 * Sets the attachment from Java object instance.108 * @param attachment109 * @return110 */111 public SoapServerResponseActionBuilder attachment(SoapAttachment attachment) {112 getAction().getAttachments().add(attachment);113 return this;114 }115 /**116 * Sets the response status.117 * @param status118 * @return119 */120 public SoapServerResponseActionBuilder status(HttpStatus status) {121 soapMessage.header(SoapMessageHeaders.HTTP_STATUS_CODE, status.value());122 return this;123 }124 /**125 * Sets the response status code.126 * @param statusCode127 * @return128 */129 public SoapServerResponseActionBuilder statusCode(Integer statusCode) {130 soapMessage.header(SoapMessageHeaders.HTTP_STATUS_CODE, statusCode);131 return this;132 }133 /**134 * Sets the response content type header.135 * @param contentType136 * @return137 */138 public SoapServerResponseActionBuilder contentType(String contentType) {139 soapMessage.header(SoapMessageHeaders.HTTP_CONTENT_TYPE, contentType);140 return this;141 }142 143 public SoapServerResponseActionBuilder mtomEnabled(boolean mtomEnabled) {144 soapMessage.mtomEnabled(mtomEnabled);145 getAction().setMtomEnabled(mtomEnabled);146 return this;147 }148 @Override149 protected SendSoapMessageAction getAction() {150 return (SendSoapMessageAction) super.getAction();151 }152}...

Full Screen

Full Screen

SoapMessage

Using AI Code Generation

copy

Full Screen

1import com.consol.citrus.dsl.runner.TestRunner2import com.consol.citrus.message.builder.SoapMessageBuilder3class SoapServerResponseActionBuilder {4 public static void main(String[] args) {5 TestRunner runner = new TestRunner()6 runner.soap(builder ->7 builder.server()8 .response()9 .message()10 }11}12import com.consol.citrus.dsl.runner.TestRunner;13import com.consol.citrus.message.builder.SoapMessageBuilder;14class SoapServerResponseActionBuilder {15 public static void main(String[] args) {16 TestRunner runner = new TestRunner();17 }18}

Full Screen

Full Screen

SoapMessage

Using AI Code Generation

copy

Full Screen

1soap()2 .server()3 .response()4 .message()5 .build();6soap()7 .server()8 .response()9 .action("HelloResponse");10soap()11 .server()12 .response()13 .fault()14 .faultString("TE1001: Invalid request")15 .faultActor("Citrus")16 .build();17soap()18 .server()19 .response()20soap()21 .server()22 .response()23 .headers()24 .build();

Full Screen

Full Screen

SoapMessage

Using AI Code Generation

copy

Full Screen

1soap()2.server()3.response()4.message(new ClassPathResource("soap-response.xml"))5soap()6.server()7.response()8soap()9.server()10.response()11.headers(new ClassPathResource("soap-response-headers.xml"))12soap()13.server()14.response()15soap()16.server()17.response()18soap()19.server()20.response()

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