Files
SearchServices/e2e-test/java/org/alfresco/rest/SamplePeopleTest.java
2016-09-02 16:57:19 +03:00

49 lines
1.4 KiB
Java

package org.alfresco.rest;
import org.alfresco.utility.data.DataUser;
import org.alfresco.utility.exception.DataPreparationException;
import org.alfresco.utility.model.UserModel;
import org.apache.commons.lang3.RandomStringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class SamplePeopleTest extends RestTest
{
@Autowired
RestPeopleApi peopleAPI;
@Autowired
DataUser dataUser;
private UserModel userModel;
private UserModel adminUser;
@BeforeClass
public void setUp() throws DataPreparationException
{
userModel = dataUser.createUser(RandomStringUtils.randomAlphanumeric(20));
adminUser = dataUser.getAdminUser();
restClient.authenticateUser(adminUser);
peopleAPI.useRestClient(restClient);
}
@Test
public void adminIsAbleToRetrievePerson() throws Exception
{
peopleAPI.getPerson(userModel.getUsername())
.assertResponseIsNotEmpty();
peopleAPI.usingRestWrapper()
.assertStatusCodeIs(HttpStatus.OK.toString());
}
@Test
public void adminIsAbleToRetrieveItself() throws Exception
{
peopleAPI.getPerson(adminUser.getUsername())
.assertPersonHasName(adminUser.getUsername());
}
}