summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/dcae/controller/EnvPropsTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/org/onap/dcae/controller/EnvPropsTest.java')
-rw-r--r--src/test/java/org/onap/dcae/controller/EnvPropsTest.java34
1 files changed, 32 insertions, 2 deletions
diff --git a/src/test/java/org/onap/dcae/controller/EnvPropsTest.java b/src/test/java/org/onap/dcae/controller/EnvPropsTest.java
index 1276e6b..b6086a2 100644
--- a/src/test/java/org/onap/dcae/controller/EnvPropsTest.java
+++ b/src/test/java/org/onap/dcae/controller/EnvPropsTest.java
@@ -2,7 +2,7 @@
* ============LICENSE_START=======================================================
* org.onap.dcaegen2.restconfcollector
* ================================================================================
- * Copyright (C) 2018-2019 Huawei. All rights reserved.
+ * Copyright (C) 2018-2022 Huawei. 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.
@@ -21,6 +21,7 @@
package org.onap.dcae.controller;
import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig;
+import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertEquals;
import com.github.tomakehurst.wiremock.junit.WireMockRule;
@@ -41,4 +42,33 @@ public class EnvPropsTest {
.equals(new EnvProps("http", "localhost", wireMockRule.port(),
"http", "CBSName", "restconfcollector")), true);
}
-} \ No newline at end of file
+
+ @Test
+ public void fromStringTest() {
+ assertEquals(new EnvProps("http", "localhost", wireMockRule.port(),
+ "http", "CBSName", "restconfcollector")
+ .equals(null), false);
+ }
+
+ @Test
+ public void fromStringSameObjTest() {
+ EnvProps envProps = new EnvProps("http", "localhost", wireMockRule.port(),
+ "http", "CBSName", "restconfcollector");
+ assertEquals(envProps.equals(envProps), true);
+ }
+
+ @Test
+ public void toStringTest() {
+ String envProps = new EnvProps("http", "localhost", wireMockRule.port(),
+ "http", "CBSName", "restconfcollector").toString();
+ String str = "EnvProps{consulProtocol='http', consulHost='localhost', consulPort="+wireMockRule.port()+", cbsProtocol='http', cbsName='CBSName', appName='restconfcollector'}";
+ assertEquals(envProps, str);
+ }
+
+ @Test
+ public void hashCodeTest() {
+ int envHashCode = new EnvProps("http", "localhost", wireMockRule.port(),
+ "http", "CBSName", "restconfcollector").hashCode();
+ assertNotNull(envHashCode);
+ }
+}