BjornMagnussonXA | 42dcb26 | 2019-04-26 19:29:54 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # This env variable is only needed if the auto test scripts tests are executed in a different folder than 'auto-test' in the integration repo |
| 4 | # Change '<local-path>' to your path to the integration repo. In addition to the auto-test, the 'common' dir is needed if not executed in the |
| 5 | # integration repo. |
| 6 | # |
| 7 | #export SIM_GROUP=<local-path>/integration/test/mocks/datafilecollector-testharness/simulator-group/ |
| 8 | |
| 9 | |
| 10 | # Set the images for the DFC app to use for the auto tests. Do not add the image tag. |
| 11 | # |
| 12 | # Remote image shall point to the image in the nexus repository |
| 13 | export DFC_REMOTE_IMAGE=nexus3.onap.org:10001/onap/org.onap.dcaegen2.collectors.datafile.datafile-app-server |
| 14 | # |
| 15 | # Local image and tag, shall point to locally built image (non-nexus path) |
| 16 | export DFC_LOCAL_IMAGE=onap/org.onap.dcaegen2.collectors.datafile.datafile-app-server |
| 17 | |
| 18 | |
BjornMagnussonXA | a79a043 | 2019-07-17 08:26:50 +0000 | [diff] [blame^] | 19 | # Common env var for auto-test. |
| 20 | |
| 21 | DFC_PORT=8100 |
| 22 | DFC_PORT_SECURE=8433 |
| 23 | DFC_LOGPATH="/var/log/ONAP/application.log" |
| 24 | DOCKER_SIM_NWNAME="dfcnet" |
| 25 | CONSUL_HOST="consul-server" |
| 26 | CONSUL_PORT=8500 |
| 27 | CONFIG_BINDING_SERVICE="config-binding-service" |
| 28 | MR_PORT=2222 |
| 29 | DR_PORT=3906 |
| 30 | DR_PORT_SECURE=3907 |
| 31 | DRR_PORT=3908 |
| 32 | DRR_PORT_SECURE=3909 |
| 33 | DFC_APP_BASE="dfc_app" |
| 34 | DFC_MAX_NUM=5 |
| 35 | DFC_MAX_IDX=$(($DFC_MAX_NUM - 1)) |
| 36 | SFTP_BASE="dfc_sftp-server" |
| 37 | FTPS_BASE="dfc_ftpes-server-vsftpd" |
| 38 | FTP_MAX_NUM=5 |
| 39 | FTP_MAX_IDX=$(($FTP_MAX_NUM - 1)) |
| 40 | SFTP_SIMS_CONTAINER="sftp-server0:22,sftp-server1:22,sftp-server2:22,sftp-server3:22,sftp-server4:22" |
| 41 | FTPS_SIMS_CONTAINER="ftpes-server-vsftpd0:21,ftpes-server-vsftpd1:21,ftpes-server-vsftpd2:21,ftpes-server-vsftpd3:21,ftpes-server-vsftpd4:21" |
| 42 | SFTP_SIMS_LOCALHOST="localhost:1022,localhost:1023,localhost:1024,localhost:1025,localhost:1026" |
| 43 | FTPS_SIMS_LOCALHOST="localhost:1032,localhost:1033,localhost:1034,localhost:1035,localhost:1036" |
| 44 | |
| 45 | export SFTP_SIMS=$SFTP_SIMS_CONTAINER #This env will be set to SFTP_SIMS_LOCALHOST if auto test is executed with 'manual-app' |
| 46 | export FTPS_SIMS=$FTPS_SIMS_CONTAINER #This env will be set to FTPS_SIMS_LOCALHOST if auto test is executed with 'manual-app' |
| 47 | |
| 48 | export DR_REDIR_SIM="drsim_redir" #This env will be set to 'localhost' if auto test is executed with 'manual-app' |
| 49 | |