org.syncany.tests.plugins.ftp.EmbeddedTestFtpServer.java Source code

Java tutorial

Introduction

Here is the source code for org.syncany.tests.plugins.ftp.EmbeddedTestFtpServer.java

Source

/*
 * Syncany, www.syncany.org
 * Copyright (C) 2011-2014 Philipp C. Heckel <philipp.heckel@gmail.com> 
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package org.syncany.tests.plugins.ftp;

import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.IOException;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.logging.Level;
import java.util.logging.Logger;

import org.apache.commons.net.ftp.FTPClient;
import org.apache.ftpserver.FtpServer;
import org.apache.ftpserver.FtpServerFactory;
import org.apache.ftpserver.filesystem.nativefs.NativeFileSystemFactory;
import org.apache.ftpserver.ftplet.Authority;
import org.apache.ftpserver.ftplet.UserManager;
import org.apache.ftpserver.listener.ListenerFactory;
import org.apache.ftpserver.usermanager.PropertiesUserManagerFactory;
import org.apache.ftpserver.usermanager.SaltedPasswordEncryptor;
import org.apache.ftpserver.usermanager.impl.BaseUser;
import org.apache.ftpserver.usermanager.impl.WritePermission;
import org.syncany.tests.util.TestFileUtil;

/**
 * @author vincent
 *
 */
public class EmbeddedTestFtpServer {
    private static final Logger logger = Logger.getLogger(EmbeddedTestFtpServer.class.getSimpleName());

    public static String HOST = "127.0.0.1";
    public static String HOST_WRONG = "noHost";

    public static int PORT = 2221;

    public static String USER1 = "user";
    public static String USER2 = "otherUser";
    public static String PASSWORD1 = "password";

    private static AtomicInteger serverStartCount = new AtomicInteger(0);
    private static FtpServer server;
    private static File rootDir;
    private static File userFile;

    public static void stopServer() {
        if (serverStartCount.addAndGet(-1) > 0) {
            logger.log(Level.INFO, "Not stopping FTP Server (not necessary; " + serverStartCount.get()
                    + " clients still running) ...");
            return;
        }

        logger.log(Level.INFO, "Stopping FTP Server ...");

        server.stop();
        rootDir.delete();
        userFile.delete();
    }

    public static void startServer() throws Exception {
        if (serverStartCount.addAndGet(1) > 1) {
            logger.log(Level.INFO, "Not starting FTP Server (already running) ...");
            return; // already started!
        }

        logger.log(Level.INFO, "Starting FTP Server ...");

        userFile = File.createTempFile("testftpuserfile", "tmp");
        userFile.deleteOnExit();

        rootDir = TestFileUtil.createTempDirectoryInSystemTemp();
        rootDir.deleteOnExit();

        // Add FTP users
        PropertiesUserManagerFactory userManagerFactory = new PropertiesUserManagerFactory();
        userManagerFactory.setFile(userFile);
        userManagerFactory.setPasswordEncryptor(new SaltedPasswordEncryptor());
        UserManager um = userManagerFactory.createUserManager();

        BaseUser user1 = new BaseUser();
        user1.setName(USER1);
        user1.setPassword(PASSWORD1);
        user1.setHomeDirectory(rootDir.getAbsolutePath());
        List<Authority> authorities = new ArrayList<Authority>();
        authorities.add(new WritePermission());
        user1.setAuthorities(authorities);

        um.save(user1);

        // Create server
        FtpServerFactory serverFactory = new FtpServerFactory();
        serverFactory.setUserManager(um);

        // Fix port issue (parallel tests are run in multiple JVMs in Travis)
        PORT = PORT + new Random().nextInt(10000);
        ListenerFactory factory = new ListenerFactory();
        factory.setPort(PORT);

        // File system 
        NativeFileSystemFactory nfs = new NativeFileSystemFactory();
        nfs.setCaseInsensitive(false);
        nfs.setCreateHome(true);

        serverFactory.addListener("default", factory.createListener());
        serverFactory.setFileSystem(nfs);

        server = serverFactory.createServer();
        server.start();
    }

    // FTP Client
    public static void mkdir(String path, String user) throws SocketException, IOException {
        FTPClient ftp = new FTPClient();
        ftp.setConnectTimeout(3000);
        ftp.setDataTimeout(3000);
        ftp.setDefaultTimeout(3000);

        ftp.connect(HOST, PORT);
        ftp.login(user, PASSWORD1);
        ftp.enterLocalPassiveMode();
        ftp.setFileType(FTPClient.BINARY_FILE_TYPE); // Important !!!
        ftp.makeDirectory(path);

        ftp.disconnect();
        ftp = null;
    }

    public static void createTestFile(String path, String user) throws SocketException, IOException {
        FTPClient ftp = new FTPClient();
        ftp.setConnectTimeout(3000);
        ftp.setDataTimeout(3000);
        ftp.setDefaultTimeout(3000);

        ftp.connect(HOST, PORT);
        ftp.login(user, PASSWORD1);
        ftp.enterLocalPassiveMode();
        ftp.setFileType(FTPClient.BINARY_FILE_TYPE); // Important !!!
        ftp.storeFile(path, new ByteArrayInputStream(new byte[] { 0x01, 0x02 }));

        ftp.disconnect();
        ftp = null;
    }
}