An error occurred while loading the file. Please try again.
An error occurred while loading the file. Please try again.
An error occurred while loading the file. Please try again.
-
Greg Messner authoredcf5cb33a
package org.gitlab4j.api;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.junit.Assume.assumeNotNull;
import java.util.List;
import java.util.Optional;
import javax.ws.rs.core.Response;
import org.gitlab4j.api.GitLabApi.ApiVersion;
import org.gitlab4j.api.models.AccessLevel;
import org.gitlab4j.api.models.Group;
import org.gitlab4j.api.models.Member;
import org.gitlab4j.api.models.User;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.experimental.categories.Category;
/**
* In order for these tests to run you must set the following properties in test-gitlab4j.properties
*
* TEST_HOST_URL
* TEST_PRIVATE_TOKEN
* TEST_USERNAME
* TEST_GROUP
* TEST_GROUP_MEMBER_USERNAME
*
* If any of the above are NULL, all tests in this class will be skipped.
*
*/
@Category(IntegrationTest.class)
public class TestGroupApi extends AbstractIntegrationTest {
// The following needs to be set to your test repository
private static final String TEST_USERNAME = HelperUtils.getProperty(USERNAME_KEY);
private static final String TEST_GROUP = HelperUtils.getProperty(GROUP_KEY);
private static final String TEST_GROUP_MEMBER_USERNAME = HelperUtils.getProperty(GROUP_MEMBER_USERNAME_KEY);
private static GitLabApi gitLabApi;
private static Group testGroup;
private static User testUser;
public TestGroupApi() {
super();
}
@BeforeClass
public static void setup() {
// Must setup the connection to the GitLab test server
gitLabApi = baseTestSetup();
String problems = "";
if (TEST_USERNAME == null || TEST_USERNAME.trim().isEmpty()) {
problems += "TEST_USER_NAME cannot be empty\n";
}
if (gitLabApi != null && problems.isEmpty()) {
gitLabApi = new GitLabApi(ApiVersion.V4, TEST_HOST_URL, TEST_PRIVATE_TOKEN);
try {
List<Group> groups = gitLabApi.getGroupApi().getGroups(TEST_GROUP);
testGroup = groups.get(0);
} catch (GitLabApiException gle) {
7172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
problems += "Problem fetching test group, error=" + gle.getMessage() + "\n";
}
if (TEST_GROUP_MEMBER_USERNAME != null && TEST_GROUP_MEMBER_USERNAME.length() > 0) {
try {
testUser = gitLabApi.getUserApi().getUser(TEST_GROUP_MEMBER_USERNAME);
} catch (GitLabApiException gle) {
problems += "Problem fetching test user, error=" + gle.getMessage() + "\n";
}
}
}
if (!problems.isEmpty()) {
System.err.print(problems);
}
removeGroupMember();
}
@AfterClass
public static void teardown() {
removeGroupMember();
}
private static void removeGroupMember() {
if (gitLabApi != null && testGroup != null && testUser != null) {
try {
gitLabApi.getGroupApi().removeMember(testGroup.getId(), testUser.getId());
} catch (GitLabApiException ignore) {
}
}
}
@Before
public void beforeMethod() {
assumeNotNull(gitLabApi);
assumeNotNull(testGroup);
assumeNotNull(testUser);
}
@Test
public void testMemberOperations() throws GitLabApiException {
Member member = gitLabApi.getGroupApi().addMember(testGroup.getId(), testUser.getId(), AccessLevel.DEVELOPER);
assertNotNull(member);
assertEquals(testUser.getId(), member.getId());
gitLabApi.getGroupApi().removeMember(testGroup.getId(), testUser.getId());
}
@Test
public void getGroup() throws GitLabApiException {
Group group = gitLabApi.getGroupApi().getGroup(TEST_GROUP);
assertNotNull(group);
}
@Test
public void getOptionalGroup() {
Optional<Group> optional = gitLabApi.getGroupApi().getOptionalGroup(TEST_GROUP);
assertTrue(optional.isPresent());
assertEquals(testGroup.getId(), optional.get().getId());
optional = gitLabApi.getGroupApi().getOptionalGroup(12345);
assertNotNull(optional);
assertFalse(optional.isPresent());
assertEquals(Response.Status.NOT_FOUND.getStatusCode(), GitLabApi.getOptionalException(optional).getHttpStatus());
}
}