mirror of
https://github.com/rclone/rclone.git
synced 2025-12-16 00:04:40 +00: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/TestFTPProftpd
Executable file
24
fstest/testserver/init.d/TestFTPProftpd
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
NAME=proftpd
|
||||
USER=rclone
|
||||
PASS=RaidedBannedPokes5
|
||||
|
||||
. $(dirname "$0")/docker.bash
|
||||
|
||||
start() {
|
||||
docker run --rm -d --name $NAME \
|
||||
-e "FTP_USERNAME=rclone" \
|
||||
-e "FTP_PASSWORD=$PASS" \
|
||||
hauptmedia/proftpd
|
||||
|
||||
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