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:
Nick Craig-Wood
2019-10-04 16:51:07 +01:00
parent 00d30ce0d7
commit 24ef00a258
24 changed files with 687 additions and 7 deletions

View File

@@ -0,0 +1,24 @@
#!/bin/bash
set -e
NAME=vsftpd
USER=rclone
PASS=TiffedRestedSian4
. $(dirname "$0")/docker.bash
start() {
docker run --rm -d --name $NAME \
-e "FTP_USER=rclone" \
-e "FTP_PASS=$PASS" \
fauria/vsftpd
echo type=ftp
echo host=$(docker_ip)
echo user=$USER
echo pass=$(rclone obscure $PASS)
echo _connect=$(docker_ip):21
}
. $(dirname "$0")/run.bash