Examples of ByteArrayLfSerializer


Examples of org.springframework.integration.ip.tcp.serializer.ByteArrayLfSerializer

    doEchoTest();
  }

  @Test
  public void echoTestWithLFEncoder() throws Exception {
    scp = new ShellCommandProcessor(new ByteArrayLfSerializer(),
        "python src/test/resources/echo.py");
    scp.afterPropertiesSet();
    scp.start();
    doEchoTest();
  }
View Full Code Here

Examples of org.springframework.integration.ip.tcp.serializer.ByteArrayLfSerializer

  }

  @Test
  public synchronized void testWorkingDirectory() throws Exception {

    scp = new ShellCommandProcessor(new ByteArrayLfSerializer(), "python cwd.py");
    String workingDirectory = new File("src/test/resources").getAbsolutePath();
    scp.setWorkingDirectory(workingDirectory);
    scp.afterPropertiesSet();
    scp.start();
    String cwd = scp.receive();
View Full Code Here

Examples of org.springframework.integration.ip.tcp.serializer.ByteArrayLfSerializer

  }

  @Test
  public synchronized void testEnvironment() throws Exception {

    scp = new ShellCommandProcessor(new ByteArrayLfSerializer(), "python src/test/resources/env.py");
    Map<String, String> environment = new HashMap<String, String>();
    environment.put("FOO", "foo");
    environment.put("BAR", "bar");
    scp.setEnvironment(environment);
    scp.afterPropertiesSet();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.