diff options
author | Peyton Puckett <peyton.puckett@att.com> | 2020-01-13 10:51:34 -0600 |
---|---|---|
committer | Peyton Puckett <peyton.puckett@att.com> | 2020-01-14 07:35:08 -0600 |
commit | 676c3bb86a2424f70543e7fbaae388e7f9f370dd (patch) | |
tree | 40553ad460202c6d0ccc29e9043e5a67af75f963 /controlloop/m2/util | |
parent | 57fa6609eaac31098f468fde24a9300a38fca7ef (diff) |
Add jUnit Test Coverage M2 Util
Issue-ID: POLICY-2293
Change-Id: Ia189239911053bd8937c0791aafcc55207c11dcf
Signed-off-by: Peyton Puckett <peyton.puckett@att.com>
Diffstat (limited to 'controlloop/m2/util')
-rw-r--r-- | controlloop/m2/util/pom.xml | 12 | ||||
-rw-r--r-- | controlloop/m2/util/src/test/java/org/onap/policy/util/DroolsSessionCommonSerializableTest.java | 60 |
2 files changed, 70 insertions, 2 deletions
diff --git a/controlloop/m2/util/pom.xml b/controlloop/m2/util/pom.xml index b453cc59f..0a45408bd 100644 --- a/controlloop/m2/util/pom.xml +++ b/controlloop/m2/util/pom.xml @@ -43,5 +43,17 @@ <artifactId>junit</artifactId> <scope>test</scope> </dependency> + + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-api-mockito</artifactId> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>org.powermock</groupId> + <artifactId>powermock-module-junit4</artifactId> + <scope>test</scope> + </dependency> </dependencies> </project> diff --git a/controlloop/m2/util/src/test/java/org/onap/policy/util/DroolsSessionCommonSerializableTest.java b/controlloop/m2/util/src/test/java/org/onap/policy/util/DroolsSessionCommonSerializableTest.java index 520158b8c..808be342c 100644 --- a/controlloop/m2/util/src/test/java/org/onap/policy/util/DroolsSessionCommonSerializableTest.java +++ b/controlloop/m2/util/src/test/java/org/onap/policy/util/DroolsSessionCommonSerializableTest.java @@ -21,16 +21,72 @@ package org.onap.policy.util; import static org.junit.Assert.assertNotNull; +import static org.mockito.Matchers.any; +import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.when; import org.junit.Test; +import org.junit.runner.RunWith; +import org.mockito.Mockito; + +import org.onap.policy.drools.core.PolicySession; + +import org.powermock.api.mockito.PowerMockito; +import org.powermock.core.classloader.annotations.PrepareForTest; +import org.powermock.modules.junit4.PowerMockRunner; +import org.powermock.reflect.Whitebox; + +@RunWith(PowerMockRunner.class) public class DroolsSessionCommonSerializableTest { + private DroolsSessionCommonSerializable droolsSessionCommonSerializable; + @Test public void test() { Object object = new Object(); - DroolsSessionCommonSerializable droolsSessionCommonSerializable = - new DroolsSessionCommonSerializable("drools", object); + droolsSessionCommonSerializable = new DroolsSessionCommonSerializable("drools", object); + assertNotNull(droolsSessionCommonSerializable.toString()); + } + + @PrepareForTest(PolicySession.class) + @Test + public void testConstructorGetNullAdjunct() { + PowerMockito.mockStatic(PolicySession.class); + PolicySession mockPolicySession = Mockito.mock(PolicySession.class); + Object mockObject = Mockito.mock(Object.class); + + when(PolicySession.getCurrentSession()).thenReturn(mockPolicySession); + when(mockPolicySession.getAdjunct(any(Class.class))).thenReturn(null); + + droolsSessionCommonSerializable = new DroolsSessionCommonSerializable("testName", mockObject); + + verify(mockPolicySession).getAdjunct(any(Class.class)); + assertNotNull(droolsSessionCommonSerializable.toString()); + } + + @PrepareForTest(PolicySession.class) + @Test + public void testConstructorGetAdjunct() { + PowerMockito.mockStatic(PolicySession.class); + PolicySession mockPolicySession = Mockito.mock(PolicySession.class); + Object mockObject = Mockito.mock(Object.class); + + when(PolicySession.getCurrentSession()).thenReturn(mockPolicySession); + when(mockPolicySession.getAdjunct(any(Class.class))).thenReturn(mockObject); + + droolsSessionCommonSerializable = new DroolsSessionCommonSerializable("testName", mockObject); + + verify(mockPolicySession).getAdjunct(any(Class.class)); + assertNotNull(droolsSessionCommonSerializable.toString()); + } + + @Test + public void testReadResolve() throws Exception { + Object mockObject = Mockito.mock(Object.class); + droolsSessionCommonSerializable = new DroolsSessionCommonSerializable("testName", mockObject); + + assertNotNull(Whitebox.invokeMethod(droolsSessionCommonSerializable, "readResolve")); assertNotNull(droolsSessionCommonSerializable.toString()); } } |