blob: 2c5ba1e9e07ce4f3ac7f30dd939ef6a82812c0ae [file] [log] [blame]
chrismair00dc7bd2014-05-11 21:21:28 +00001/*
2 * Copyright 2007 the original author or authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.mockftpserver.stub.command;
17
18import org.mockftpserver.core.command.*;
19import org.mockftpserver.core.command.AbstractCommandHandlerTestCase;
20
21/**
22 * Tests for the StruCommandHandler class
23 *
24 * @version $Revision$ - $Date$
25 *
26 * @author Chris Mair
27 */
28public final class StruCommandHandlerTest extends AbstractCommandHandlerTestCase {
29
30 private static final String CODE1 = "F";
31 private static final String CODE2 = "R";
32
33 private StruCommandHandler commandHandler;
34 private Command command1;
35 private Command command2;
36
37 /**
38 * Test the handleCommand() method
39 */
40 public void testHandleCommand() throws Exception {
41
42 session.sendReply(ReplyCodes.STRU_OK, replyTextFor(ReplyCodes.STRU_OK));
43 session.sendReply(ReplyCodes.STRU_OK, replyTextFor(ReplyCodes.STRU_OK));
44 replay(session);
45
46 commandHandler.handleCommand(command1, session);
47 commandHandler.handleCommand(command2, session);
48 verify(session);
49
50 verifyNumberOfInvocations(commandHandler, 2);
51 verifyOneDataElement(commandHandler.getInvocation(0), StruCommandHandler.FILE_STRUCTURE_KEY, CODE1);
52 verifyOneDataElement(commandHandler.getInvocation(1), StruCommandHandler.FILE_STRUCTURE_KEY, CODE2);
53 }
54
55 /**
56 * Test the handleCommand() method, when no pathname parameter has been specified
57 */
58 public void testHandleCommand_MissingPathnameParameter() throws Exception {
59 testHandleCommand_InvalidParameters(commandHandler, CommandNames.STRU, EMPTY);
60 }
61
62 /**
63 * Perform initialization before each test
64 *
65 * @see org.mockftpserver.core.command.AbstractCommandHandlerTestCase#setUp()
66 */
67 protected void setUp() throws Exception {
68 super.setUp();
69 commandHandler = new StruCommandHandler();
70 commandHandler.setReplyTextBundle(replyTextBundle);
71 command1 = new Command(CommandNames.STRU, array(CODE1));
72 command2 = new Command(CommandNames.STRU, array(CODE2));
73 }
74
75}