AcctCommandHandlerTest.java revision 93102446a7b7c3d17888064b4e2e4e5cb534e6d0
1/*
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.Command;
19import org.mockftpserver.core.command.CommandNames;
20import org.mockftpserver.core.command.ReplyCodes;
21
22/**
23 * Tests for the AcctCommandHandler class
24 *
25 * @version $Revision: 88 $ - $Date: 2007-10-27 20:18:11 -0400 (Sat, 27 Oct 2007) $
26 *
27 * @author Chris Mair
28 */
29public final class AcctCommandHandlerTest extends AbstractCommandHandlerTest {
30
31    private static final String ACCOUNT1 = "account1";
32    private static final String ACCOUNT2 = "account2";
33
34    private AcctCommandHandler commandHandler;
35    private Command command1;
36    private Command command2;
37
38    /**
39     * Test the handleCommand() method
40     * @throws Exception
41     */
42    public void testHandleCommand() throws Exception {
43
44        session.sendReply(ReplyCodes.ACCT_OK, replyTextFor(ReplyCodes.ACCT_OK));
45        session.sendReply(ReplyCodes.ACCT_OK, replyTextFor(ReplyCodes.ACCT_OK));
46        replay(session);
47
48        commandHandler.handleCommand(command1, session);
49        commandHandler.handleCommand(command2, session);
50        verify(session);
51
52        verifyNumberOfInvocations(commandHandler, 2);
53        verifyOneDataElement(commandHandler.getInvocation(0), AcctCommandHandler.ACCOUNT_KEY, ACCOUNT1);
54        verifyOneDataElement(commandHandler.getInvocation(1), AcctCommandHandler.ACCOUNT_KEY, ACCOUNT2);
55    }
56
57    /**
58     * Test the handleCommand() method, when no password parameter has been specified
59     */
60    public void testHandleCommand_MissingPasswordParameter() throws Exception {
61        testHandleCommand_InvalidParameters(commandHandler, CommandNames.ACCT, EMPTY);
62    }
63
64    /**
65     * Perform initialization before each test
66     * @see org.mockftpserver.stub.command.AbstractCommandHandlerTest#setUp()
67     */
68    protected void setUp() throws Exception {
69        super.setUp();
70        commandHandler = new AcctCommandHandler();
71        commandHandler.setReplyTextBundle(replyTextBundle);
72        command1 = new Command(CommandNames.ACCT, array(ACCOUNT1));
73        command2 = new Command(CommandNames.ACCT, array(ACCOUNT2));
74    }
75
76}
77