How to use FtpMarshaller class of com.consol.citrus.ftp.message package

Best Citrus code snippet using com.consol.citrus.ftp.message.FtpMarshaller

Source:FtpMarshaller.java Github

copy

Full Screen

...36/**37 * @author Christoph Deppisch38 * @since 2.7.539 */40public class FtpMarshaller extends ObjectMapper implements Marshaller, Unmarshaller {41 /** Logger */42 private static Logger log = LoggerFactory.getLogger(FtpMarshaller.class);43 /** System property defining message format to marshal to */44 private static final String JDBC_MARSHALLER_TYPE_PROPERTY = "citrus.ftp.marshaller.type";45 /** XML marshalling delegate */46 private Jaxb2Marshaller jaxbDelegate = new Jaxb2Marshaller();47 /** Message type format: XML or JSON */48 private String type;49 /**50 * Default constructor51 */52 public FtpMarshaller() {53 jaxbDelegate.setClassesToBeBound(Command.class,54 CommandResult.class,55 ConnectCommand.class,56 GetCommand.class,57 PutCommand.class,58 ListCommand.class,59 DeleteCommand.class,60 GetCommandResult.class,61 PutCommandResult.class,62 ListCommandResult.class,63 DeleteCommandResult.class);64 jaxbDelegate.setSchema(new ClassPathResource("com/consol/citrus/schema/citrus-ftp-message.xsd"));65 type = System.getProperty(JDBC_MARSHALLER_TYPE_PROPERTY, MessageType.XML.name());66 try {...

Full Screen

Full Screen

Source:FtpEndpointConfiguration.java Github

copy

Full Screen

...14 * limitations under the License.15 */16package com.consol.citrus.ftp.client;17import com.consol.citrus.endpoint.AbstractPollableEndpointConfiguration;18import com.consol.citrus.ftp.message.FtpMarshaller;19import com.consol.citrus.message.*;20import org.apache.commons.net.ftp.FTPCmd;21import java.util.stream.Collectors;22import java.util.stream.Stream;23/**24 * @author Christoph Deppisch25 * @since 2.026 */27public class FtpEndpointConfiguration extends AbstractPollableEndpointConfiguration {28 /** Ftp host to connect to */29 private String host = "localhost";30 /** Ftp server port */31 private Integer port = 22222;32 /** User name used for login */33 private String user;34 /** User password used for login */35 private String password;36 /** Auto accept connection requests */37 private boolean autoConnect = true;38 /** Auto login user requests */39 private boolean autoLogin = true;40 /** Marshaller converts from XML to Jdbc model objects */41 private FtpMarshaller marshaller = new FtpMarshaller();42 /** Should http errors be handled within endpoint consumer or simply throw exception */43 private ErrorHandlingStrategy errorHandlingStrategy = ErrorHandlingStrategy.PROPAGATE;44 /** Reply message correlator */45 private MessageCorrelator correlator = new DefaultMessageCorrelator();46 /** Comma delimited list of ftp commands to auto handle on server */47 private String autoHandleCommands = Stream.of(FTPCmd.PORT.getCommand(),48 FTPCmd.TYPE.getCommand()).collect(Collectors.joining(","));49 /** Auto read file content retrieved from server */50 private boolean autoReadFiles = true;51 /** File transfer passive mode */52 private boolean localPassiveMode = true;53 /**54 * Gets the ftp host.55 * @return56 */57 public String getHost() {58 return host;59 }60 /**61 * Sets the ftp host.62 * @param host63 */64 public void setHost(String host) {65 this.host = host;66 }67 /**68 * Sets the ftp server port.69 * @param port70 */71 public void setPort(Integer port) {72 this.port = port;73 }74 /**75 * Gets the ftp server port.76 * @return77 */78 public Integer getPort() {79 return port;80 }81 /**82 * Set the reply message correlator.83 * @param correlator the correlator to set84 */85 public void setCorrelator(MessageCorrelator correlator) {86 this.correlator = correlator;87 }88 /**89 * Gets the correlator.90 * @return the correlator91 */92 public MessageCorrelator getCorrelator() {93 return correlator;94 }95 /**96 * Sets the user name for login.97 * @param user98 */99 public void setUser(String user) {100 this.user = user;101 }102 /**103 * Gets the user name for login.104 * @return105 */106 public String getUser() {107 return user;108 }109 /**110 * Sets the user password for login.111 * @param password112 */113 public void setPassword(String password) {114 this.password = password;115 }116 /**117 * Gets the user password for login.118 * @return119 */120 public String getPassword() {121 return password;122 }123 /**124 * Gets the autoConnect.125 *126 * @return127 */128 public boolean isAutoConnect() {129 return autoConnect;130 }131 /**132 * Sets the autoConnect.133 *134 * @param autoConnect135 */136 public void setAutoConnect(boolean autoConnect) {137 this.autoConnect = autoConnect;138 }139 /**140 * Gets the autoLogin.141 *142 * @return143 */144 public boolean isAutoLogin() {145 return autoLogin;146 }147 /**148 * Sets the autoLogin.149 *150 * @param autoLogin151 */152 public void setAutoLogin(boolean autoLogin) {153 this.autoLogin = autoLogin;154 }155 /**156 * Gets the marshaller.157 *158 * @return159 */160 public FtpMarshaller getMarshaller() {161 return marshaller;162 }163 /**164 * Sets the marshaller.165 *166 * @param marshaller167 */168 public void setMarshaller(FtpMarshaller marshaller) {169 this.marshaller = marshaller;170 }171 /**172 * Gets the errorHandlingStrategy.173 *174 * @return175 */176 public ErrorHandlingStrategy getErrorHandlingStrategy() {177 return errorHandlingStrategy;178 }179 /**180 * Sets the errorHandlingStrategy.181 *182 * @param errorHandlingStrategy...

Full Screen

Full Screen

FtpMarshaller

Using AI Code Generation

copy

Full Screen

1import org.springframework.context.annotation.Bean;2import org.springframework.context.annotation.Configuration;3import org.springframework.oxm.jaxb.Jaxb2Marshaller;4import com.consol.citrus.ftp.message.FtpMarshaller;5import com.consol.citrus.ftp.message.FtpMessageConverter;6public class FtpMarshallerConfig {7 public FtpMarshaller ftpMarshaller() {8 FtpMarshaller ftpMarshaller = new FtpMarshaller(new Jaxb2Marshaller());9 ftpMarshaller.setMessageConverter(new FtpMessageConverter());10 return ftpMarshaller;11 }12}13import com.consol.citrus.ftp.message.FtpMarshaller;14import com.consol.citrus.ftp.message.FtpMessageConverter;15import com.consol.citrus.ftp.server.FtpServer;16import com.consol.citrus.ftp.server.FtpServerBuilder;17import org.springframework.context.annotation.Bean;18import org.springframework.context.annotation.Configuration;19public class FtpServerConfig {20 public FtpServer ftpServer(FtpMarshaller ftpMarshaller) {21 return new FtpServerBuilder()22 .port(2221)23 .userHomeDirectory("src/test/resources/ftp")24 .marshaller(ftpMarshaller)25 .build();26 }27}28import com.consol.citrus.annotations.CitrusTest;29import com.consol.citrus.dsl.junit.JUnit4CitrusTestRunner;30import com.consol.citrus.ftp.client.FtpClient;31import com.consol.citrus.ftp.message.FtpMessage;32import com.consol.citrus.ftp.message.FtpMessageAction;33import com.consol.citrus.ftp.message.FtpMessageHeaders;34import com.consol.citrus.ftp.server.FtpServer;35import org.springframework.beans.factory.annotation.Autowired;36import org.springframework.beans.factory.annotation.Qualifier;37import org.testng.annotations.Test;38import java.io.IOException;39public class FtpTest extends JUnit4CitrusTestRunner {40 @Qualifier("ftpClient")41 private FtpClient ftpClient;

Full Screen

Full Screen

FtpMarshaller

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.ftp.message;2import com.consol.citrus.message.Message;3import com.consol.citrus.message.MessageMarshaller;4import com.consol.citrus.message.MessageType;5import com.consol.citrus.util.FileUtils;6import org.apache.commons.net.ftp.FTPFile;7import org.springframework.util.StringUtils;8import java.io.File;9import java.io.IOException;10import java.util.ArrayList;11import java.util.List;12public class FtpMarshaller implements MessageMarshaller {13 public Message marshal(Message message, MessageType messageType) {14 if (messageType == MessageType.XML) {15 StringBuilder xmlMessage = new StringBuilder();16 xmlMessage.append("<files>");17 List<FTPFile> ftpFiles = message.getPayload(List.class);18 for (FTPFile ftpFile : ftpFiles) {19 xmlMessage.append("<file>");20 xmlMessage.append("<name>").append(ftpFile.getName()).append("</name>");21 xmlMessage.append("<size>").append(ftpFile.getSize()).append("</size>");22 xmlMessage.append("<directory>").append(ftpFile.isDirectory()).append("</directory>");23 xmlMessage.append("</file>");24 }25 xmlMessage.append("</files>");26 message.setPayload(xmlMessage.toString());27 } else {28 throw new UnsupportedOperationException("Unsupported message type for FTP message marshaller: " + messageType);29 }30 return message;31 }32 public Message unmarshal(Message message, MessageType messageType) {33 if (messageType == MessageType.XML) {34 List<FTPFile> ftpFiles = new ArrayList<>();35 String xmlMessage = message.getPayload(String.class);36 if (StringUtils.hasText(xmlMessage)) {37 String[] fileElements = StringUtils.delimitedListToStringArray(xmlMessage, "</file>");38 for (String fileElement : fileElements) {39 if (StringUtils.hasText(fileElement)) {40 String fileName = StringUtils.trimAllWhitespace(FileUtils.readXmlValue(fileElement, "name"));41 long fileSize = Long.parseLong(StringUtils.trimAllWhitespace(FileUtils.readXmlValue(fileElement, "size")));42 boolean fileDirectory = Boolean.parseBoolean(StringUtils.trimAllWhitespace(FileUtils.readXmlValue(fileElement, "directory")));43 FTPFile ftpFile = new FTPFile();44 ftpFile.setName(fileName);

Full Screen

Full Screen

FtpMarshaller

Using AI Code Generation

copy

Full Screen

1FtpMarshaller ftpMarshaller = new FtpMarshaller();2FtpMessage ftpMessage = new FtpMessage();3CitrusFtpClient ftpClient = new CitrusFtpClient();4FtpEndpoint ftpEndpoint = new FtpEndpoint();5FtpEndpointConfiguration ftpEndpointConfiguration = new FtpEndpointConfiguration();6FtpServer ftpServer = new FtpServer();7FtpServerConfiguration ftpServerConfiguration = new FtpServerConfiguration();8FtpServerController ftpServerController = new FtpServerController();9FtpServerControllerConfiguration ftpServerControllerConfiguration = new FtpServerControllerConfiguration();10FtpServerRunner ftpServerRunner = new FtpServerRunner();11FtpServerRunnerConfiguration ftpServerRunnerConfiguration = new FtpServerRunnerConfiguration();12FtpServerSupport ftpServerSupport = new FtpServerSupport();13FtpServerSupportConfiguration ftpServerSupportConfiguration = new FtpServerSupportConfiguration();14FtpServerSupportRunner ftpServerSupportRunner = new FtpServerSupportRunner();

Full Screen

Full Screen

FtpMarshaller

Using AI Code Generation

copy

Full Screen

1package com.consol.citrus.ftp.message;2import java.io.IOException;3import java.io.InputStream;4import org.apache.commons.net.ftp.FTPFile;5import org.springframework.core.io.Resource;6import org.springframework.util.Assert;7import org.springframework.util.FileCopyUtils;8import com.consol.citrus.message.AbstractMessageMarshaller;9import com.consol.citrus.message.Message;10public class FtpMarshaller extends AbstractMessageMarshaller {11 public boolean supportsMessageType(String messageType) {12 return messageType.equals("ftp");13 }14 public String getMessageType() {15 return "ftp";16 }17 public Message marshall(Object object) {18 if (object instanceof FTPFile) {19 return new Message(((FTPFile) object).getName());20 } else if (object instanceof Resource) {21 try {22 return new Message(FileCopyUtils.copyToByteArray(((Resource) object).getInputStream()));23 } catch (IOException e) {24 throw new RuntimeException("Failed to read resource data", e);25 }26 } else {27 throw new IllegalArgumentException("Unsupported object type - unable to marshall object");28 }29 }30 public Object unmarshall(Message message) {31 Assert.notNull(message.getPayload(), "Message payload must not be null");32 if (message.getPayload() instanceof byte[]) {33 return new String((byte[]) message.getPayload());34 } else if (message.getPayload() instanceof String) {35 return message.getPayload();36 } else if (message.getPayload() instanceof InputStream) {37 try {38 return FileCopyUtils.copyToByteArray((InputStream) message.getPayload());39 } catch (IOException e) {40 throw new RuntimeException("Failed to read resource data", e);41 }42 } else {43 throw new IllegalArgumentException("Unsupported message payload type - unable to unmarshall message");44 }45 }46}47package com.consol.citrus.ftp.server;48import org.apache.commons.net.ftp.FTPClient;49import org.apache.commons.net.ftp.FTPFile;50import org.apache.commons.net.ftp.FTPReply;51import org.springframework.util.Assert;52import org.testng.Assert;53import org.testng.annotations.Test;54import java.io.File;55import java.io.FileInputStream;56import java.io.IOException;57import java.util.List;

Full Screen

Full Screen

FtpMarshaller

Using AI Code Generation

copy

Full Screen

1FtpMarshaller marshaller = new FtpMarshaller();2marshaller.marshal(request, new StreamResult(new FileOutputStream("3.java")));3FtpMarshaller marshaller = new FtpMarshaller();4marshaller.marshal(request, new StreamResult(new FileOutputStream("4.java")));5FtpMarshaller marshaller = new FtpMarshaller();6marshaller.marshal(request, new StreamResult(new FileOutputStream("5.java")));7FtpMarshaller marshaller = new FtpMarshaller();8marshaller.marshal(request, new StreamResult(new FileOutputStream("6.java")));9FtpMarshaller marshaller = new FtpMarshaller();10marshaller.marshal(request, new StreamResult(new FileOutputStream("7.java")));11FtpMarshaller marshaller = new FtpMarshaller();12marshaller.marshal(request, new StreamResult(new FileOutputStream("8.java")));13FtpMarshaller marshaller = new FtpMarshaller();14marshaller.marshal(request, new StreamResult(new FileOutputStream("9.java")));15FtpMarshaller marshaller = new FtpMarshaller();16marshaller.marshal(request, new StreamResult(new FileOutputStream("10.java")));17FtpMarshaller marshaller = new FtpMarshaller();18marshaller.marshal(request, new StreamResult(new FileOutputStream("11.java")));19FtpMarshaller marshaller = new FtpMarshaller();

Full Screen

Full Screen

FtpMarshaller

Using AI Code Generation

copy

Full Screen

1FtpMarshaller ftpMarshaller = new FtpMarshaller();2ftpMarshaller.setFtpMessageConverter(new FtpMessageConverter());3ftpMarshaller.setFtpFileConverter(new FtpFileConverter());4String ftpMessage = ftpMarshaller.marshalFtpMessage(ftpRequest);5FtpMarshaller ftpMarshaller = new FtpMarshaller();6ftpMarshaller.setFtpMessageConverter(new FtpMessageConverter());7ftpMarshaller.setFtpFileConverter(new FtpFileConverter());8String ftpMessage = ftpMarshaller.marshalFtpMessage(ftpRequest);9FtpMarshaller ftpMarshaller = new FtpMarshaller();10ftpMarshaller.setFtpMessageConverter(new FtpMessageConverter());11ftpMarshaller.setFtpFileConverter(new FtpFileConverter());12String ftpMessage = ftpMarshaller.marshalFtpMessage(ftpRequest);13FtpMarshaller ftpMarshaller = new FtpMarshaller();14ftpMarshaller.setFtpMessageConverter(new FtpMessageConverter());15ftpMarshaller.setFtpFileConverter(new FtpFileConverter());16String ftpMessage = ftpMarshaller.marshalFtpMessage(ftpRequest);17FtpMarshaller ftpMarshaller = new FtpMarshaller();18ftpMarshaller.setFtpMessageConverter(new FtpMessageConverter());19ftpMarshaller.setFtpFileConverter(new FtpFileConverter());20String ftpMessage = ftpMarshaller.marshalFtpMessage(ftpRequest);

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.

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful