aboutsummaryrefslogtreecommitdiffstats
path: root/ecomp-sdk-app/src/test/java/org/openecomp/portalapp/service/ProfileServiceTest.java
blob: f7f30fe59b16864e1c05ae0bcbe925cde379c922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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);
	}
}