summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorm.kowalski3 <m.kowalski3@partner.samsung.com>2020-05-21 08:01:47 +0200
committerm.kowalski3 <m.kowalski3@partner.samsung.com>2020-05-21 08:01:47 +0200
commit745e3fe26aa61ca02ea3a05e26b900671f5e04a6 (patch)
treefc9c734dc4844af2cfad2def346b6f6fc00cc49f
parent0023364bb5bd18eb791d53ef1be6bbe7309dd4ed (diff)
Add unit test for SecurityLogsUtils
Issue-ID: SDC-2327 Signed-off-by: Marcin Kowalski <m.kowalski3@partner.samsung.com> Change-Id: I9e235cb0569c29b4b0f8237fed3538758f4d8bf7
-rw-r--r--security-util-lib/src/test/java/org/onap/sdc/security/util/SecurityLogsUtilsTest.java44
1 files changed, 44 insertions, 0 deletions
diff --git a/security-util-lib/src/test/java/org/onap/sdc/security/util/SecurityLogsUtilsTest.java b/security-util-lib/src/test/java/org/onap/sdc/security/util/SecurityLogsUtilsTest.java
new file mode 100644
index 0000000..b05dc64
--- /dev/null
+++ b/security-util-lib/src/test/java/org/onap/sdc/security/util/SecurityLogsUtilsTest.java
@@ -0,0 +1,44 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * SDC
+ * ================================================================================
+ * Copyright (C) 2020 Samsung. 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.sdc.security.util;
+
+import org.junit.Test;
+import org.onap.sdc.security.logging.elements.ErrorLogOptionalData;
+import org.onap.sdc.security.utils.SecurityLogsUtils;
+
+import static org.junit.Assert.assertNotNull;
+import static org.onap.sdc.security.utils.SecurityLogsUtils.PORTAL_TARGET_ENTITY;
+
+public class SecurityLogsUtilsTest {
+
+ @Test
+ public void testFullOptionalData() {
+
+ ErrorLogOptionalData errorLogOptionalData =
+ SecurityLogsUtils.fullOptionalData(PORTAL_TARGET_ENTITY, "/fetchRolesFromPortal");
+
+ assertNotNull(errorLogOptionalData);
+
+
+ }
+}