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:
24
fstest/testserver/init.d/TestFTPVsftpd
Executable file
24
fstest/testserver/init.d/TestFTPVsftpd
Executable 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
|
||||
Reference in New Issue
Block a user