diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2019-03-26 21:59:33 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-26 21:59:33 +0000 |
commit | 77775225a166ea66912ec38b5b9b16993dd49ff5 (patch) | |
tree | 78fe8c4a5666749d612f62cec454253973ecc9d0 /test/mocks/datafilecollector-testharness/simulator-group/setup-ftp-files-for-image.sh | |
parent | bab325bf8248fd9033c828981b22942c2098b48a (diff) | |
parent | 08294064157fc8a13692c5caa132d9cc68b27aba (diff) |
Merge "Adapted the simulators for running in CSIT"
Diffstat (limited to 'test/mocks/datafilecollector-testharness/simulator-group/setup-ftp-files-for-image.sh')
-rwxr-xr-x | test/mocks/datafilecollector-testharness/simulator-group/setup-ftp-files-for-image.sh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/mocks/datafilecollector-testharness/simulator-group/setup-ftp-files-for-image.sh b/test/mocks/datafilecollector-testharness/simulator-group/setup-ftp-files-for-image.sh new file mode 100755 index 000000000..d8e57a3d8 --- /dev/null +++ b/test/mocks/datafilecollector-testharness/simulator-group/setup-ftp-files-for-image.sh @@ -0,0 +1,28 @@ +#!/bin/bash + +# Script to create files for the FTP server to return upon request. +# The file names matches the files names in the events polled from the MR simulator. +# Intended for execution in the running ftp containers in the ftp-root dir. + +echo "Running ftp file creations" + +NUM=200 #Default number of files + +if [ $# -eq 1 ]; then + NUM=$1 +fi + +truncate -s 1MB 1MB.tar.gz +truncate -s 5MB 5MB.tar.gz +truncate -s 50MB 50MB.tar.gz + + +i=0 +while [ $i -lt $NUM ]; do #Problem with for loop and var substituion in curly bracket....so used good old style loop + ln -s 1MB.tar.gz 1MB_$i.tar.gz + ln -s 5MB.tar.gz 5MB_$i.tar.gz + let i=i+1 +done + + +ln -s 50MB.tar.gz 50MB_0.tar.gz #Large file, only for single file test |