HomeSort by relevance Sort by last modified time
    Searched refs:handleCommand (Results 26 - 50 of 204) sorted by null

12 3 4 5 6 7 8 9

  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
ReinCommandHandlerTest.groovy 41 handleCommand([])
47 handleCommand([])
StorCommandHandlerTest.groovy 47 handleCommand([FILE])
53 handleCommand([p(NO_SUCH_DIR, FILENAME)])
TypeCommandHandlerTest.groovy 34 handleCommand(['A'])
40 handleCommand(['I'])
AbstractFakeCommandHandlerTestCase.groovy 60 shouldFailWithMessageContaining("serverConfiguration") { commandHandler.handleCommand(command, session) }
64 shouldFailWithMessageContaining("command") { commandHandler.handleCommand(null, session) }
69 shouldFailWithMessageContaining("session") { commandHandler.handleCommand(command, null) }
76 commandHandler.handleCommand(command, session)
122 * Perform a test of the handleCommand() method on the specified command
126 commandHandler.handleCommand(createCommand(commandParameters), session)
131 * Perform a test of the handleCommand() method on the specified command
136 commandHandler.handleCommand(command, session)
148 * Invoke the handleCommand() method for the current CommandHandler, passing in
152 protected void handleCommand(List parameters)
    [all...]
RetrCommandHandlerTest.groovy 64 handleCommand([DIR])
70 handleCommand([path])
76 handleCommand([FILE])
82 handleCommand([FILE])
91 handleCommand([FILE])
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
StaticReplyCommandHandlerTest.java 78 * Test the handleCommand() method when the replyText attribute has not been set.
88 commandHandler.handleCommand(COMMAND, session);
96 * Test the handleCommand() method, when the replyCode and replyText are both set
106 commandHandler.handleCommand(COMMAND, session);
114 * Test the handleCommand() method when the replyCode attribute has not been set
120 commandHandler.handleCommand(COMMAND, session);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
TypeCommandHandlerTest.java 35 * Test the handleCommand() method
47 commandHandler.handleCommand(COMMAND1, session);
48 commandHandler.handleCommand(COMMAND2, session);
49 commandHandler.handleCommand(COMMAND3, session);
59 * Test the handleCommand() method, when no type parameter has been specified
StatCommandHandlerTest.java 36 * Test the handleCommand() method, when no pathname parameter is specified
45 commandHandler.handleCommand(COMMAND, session);
53 * Test the handleCommand() method, specifying a pathname parameter
64 commandHandler.handleCommand(COMMAND, session);
72 * Test the handleCommand() method, when the replyCode is explicitly set
82 commandHandler.handleCommand(COMMAND, session);
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
TypeCommandHandlerTest.java 35 * Test the handleCommand() method
47 commandHandler.handleCommand(COMMAND1, session);
48 commandHandler.handleCommand(COMMAND2, session);
49 commandHandler.handleCommand(COMMAND3, session);
59 * Test the handleCommand() method, when no type parameter has been specified
AlloCommandHandlerTest.java 43 * Test the handleCommand() method
51 commandHandler.handleCommand(command1, session);
52 commandHandler.handleCommand(command2, session);
63 * Test the handleCommand() method, when no numberOfBytes parameter has been specified
70 * Test the handleCommand() method, when the recordSize delimiter ("R") parameter is specified,
75 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("123 R ")), session);
84 * Test the handleCommand() method, when a non-numeric numberOfBytes parameter has been
89 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("xx")), session);
98 * Test the handleCommand() method, when a non-numeric recordSize parameter has been specified
102 commandHandler.handleCommand(new Command(CommandNames.ALLO, array("123 R xx")), session);
    [all...]
StatCommandHandlerTest.java 38 * Test the handleCommand() method, when no pathname parameter is specified
47 commandHandler.handleCommand(COMMAND, session);
55 * Test the handleCommand() method, specifying a pathname parameter
66 commandHandler.handleCommand(COMMAND, session);
74 * Test the handleCommand() method, when the replyCode is explicitly set
84 commandHandler.handleCommand(COMMAND, session);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/
StubFtpServerTest.java 91 protected void handleCommand(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
97 public void handleCommand(Command command, Session session) throws Exception {
112 protected void handleCommand(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/command/
StaticReplyCommandHandlerTest.java 80 * Test the handleCommand() method when the replyText attribute has not been set.
90 commandHandler.handleCommand(COMMAND, session);
98 * Test the handleCommand() method, when the replyCode and replyText are both set
108 commandHandler.handleCommand(COMMAND, session);
116 * Test the handleCommand() method when the replyCode attribute has not been set
122 commandHandler.handleCommand(COMMAND, session);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
AborCommandHandler.java 41 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
AcctCommandHandler.java 47 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
49 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
CdupCommandHandler.java 41 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
CwdCommandHandler.java 47 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
49 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
DeleCommandHandler.java 47 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
49 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
MkdCommandHandler.java 47 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
49 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
ModeCommandHandler.java 47 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
49 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
NoopCommandHandler.java 41 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
PassCommandHandler.java 47 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
49 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
PwdCommandHandler.java 45 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
QuitCommandHandler.java 41 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
ReinCommandHandler.java 42 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {

Completed in 201 milliseconds

12 3 4 5 6 7 8 9