blob: 70e6f9a8151a7f56cd2e7c026e508c38ed709fcd [file] [log] [blame]
/*
* Copyright 2007 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.mockftpserver.core.server;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.mockftpserver.core.command.CommandHandler;
import org.mockftpserver.core.command.CommandNames;
import org.mockftpserver.core.session.DefaultSession;
import org.mockftpserver.core.util.AssertFailedException;
import org.mockftpserver.test.AbstractTestCase;
import java.net.Socket;
import java.util.HashMap;
import java.util.Map;
/**
* Abstract superclass for tests of AbstractFtpServer subclasses.
*
* @author Chris Mair
* @version $Revision$ - $Date$
*/
public abstract class AbstractFtpServerTestCase extends AbstractTestCase {
protected Logger LOG = LoggerFactory.getLogger(getClass());
protected AbstractFtpServer ftpServer;
private CommandHandler commandHandler;
private CommandHandler commandHandler2;
/**
* Test the setCommandHandlers() method
*/
public void testSetCommandHandlers() {
Map mapping = new HashMap();
mapping.put("AAA", commandHandler);
mapping.put("BBB", commandHandler2);
ftpServer.setCommandHandlers(mapping);
assertSame("commandHandler1", commandHandler, ftpServer.getCommandHandler("AAA"));
assertSame("commandHandler2", commandHandler2, ftpServer.getCommandHandler("BBB"));
verifyCommandHandlerInitialized(commandHandler);
verifyCommandHandlerInitialized(commandHandler2);
// Make sure default CommandHandlers are still set
assertTrue("ConnectCommandHandler", ftpServer.getCommandHandler(CommandNames.CONNECT) != null);
}
/**
* Test the setCommandHandlers() method, when the Map is null
*/
public void testSetCommandHandlers_Null() {
try {
ftpServer.setCommandHandlers(null);
fail("Expected AssertFailedException");
}
catch (AssertFailedException expected) {
LOG.info("Expected: " + expected);
}
}
/**
* Test the setCommandHandler() method
*/
public void testSetCommandHandler() {
ftpServer.setCommandHandler("ZZZ", commandHandler2);
assertSame("commandHandler", commandHandler2, ftpServer.getCommandHandler("ZZZ"));
verifyCommandHandlerInitialized(commandHandler2);
}
/**
* Test the setCommandHandler() method, when the commandName is null
*/
public void testSetCommandHandler_NullCommandName() {
CommandHandler commandHandler = (CommandHandler) createMock(CommandHandler.class);
try {
ftpServer.setCommandHandler(null, commandHandler);
fail("Expected AssertFailedException");
}
catch (AssertFailedException expected) {
LOG.info("Expected: " + expected);
}
}
/**
* Test the setCommandHandler() method, when the commandHandler is null
*/
public void testSetCommandHandler_NullCommandHandler() {
try {
ftpServer.setCommandHandler("ZZZ", null);
fail("Expected AssertFailedException");
}
catch (AssertFailedException expected) {
LOG.info("Expected: " + expected);
}
}
public void testSetServerControlPort() {
assertEquals("default", 21, ftpServer.getServerControlPort());
ftpServer.setServerControlPort(99);
assertEquals("99", 99, ftpServer.getServerControlPort());
}
/**
* Test the setCommandHandler() and getCommandHandler() methods for commands in lower case or mixed case
*/
public void testLowerCaseOrMixedCaseCommandNames() {
ftpServer.setCommandHandler("XXX", commandHandler);
assertSame("ZZZ", commandHandler, ftpServer.getCommandHandler("XXX"));
assertSame("Zzz", commandHandler, ftpServer.getCommandHandler("Xxx"));
assertSame("zzz", commandHandler, ftpServer.getCommandHandler("xxx"));
ftpServer.setCommandHandler("YyY", commandHandler);
assertSame("ZZZ", commandHandler, ftpServer.getCommandHandler("YYY"));
assertSame("Zzz", commandHandler, ftpServer.getCommandHandler("Yyy"));
assertSame("zzz", commandHandler, ftpServer.getCommandHandler("yyy"));
ftpServer.setCommandHandler("zzz", commandHandler);
assertSame("ZZZ", commandHandler, ftpServer.getCommandHandler("ZZZ"));
assertSame("Zzz", commandHandler, ftpServer.getCommandHandler("zzZ"));
assertSame("zzz", commandHandler, ftpServer.getCommandHandler("zzz"));
}
/**
* Test calling stop() for a server that was never started.
*/
public void testStopWithoutStart() {
ftpServer.stop();
}
public void testCreateSession() {
assertEquals(ftpServer.createSession(new Socket()).getClass(), DefaultSession.class);
}
//-------------------------------------------------------------------------
// Test setup
//-------------------------------------------------------------------------
/**
* @see org.mockftpserver.test.AbstractTestCase#setUp()
*/
protected void setUp() throws Exception {
super.setUp();
ftpServer = createFtpServer();
commandHandler = createCommandHandler();
commandHandler2 = createCommandHandler();
}
//-------------------------------------------------------------------------
// Abstract method declarations
//-------------------------------------------------------------------------
protected abstract AbstractFtpServer createFtpServer();
protected abstract CommandHandler createCommandHandler();
protected abstract void verifyCommandHandlerInitialized(CommandHandler commandHandler);
}