mirror of
https://github.com/rclone/rclone.git
synced 2025-12-11 22:14:05 +01:00
build: implement a framework for starting test servers during tests
Test servers are implemented by docker containers and run real servers for rclone to test against.
This commit is contained in:
28
fstest/testserver/init.d/TestFTPPureftpd
Executable file
28
fstest/testserver/init.d/TestFTPPureftpd
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
NAME=pureftpd
|
||||
USER=rclone
|
||||
PASS=AcridSpiesBooks2
|
||||
|
||||
. $(dirname "$0")/docker.bash
|
||||
|
||||
start() {
|
||||
docker run --rm -d --name $NAME \
|
||||
-e "FTP_USER_NAME=rclone" \
|
||||
-e "FTP_USER_PASS=$PASS" \
|
||||
-e "FTP_USER_HOME=/data" \
|
||||
-e "FTP_MAX_CLIENTS=50" \
|
||||
-e "FTP_MAX_CONNECTIONS=50" \
|
||||
-e "FTP_PASSIVE_PORTS=30000:40000" \
|
||||
stilliard/pure-ftpd
|
||||
|
||||
echo type=ftp
|
||||
echo host=$(docker_ip)
|
||||
echo user=$USER
|
||||
echo pass=$(rclone obscure $PASS)
|
||||
echo _connect=$(docker_ip):21
|
||||
}
|
||||
|
||||
. $(dirname "$0")/run.bash
|
||||
Reference in New Issue
Block a user