summaryrefslogtreecommitdiffstats
path: root/components/bbs-event-processor/src/test/java/org/onap/bbs/event/processor/config/DmaapCpeAuthenticationConsumerPropertiesTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'components/bbs-event-processor/src/test/java/org/onap/bbs/event/processor/config/DmaapCpeAuthenticationConsumerPropertiesTest.java')
-rw-r--r--components/bbs-event-processor/src/test/java/org/onap/bbs/event/processor/config/DmaapCpeAuthenticationConsumerPropertiesTest.java68
1 files changed, 68 insertions, 0 deletions
diff --git a/components/bbs-event-processor/src/test/java/org/onap/bbs/event/processor/config/DmaapCpeAuthenticationConsumerPropertiesTest.java b/components/bbs-event-processor/src/test/java/org/onap/bbs/event/processor/config/DmaapCpeAuthenticationConsumerPropertiesTest.java
new file mode 100644
index 00000000..103335ce
--- /dev/null
+++ b/components/bbs-event-processor/src/test/java/org/onap/bbs/event/processor/config/DmaapCpeAuthenticationConsumerPropertiesTest.java
@@ -0,0 +1,68 @@
+/*
+ * ============LICENSE_START=======================================================
+ * BBS-RELOCATION-CPE-AUTHENTICATION-HANDLER
+ * ================================================================================
+ * Copyright (C) 2019 NOKIA Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.bbs.event.processor.config;
+
+import static org.junit.jupiter.api.Assertions.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertNull;
+
+import org.junit.jupiter.api.Test;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.context.properties.EnableConfigurationProperties;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.TestPropertySource;
+
+@SpringBootTest(classes = DmaapCpeAuthenticationConsumerProperties.class)
+@EnableConfigurationProperties
+@TestPropertySource(properties = {
+ "configs.dmaap.consumer.cpe-authentication.dmaapHostName=test localhost",
+ "configs.dmaap.consumer.cpe-authentication.dmaapPortNumber=1234",
+ "configs.dmaap.consumer.cpe-authentication.dmaapTopicName=/events/unauthenticated.PNF_CPE_AUTHENTICATION",
+ "configs.dmaap.consumer.cpe-authentication.dmaapProtocol=http",
+ "configs.dmaap.consumer.cpe-authentication.dmaapContentType=application/json",
+ "configs.dmaap.consumer.cpe-authentication.consumerId=c12",
+ "configs.dmaap.consumer.cpe-authentication.consumerGroup=OpenDcae-c12",
+ "configs.dmaap.consumer.cpe-authentication.timeoutMs=-1",
+ "configs.dmaap.consumer.cpe-authentication.messageLimit=1"})
+class DmaapCpeAuthenticationConsumerPropertiesTest {
+
+ private DmaapCpeAuthenticationConsumerProperties properties;
+
+ @Autowired
+ public DmaapCpeAuthenticationConsumerPropertiesTest(
+ DmaapCpeAuthenticationConsumerProperties properties) {
+ this.properties = properties;
+ }
+
+ @Test
+ void dmaapCpeAuthenticationProperties_SuccessFullyLoaded() {
+ assertEquals("test localhost", properties.getDmaapHostName());
+ assertEquals(1234, properties.getDmaapPortNumber());
+ assertEquals("/events/unauthenticated.PNF_CPE_AUTHENTICATION", properties.getDmaapTopicName());
+ assertEquals("http", properties.getDmaapProtocol());
+ assertNull(properties.getDmaapUserName());
+ assertNull(properties.getDmaapUserPassword());
+ assertEquals("application/json", properties.getDmaapContentType());
+ assertEquals("c12", properties.getConsumerId());
+ assertEquals("OpenDcae-c12", properties.getConsumerGroup());
+ assertEquals(-1, properties.getTimeoutMs());
+ assertEquals(1, properties.getMessageLimit());
+ }
+} \ No newline at end of file