aboutsummaryrefslogtreecommitdiffstats
path: root/ecomp-sdk-app/src/test/java/org/openecomp/portalapp/service/ProfileServiceTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-sdk-app/src/test/java/org/openecomp/portalapp/service/ProfileServiceTest.java')
-rw-r--r--ecomp-sdk-app/src/test/java/org/openecomp/portalapp/service/ProfileServiceTest.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/ecomp-sdk-app/src/test/java/org/openecomp/portalapp/service/ProfileServiceTest.java b/ecomp-sdk-app/src/test/java/org/openecomp/portalapp/service/ProfileServiceTest.java
new file mode 100644
index 000000000..f7f30fe59
--- /dev/null
+++ b/ecomp-sdk-app/src/test/java/org/openecomp/portalapp/service/ProfileServiceTest.java
@@ -0,0 +1,37 @@
+package org.openecomp.portalapp.service;
+
+import java.util.List;
+
+import org.junit.Assert;
+import org.junit.Test;
+import org.openecomp.portalsdk.core.MockApplicationContextTestSuite;
+import org.openecomp.portalsdk.core.domain.Profile;
+import org.openecomp.portalsdk.core.domain.User;
+import org.openecomp.portalsdk.core.service.ProfileService;
+import org.openecomp.portalsdk.core.service.UserProfileService;
+import org.springframework.beans.factory.annotation.Autowired;
+
+
+public class ProfileServiceTest extends MockApplicationContextTestSuite {
+
+ @Autowired
+ ProfileService service;
+
+ @Autowired
+ UserProfileService userProfileService;
+
+ @Test
+ public void testFindAll() {
+
+ List<Profile> profiles = service.findAll();
+ Assert.assertTrue(profiles.size() > 0);
+ }
+
+ @Test
+ public void testFindAllActive() {
+
+ List<User> users = userProfileService.findAllActive();
+ List<User> activeUsers = userProfileService.findAllActive();
+ Assert.assertTrue(users.size() - activeUsers.size() >= 0);
+ }
+}