aboutsummaryrefslogtreecommitdiff
path: root/script/test-smoke.sh
diff options
context:
space:
mode:
Diffstat (limited to 'script/test-smoke.sh')
-rwxr-xr-xscript/test-smoke.sh25
1 files changed, 25 insertions, 0 deletions
diff --git a/script/test-smoke.sh b/script/test-smoke.sh
index 4483f65b..c992803e 100755
--- a/script/test-smoke.sh
+++ b/script/test-smoke.sh
@@ -116,6 +116,31 @@ if [ -z "$SKIP_DUCK" ]; then
done
fi
+if [ -z "$SKIP_WINSCP" ]; then
+ echo "🛠️ Testing with winscp"
+ source ${SCRIPT_FOLDER}/dev-env-winscp.sh
+ winscp <<EOF
+open $WINSCP_URL
+ls
+mkdir eprouvette/winscp
+EOF
+ for idx in {1..3}.{rnd,b64}; do
+ winscp <<EOF
+open $WINSCP_URL
+put Z:\\tmp\\garage.$idx eprouvette/winscp/garage.$idx.winscp
+ls eprouvette/winscp/
+get eprouvette/winscp/garage.$idx.winscp Z:\\tmp\\garage.$idx.dl
+rm eprouvette/winscp/garage.$idx.winscp
+EOF
+ diff /tmp/garage.$idx /tmp/garage.$idx.dl
+ rm /tmp/garage.$idx.dl
+ done
+ winscp <<EOF
+open $WINSCP_URL
+rm eprouvette/winscp
+EOF
+fi
+
# Advanced testing via S3API
if [ -z "$SKIP_AWS" ]; then
echo "🔌 Test S3API"