From d73e0d5ba6a2b3968f57cf474832c6e32fa683bf Mon Sep 17 00:00:00 2001 From: Michael Hwang Date: Thu, 5 Apr 2018 14:20:44 -0400 Subject: Update IConfiguration impl v1.3.0 of distribution client changed the IConfiguration interface Change-Id: I29164aea59cdfd1273f1b7652d828d62d804b5f5 Issue-ID: DCAEGEN2-431 Signed-off-by: Michael Hwang --- test/sch/core_test.clj | 3 +++ 1 file changed, 3 insertions(+) (limited to 'test') diff --git a/test/sch/core_test.clj b/test/sch/core_test.clj index c615f5d..4d0ee2b 100644 --- a/test/sch/core_test.clj +++ b/test/sch/core_test.clj @@ -50,6 +50,7 @@ (deftest test-create-distribution-client-config (let [config { :asdcDistributionClient { :environmentName "ONAP-AMDOCS" :asdcAddress "10.0.3.1:8443" + :msgBusAddress "message-router-hostname" :keyStorePassword nil :pollingInterval 20 :consumerGroup "dcae" @@ -66,5 +67,7 @@ dcc (create-distribution-client-config config) ] (is (= (. dcc isUseHttpsWithDmaap) true)) + (is (= (. dcc getMsgBusAddress) ["message-router-hostname"])) + (is (= (. dcc isConsumeProduceStatusTopic) false)) ) ) -- cgit 1.2.3-korg