diff options
author | Gary Wu <gary.i.wu@huawei.com> | 2019-04-26 17:13:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-04-26 17:13:56 +0000 |
commit | e107be4f3d6df8d6c5576219815983681769737b (patch) | |
tree | f65a96666059db11ee1ece4a5726e73da92be184 /tests | |
parent | 627ad48542ef82c2f04ca48474e0e1184d928810 (diff) | |
parent | 605be8e5119b5aaf7ec52dbc05a504ec2a3a6173 (diff) |
Merge "Switch to DMaaP kafka image"
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" |