diff options
Diffstat (limited to 'test/mocks/datafilecollector-testharness/common/test_env.sh')
-rw-r--r-- | test/mocks/datafilecollector-testharness/common/test_env.sh | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/test/mocks/datafilecollector-testharness/common/test_env.sh b/test/mocks/datafilecollector-testharness/common/test_env.sh index 794b354b3..f4d443bff 100644 --- a/test/mocks/datafilecollector-testharness/common/test_env.sh +++ b/test/mocks/datafilecollector-testharness/common/test_env.sh @@ -16,3 +16,34 @@ export DFC_REMOTE_IMAGE=nexus3.onap.org:10001/onap/org.onap.dcaegen2.collectors. export DFC_LOCAL_IMAGE=onap/org.onap.dcaegen2.collectors.datafile.datafile-app-server +# Common env var for auto-test. + +DFC_PORT=8100 +DFC_PORT_SECURE=8433 +DFC_LOGPATH="/var/log/ONAP/application.log" +DOCKER_SIM_NWNAME="dfcnet" +CONSUL_HOST="consul-server" +CONSUL_PORT=8500 +CONFIG_BINDING_SERVICE="config-binding-service" +MR_PORT=2222 +DR_PORT=3906 +DR_PORT_SECURE=3907 +DRR_PORT=3908 +DRR_PORT_SECURE=3909 +DFC_APP_BASE="dfc_app" +DFC_MAX_NUM=5 +DFC_MAX_IDX=$(($DFC_MAX_NUM - 1)) +SFTP_BASE="dfc_sftp-server" +FTPS_BASE="dfc_ftpes-server-vsftpd" +FTP_MAX_NUM=5 +FTP_MAX_IDX=$(($FTP_MAX_NUM - 1)) +SFTP_SIMS_CONTAINER="sftp-server0:22,sftp-server1:22,sftp-server2:22,sftp-server3:22,sftp-server4:22" +FTPS_SIMS_CONTAINER="ftpes-server-vsftpd0:21,ftpes-server-vsftpd1:21,ftpes-server-vsftpd2:21,ftpes-server-vsftpd3:21,ftpes-server-vsftpd4:21" +SFTP_SIMS_LOCALHOST="localhost:1022,localhost:1023,localhost:1024,localhost:1025,localhost:1026" +FTPS_SIMS_LOCALHOST="localhost:1032,localhost:1033,localhost:1034,localhost:1035,localhost:1036" + +export SFTP_SIMS=$SFTP_SIMS_CONTAINER #This env will be set to SFTP_SIMS_LOCALHOST if auto test is executed with 'manual-app' +export FTPS_SIMS=$FTPS_SIMS_CONTAINER #This env will be set to FTPS_SIMS_LOCALHOST if auto test is executed with 'manual-app' + +export DR_REDIR_SIM="drsim_redir" #This env will be set to 'localhost' if auto test is executed with 'manual-app' + |