Search in sources :

Example 1 with PipeLineSession

use of nl.nn.adapterframework.core.PipeLineSession in project iaf by ibissource.

the class NetStorageSenderTest method rmdirAction.

@Test
public void rmdirAction() throws Throwable {
    NetStorageSender sender = getSender();
    sender.setAction(Action.RMDIR);
    Message input = new Message("my/special/path/");
    try {
        PipeLineSession pls = new PipeLineSession(session);
        sender.configure();
        sender.open();
        String result = sender.sendMessage(input, pls).asString();
        assertEqualsIgnoreCRLF(getFile("rmdirAction.txt"), result.trim());
    } catch (SenderException e) {
        throw e.getCause();
    } finally {
        if (sender != null) {
            sender.close();
        }
    }
}
Also used : Message(nl.nn.adapterframework.stream.Message) PipeLineSession(nl.nn.adapterframework.core.PipeLineSession) SenderException(nl.nn.adapterframework.core.SenderException) Test(org.junit.Test)

Example 2 with PipeLineSession

use of nl.nn.adapterframework.core.PipeLineSession in project iaf by ibissource.

the class NetStorageSenderTest method uploadActionWithSHA256Hash.

@Test
public void uploadActionWithSHA256Hash() throws Throwable {
    NetStorageSender sender = getSender();
    sender.setAction(Action.UPLOAD);
    sender.setHashAlgorithm(HashAlgorithm.SHA256);
    Message input = new Message("my/special/path/");
    sender.addParameter(ParameterBuilder.create().withName("file").withSessionKey("fileMessage"));
    try {
        Message file = new Message("<dummyFile>");
        PipeLineSession pls = new PipeLineSession(session);
        pls.put("fileMessage", file);
        sender.configure();
        sender.open();
        String result = sender.sendMessage(input, pls).asString();
        assertEqualsIgnoreCRLF(getFile("uploadActionSHA256.txt"), result.trim());
    } catch (SenderException e) {
        throw e.getCause();
    } finally {
        if (sender != null) {
            sender.close();
        }
    }
}
Also used : Message(nl.nn.adapterframework.stream.Message) PipeLineSession(nl.nn.adapterframework.core.PipeLineSession) SenderException(nl.nn.adapterframework.core.SenderException) Test(org.junit.Test)

Example 3 with PipeLineSession

use of nl.nn.adapterframework.core.PipeLineSession in project iaf by ibissource.

the class NetStorageSenderTest method downloadAction.

@Test
public void downloadAction() throws Throwable {
    NetStorageSender sender = getSender();
    sender.setAction(Action.DOWNLOAD);
    Message input = new Message("my/special/path/");
    try {
        PipeLineSession pls = new PipeLineSession(session);
        sender.configure();
        sender.open();
        String result = sender.sendMessage(input, pls).asString();
        assertEqualsIgnoreCRLF(getFile("downloadAction.txt"), result.trim());
    } catch (SenderException e) {
        throw e.getCause();
    } finally {
        if (sender != null) {
            sender.close();
        }
    }
}
Also used : Message(nl.nn.adapterframework.stream.Message) PipeLineSession(nl.nn.adapterframework.core.PipeLineSession) SenderException(nl.nn.adapterframework.core.SenderException) Test(org.junit.Test)

Example 4 with PipeLineSession

use of nl.nn.adapterframework.core.PipeLineSession in project iaf by ibissource.

the class NetStorageSenderTest method uploadActionWithCustomSHA1Hash.

@Test
public void uploadActionWithCustomSHA1Hash() throws Throwable {
    NetStorageSender sender = getSender();
    sender.setAction(Action.UPLOAD);
    sender.setHashAlgorithm(HashAlgorithm.SHA1);
    Message input = new Message("my/special/path/");
    // Matches response file but uses a different input message
    sender.addParameter(ParameterBuilder.create().withName("sha1").withValue("51e8bbf813bdbcede109d13b863a58132e80b2e2"));
    sender.addParameter(ParameterBuilder.create().withName("file").withSessionKey("fileMessage"));
    try {
        Message file = new Message("<dummyFile>----");
        PipeLineSession pls = new PipeLineSession(session);
        pls.put("fileMessage", file);
        sender.configure();
        sender.open();
        String result = sender.sendMessage(input, pls).asString();
        assertEqualsIgnoreCRLF(getFile("uploadActionSHA1.txt"), result.replace("----", "").trim());
    } catch (SenderException e) {
        throw e.getCause();
    } finally {
        if (sender != null) {
            sender.close();
        }
    }
}
Also used : Message(nl.nn.adapterframework.stream.Message) PipeLineSession(nl.nn.adapterframework.core.PipeLineSession) SenderException(nl.nn.adapterframework.core.SenderException) Test(org.junit.Test)

Example 5 with PipeLineSession

use of nl.nn.adapterframework.core.PipeLineSession in project iaf by ibissource.

the class NetStorageSenderTest method uploadActionWithSHA1Hash.

@Test
public void uploadActionWithSHA1Hash() throws Throwable {
    NetStorageSender sender = getSender();
    sender.setAction(Action.UPLOAD);
    sender.setHashAlgorithm(HashAlgorithm.SHA1);
    Message input = new Message("my/special/path/");
    sender.addParameter(ParameterBuilder.create().withName("file").withSessionKey("fileMessage"));
    try {
        Message file = new Message("<dummyFile>");
        PipeLineSession pls = new PipeLineSession(session);
        pls.put("fileMessage", file);
        sender.configure();
        sender.open();
        String result = sender.sendMessage(input, pls).asString();
        assertEqualsIgnoreCRLF(getFile("uploadActionSHA1.txt"), result.trim());
    } catch (SenderException e) {
        throw e.getCause();
    } finally {
        if (sender != null) {
            sender.close();
        }
    }
}
Also used : Message(nl.nn.adapterframework.stream.Message) PipeLineSession(nl.nn.adapterframework.core.PipeLineSession) SenderException(nl.nn.adapterframework.core.SenderException) Test(org.junit.Test)

Aggregations

PipeLineSession (nl.nn.adapterframework.core.PipeLineSession)270 Message (nl.nn.adapterframework.stream.Message)210 Test (org.junit.Test)202 SenderException (nl.nn.adapterframework.core.SenderException)43 PipeRunResult (nl.nn.adapterframework.core.PipeRunResult)33 UrlMessage (nl.nn.adapterframework.stream.UrlMessage)30 ByteArrayInputStream (java.io.ByteArrayInputStream)26 IOException (java.io.IOException)25 Parameter (nl.nn.adapterframework.parameters.Parameter)23 PipeForward (nl.nn.adapterframework.core.PipeForward)21 ParameterValueList (nl.nn.adapterframework.parameters.ParameterValueList)17 Date (java.util.Date)15 ConfigurationException (nl.nn.adapterframework.configuration.ConfigurationException)14 InputStream (java.io.InputStream)11 TimeoutException (nl.nn.adapterframework.core.TimeoutException)11 ParameterList (nl.nn.adapterframework.parameters.ParameterList)11 Map (java.util.Map)10 SimpleDateFormat (java.text.SimpleDateFormat)9 SOAPMessage (javax.xml.soap.SOAPMessage)9 URL (java.net.URL)8