diff options
author | kjaniak <kornel.janiak@nokia.com> | 2019-04-23 16:11:37 +0200 |
---|---|---|
committer | Piotr Jaszczyk <piotr.jaszczyk@nokia.com> | 2019-05-10 07:15:41 +0200 |
commit | ca77ff94532f69a4921e7fde8205711e7e1f4426 (patch) | |
tree | ab491025f5ddc226fdb5f346cc3c8ddcdf46529f /tests | |
parent | 1a278216453d9d542078c212347940a9a88f9fc6 (diff) |
Switch to DMaaP kafka image
Change-Id: Ib3d58aec92d66a291cf97d5a72d42e7579e265db
Issue-ID: DCAEGEN2-1448
Signed-off-by: kjaniak <kornel.janiak@nokia.com>
Signed-off-by: Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
Diffstat (limited to 'tests')
3 files changed, 10 insertions, 1 deletions
diff --git a/tests/dcaegen2-collectors-hv-ves/testcases/libraries/KafkaLibrary.py b/tests/dcaegen2-collectors-hv-ves/testcases/libraries/KafkaLibrary.py index e262ff01..5c9ffb1c 100644 --- a/tests/dcaegen2-collectors-hv-ves/testcases/libraries/KafkaLibrary.py +++ b/tests/dcaegen2-collectors-hv-ves/testcases/libraries/KafkaLibrary.py @@ -17,9 +17,10 @@ # ============LICENSE_END===================================== import docker +import os from robot.api import logger -KAFKA_IMAGE_FULL_NAME = "wurstmeister/kafka" +KAFKA_IMAGE_FULL_NAME = os.getenv("KAFKA_IMAGE_FULL_NAME") KAFKA_ADDRESS = "kafka:9092" ZOOKEEPER_ADDRESS = "zookeeper:2181" diff --git a/tests/dcaegen2-collectors-hv-ves/testcases/resources/hv-ves-configuration-with-different-topic.json b/tests/dcaegen2-collectors-hv-ves/testcases/resources/hv-ves-configuration-with-different-topic.json index d3d1f4c3..7cd830d6 100644 --- a/tests/dcaegen2-collectors-hv-ves/testcases/resources/hv-ves-configuration-with-different-topic.json +++ b/tests/dcaegen2-collectors-hv-ves/testcases/resources/hv-ves-configuration-with-different-topic.json @@ -2,6 +2,10 @@ "streams_publishes": { "perf3gpp": { "type": "kafka", + "aaf_credentials": { + "username": "admin", + "password": "admin_secret" + }, "kafka_info": { "bootstrap_servers": "kafka:9092", "topic_name": "TEST_HV_VES_PERF3GPP_BUT_WITH_EXTRA_WORDS" diff --git a/tests/dcaegen2-collectors-hv-ves/testcases/resources/hv-ves-configuration.json b/tests/dcaegen2-collectors-hv-ves/testcases/resources/hv-ves-configuration.json index 1c4e3439..d932b7d9 100644 --- a/tests/dcaegen2-collectors-hv-ves/testcases/resources/hv-ves-configuration.json +++ b/tests/dcaegen2-collectors-hv-ves/testcases/resources/hv-ves-configuration.json @@ -2,6 +2,10 @@ "streams_publishes": { "perf3gpp": { "type": "kafka", + "aaf_credentials": { + "username": "admin", + "password": "admin_secret" + }, "kafka_info": { "bootstrap_servers": "kafka:9092", "topic_name": "TEST_HV_VES_PERF3GPP" |