How to use handleTextPart method of com.consol.citrus.mail.message.MailMessageConverter class

Best Citrus code snippet using com.consol.citrus.mail.message.MailMessageConverter.handleTextPart

Source:MailMessageConverter.java Github

copy

Full Screen

...143 String contentType = parseContentType(part.getContentType());144 if (part.isMimeType("multipart/*")) {145 return handleMultiPart((Multipart) part.getContent());146 } else if (part.isMimeType("text/*")) {147 return handleTextPart(part, contentType);148 } else if (part.isMimeType("image/*")) {149 return handleImageBinaryPart(part, contentType);150 } else if (part.isMimeType("application/*")) {151 return handleApplicationContentPart(part, contentType);152 } else {153 return handleBinaryPart(part, contentType);154 }155 }156 /**157 * Construct multipart body with first part being the body content and further parts being the attachments.158 * @param body159 * @return160 * @throws IOException161 */162 private BodyPart handleMultiPart(Multipart body) throws IOException, MessagingException {163 BodyPart bodyPart = null;164 for (int i = 0; i < body.getCount(); i++) {165 MimePart entity = (MimePart) body.getBodyPart(i);166 if (bodyPart == null) {167 bodyPart = handlePart(entity);168 } else {169 BodyPart attachment = handlePart(entity);170 bodyPart.addPart(new AttachmentPart(attachment.getContent(), parseContentType(attachment.getContentType()), entity.getFileName()));171 }172 }173 return bodyPart;174 }175 /**176 * Construct body part form special application data. Based on known application content types delegate to text,177 * image or binary body construction.178 * @param applicationData179 * @param contentType180 * @return181 * @throws IOException182 */183 protected BodyPart handleApplicationContentPart(MimePart applicationData, String contentType) throws IOException, MessagingException {184 if (applicationData.isMimeType("application/pdf")) {185 return handleImageBinaryPart(applicationData, contentType);186 } else if (applicationData.isMimeType("application/rtf")) {187 return handleImageBinaryPart(applicationData, contentType);188 } else if (applicationData.isMimeType("application/java")) {189 return handleTextPart(applicationData, contentType);190 } else if (applicationData.isMimeType("application/x-javascript")) {191 return handleTextPart(applicationData, contentType);192 } else if (applicationData.isMimeType("application/xhtml+xml")) {193 return handleTextPart(applicationData, contentType);194 } else if (applicationData.isMimeType("application/json")) {195 return handleTextPart(applicationData, contentType);196 } else if (applicationData.isMimeType("application/postscript")) {197 return handleTextPart(applicationData, contentType);198 } else {199 return handleBinaryPart(applicationData, contentType);200 }201 }202 /**203 * Construct base64 body part from image data.204 * @param image205 * @param contentType206 * @return207 * @throws IOException208 */209 protected BodyPart handleImageBinaryPart(MimePart image, String contentType) throws IOException, MessagingException {210 ByteArrayOutputStream bos = new ByteArrayOutputStream();211 FileCopyUtils.copy(image.getInputStream(), bos);212 String base64 = Base64.encodeBase64String(bos.toByteArray());213 return new BodyPart(base64, contentType);214 }215 /**216 * Construct simple body part from binary data just adding file name as content.217 * @param mediaPart218 * @param contentType219 * @return220 * @throws IOException221 */222 protected BodyPart handleBinaryPart(MimePart mediaPart, String contentType) throws IOException, MessagingException {223 String contentId = mediaPart.getContentID() != null ? "(" + mediaPart.getContentID() + ")" : "";224 return new BodyPart(mediaPart.getFileName() + contentId, contentType);225 }226 /**227 * Construct simple binary body part with base64 data.228 * @param textPart229 * @param contentType230 * @return231 * @throws IOException232 */233 protected BodyPart handleTextPart(MimePart textPart, String contentType) throws IOException, MessagingException {234 String content;235 if (textPart.getContent() instanceof String) {236 content = (String) textPart.getContent();237 } else if (textPart.getContent() instanceof InputStream) {238 content = FileUtils.readToString((InputStream) textPart.getContent(), Charset.forName(parseCharsetFromContentType(contentType)));239 } else {240 throw new CitrusRuntimeException("Cannot handle text content of type: " + textPart.getContent().getClass().toString());241 }242 return new BodyPart(stripMailBodyEnding(content), contentType);243 }244 /**245 * Removes SMTP mail body ending which is defined by single '.' character in separate line marking246 * the mail body end of file.247 * @param textBody...

Full Screen

Full Screen

handleTextPart

Using AI Code Generation

copy

Full Screen

1context.setVariable("mailTextPart", mailMessageConverter.handleTextPart(mailMessage.getTextPart()));2context.setVariable("mailAttachments", mailMessageConverter.handleAttachments(mailMessage.getAttachments()));3context.setVariable("mailMultipart", mailMessageConverter.handleMultipart(mailMessage.getMultipart()));4public String handleTextPart(TextPart textPart)5public List<Attachment> handleAttachments(List<Attachment> attachments)6public List<Attachment> handleMultipart(Multipart multipart)7{8 Map<String, Object> convert(Attachment attachment);9}10{11 public Map<String, Object> convert(Attachment attachment)12 {13 Map<String, Object> attachmentMap = new HashMap<>();14 attachmentMap.put("contentId", attachment.getContentId());15 attachmentMap.put("contentType", attachment.getContentType());16 attachmentMap.put("contentDisposition", attachment.getContentDisposition());17 attachmentMap.put("dataHandler", attachment.getDataHandler());18 attachmentMap.put("fileName", attachment.getFileName());19 attachmentMap.put("headers", attachment.getHeaders());

Full Screen

Full Screen

handleTextPart

Using AI Code Generation

copy

Full Screen

1public void testMailMessageConverter() throws Exception {2 String mailMessage = new String(Files.readAllBytes(Paths.get("src/test/resources/mail-message.txt")), StandardCharsets.UTF_8);3 MailMessageConverter mailMessageConverter = new MailMessageConverter();4 List<MailMessage> mailMessages = mailMessageConverter.convertMailMessage(mailMessage);5 for (MailMessage mailMessagePart : mailMessages) {6 if (mailMessagePart instanceof MailTextMessage) {7 System.out.println(((MailTextMessage) mailMessagePart).getContent());8 }9 }10 send(new SendMailAction.Builder()11 .message(mailMessages)12 .endpoint("smtpServer")13 .build());14 receive(new ReceiveMailAction.Builder()15 .message(mailMessages)16 .endpoint("imapServer")17 .build());18}19public void testMailMessageConverter() throws Exception {20 String mailMessage = new String(Files.readAllBytes(Paths.get("src/test/resources/mail-message.txt")), StandardCharsets.UTF_8);21 MailMessageConverter mailMessageConverter = new MailMessageConverter();22 List<MailMessage> mailMessages = mailMessageConverter.convertMailMessage(mailMessage);23 for (MailMessage mailMessagePart : mailMessages) {24 if (mailMessagePart instanceof MailTextMessage) {25 System.out.println(((MailTextMessage) mailMessagePart).getContent());26 }27 }28 send(new SendMailAction.Builder()29 .message(mailMessages)30 .endpoint("smtpServer")31 .build());32 receive(new ReceiveMailAction.Builder()33 .message(mailMessages)34 .endpoint("imapServer")35 .build());36}

Full Screen

Full Screen

handleTextPart

Using AI Code Generation

copy

Full Screen

1import com.consol.citrus.dsl.runner.TestRunner2import com.consol.citrus.dsl.runner.TestRunnerSupport3import com.consol.citrus.dsl.runner.TestRunnerSupport.beforeTest4import com.consol.citrus.dsl.runner.TestRunnerSupport.afterTest5import com.consol.citrus.dsl.runner.TestRunnerSupport.run6import com.consol.citrus.dsl.runner.TestRunnerSupport.runTest7import com.consol.citrus.dsl.builder.BuilderSupport8import com.consol.citrus.dsl.builder.BuilderSupport.apply9import com.consol.citrus.dsl.builder.BuilderSupport.applyBehavior10import com.consol.citrus.dsl.builder.BuilderSupport.applyVariables11import com.consol.citrus.dsl.builder.BuilderSupport.applyProperties12import com.consol.citrus.dsl.builder.BuilderSupport.applyBeforeTest13import com.consol.citrus.dsl.builder.BuilderSupport.applyAfterTest14import com.consol.citrus.dsl.builder.BuilderSupport.applyBeforeSuite15import com.consol.citrus.dsl.builder.BuilderSupport.applyAfterSuite16import com.consol.citrus.dsl.builder.BuilderSupport.applyBeforeClass17import com.consol.citrus.dsl.builder.BuilderSupport.applyAfterClass18import com.consol.citrus.dsl.builder.BuilderSupport.applyBefore19import com.consol.citrus.dsl.builder.BuilderSupport.applyAfter20import com.consol.citrus.dsl.builder.BuilderSupport.applyJavaConfig21import com.consol.citrus.dsl.builder.BuilderSupport.applySpring22import com.consol.citrus.dsl.builder.BuilderSupport.applyXml23import com.consol.citrus.dsl.builder.BuilderSupport.apply

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.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful