RunStubFtpServer.groovy revision dfb59d50631968ab1a13002ea5421ece93169851
1/*
2 * Copyright 2009 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
17
18import org.mockftpserver.stub.StubFtpServer
19import org.mockftpserver.test.PortTestUtil
20import org.mockftpserver.stub.command.PwdCommandHandler
21import org.mockftpserver.core.command.CommandNames
22
23/**
24 * Run the StubFtpServer with a minimal configuration for interactive testing and exploration.
25 *
26 * @version $Revision$ - $Date$
27 *
28 * @author Chris Mair
29 */
30class RunStubFtpServer {
31
32    static main(args) {
33        def stubFtpServer = new StubFtpServer();
34        stubFtpServer.setServerControlPort(PortTestUtil.getFtpServerControlPort());
35
36        stubFtpServer.getCommandHandler(CommandNames.PWD).setDirectory("/MyDir");
37
38        final LISTING = "11-09-01 12:30PM  406348 File2350.log\n" + "11-01-01 1:30PM <DIR> 0 archive"
39        stubFtpServer.getCommandHandler(CommandNames.LIST).setDirectoryListing(LISTING)
40
41        stubFtpServer.start();
42    }
43}