1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hmz007 6d24f2138b
Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56)
3 years ago
..
.settings Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
src Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
.project Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
CHANGELOG.txt Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
LICENSE.txt Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
MockFtpServer.eml Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
MockFtpServer.iml Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
MockFtpServer.ipr Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
README.txt Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago
pom.xml Rockchip Anroid12_SDK 20220721-rkr10 (e1522e56) 3 years ago

README.txt

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

MockFtpServer version ${project.version}
-------------------------------------------------------------------------------
${project.url}

The MockFtpServer project provides mock/dummy FTP server implementations for testing FTP client
code. Two FTP Server implementations are provided, each at a different level of abstraction.

FakeFtpServer provides a higher-level abstraction. You define a virtual file system, including
directories and files, as well as a set of valid user accounts and credentials. The FakeFtpServer
then responds with appropriate replies and reply codes based on that configuration.

StubFtpServer, on the other hand, is a lower-level "stub" implementation. You configure the
individual FTP server commands to return custom data or reply codes, allowing simulation of
either success or failure scenarios. You can also verify expected command invocations.

MockFtpServer is written in Java, and is ideally suited to testing Java code. But because
communication with the FTP server is across sockets and TCP/IP, it can be used to test FTP client 
code written in any language.

See the online documentation for more information.

See the FTP Protocol Spec (http://www.ietf.org/rfc/rfc0959.txt) for information about 
FTP, commands, reply codes, etc..

DEPENDENCIES

MockFtpServer requires 
 - Java (JDK) version 1.4 or later