Package org.exoplatform.frameworks.ftpclient.commands

Examples of org.exoplatform.frameworks.ftpclient.commands.CmdSize


      assertEquals(FtpConst.Replyes.REPLY_331, client.executeCommand(new CmdUser("admin")));
      assertEquals(FtpConst.Replyes.REPLY_230, client.executeCommand(new CmdPass("admin")));
      assertEquals(FtpConst.Replyes.REPLY_215, client.executeCommand(new CmdSyst()));

      assertEquals(FtpConst.Replyes.REPLY_213, client.executeCommand(new CmdSize("/production/test_file.txt")));

      // retrieve size here..., assert it

      assertEquals(FtpConst.Replyes.REPLY_550, client.executeCommand(new CmdSize("/production/test_file_absent.txt")));

      client.close();

      log.info("Complete.");
   }
View Full Code Here


      FtpClientSession client = FtpTestConfig.getTestFtpClient();
      client.connect();

      {
         CmdSize cmdSize = new CmdSize(null);
         assertEquals(FtpConst.Replyes.REPLY_530, client.executeCommand(cmdSize));
      }

      {
         CmdUser cmdUser = new CmdUser(FtpTestConfig.USER_ID);
         assertEquals(FtpConst.Replyes.REPLY_331, client.executeCommand(cmdUser));
      }

      {
         CmdPass cmdPass = new CmdPass(FtpTestConfig.USER_PASS);
         assertEquals(FtpConst.Replyes.REPLY_230, client.executeCommand(cmdPass));
      }

      {
         CmdSize cmdSize = new CmdSize(null);
         assertEquals(FtpConst.Replyes.REPLY_500, client.executeCommand(cmdSize));
      }

      {
         CmdSize cmdSize = new CmdSize("NoSuchFile");
         assertEquals(FtpConst.Replyes.REPLY_550, client.executeCommand(cmdSize));
      }

      String filePath = "/production/test_size_file.txt";
      String fileContent = "This test File for SIZE command.";
      int fileSize = fileContent.length();

      {
         CmdPasv cmdPasv = new CmdPasv();
         assertEquals(FtpConst.Replyes.REPLY_227, client.executeCommand(cmdPasv));
      }

      {
         CmdStor cmdStor = new CmdStor(filePath);
         cmdStor.setFileContent(fileContent.getBytes());
         assertEquals(FtpConst.Replyes.REPLY_226, client.executeCommand(cmdStor));
      }

      {
         CmdSize cmdSize = new CmdSize(filePath);
         assertEquals(FtpConst.Replyes.REPLY_213, client.executeCommand(cmdSize));
         assertEquals(fileSize, cmdSize.getSize());
      }

      {
         CmdDele cmdDele = new CmdDele(filePath);
         assertEquals(FtpConst.Replyes.REPLY_250, client.executeCommand(cmdDele));
View Full Code Here

TOP

Related Classes of org.exoplatform.frameworks.ftpclient.commands.CmdSize

Copyright © 2018 www.massapicom. 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.