Package org.gitlab.api

Source Code of org.gitlab.api.GitlabAPIT

package org.gitlab.api;

import org.gitlab.api.models.GitlabUser;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

import java.io.FileNotFoundException;
import java.io.IOException;
import java.net.URL;
import java.util.UUID;

import static org.junit.Assert.assertEquals;
import static org.junit.Assume.assumeNoException;

import java.net.ConnectException;

public class GitlabAPIT {

    GitlabAPI _api;
   
    private static final String TEST_URL = System.getProperty("TEST_URL", "http://localhost");
    private static final String TEST_TOKEN = System.getProperty("TEST_TOKEN", "y0E5b9761b7y4qk");
   
  String rand = UUID.randomUUID().toString().replace("-", "").substring(0, 8);
 
 

    @Before
    public void setup() throws IOException {
        _api = GitlabAPI.connect(TEST_URL, TEST_TOKEN);
        try {
            _api.dispatch().with("login", "INVALID").with("password", rand).to("session", GitlabUser.class);
        } catch (ConnectException e) {
            assumeNoException("GITLAB not running on '" + TEST_URL + "', skipping...", e);
        } catch (IOException e) {
            final String message = e.getMessage();
            if (!message.equals("{\"message\":\"401 Unauthorized\"}")) {
                throw new AssertionError("Expected an unauthorized message", e);
            }
        }
    }

    @Test
    public void testConnect() throws IOException {
        assertEquals(GitlabAPI.class, _api.getClass());
    }

    @Test
    public void testGetAPIUrl() throws IOException {
        URL expected = new URL(TEST_URL+"/api/v3/?private_token="+TEST_TOKEN);
        assertEquals(expected, _api.getAPIUrl(""));
    }

    @Test
    public void testGetUrl() throws IOException {
        URL expected = new URL(TEST_URL);
        assertEquals(expected +"/", _api.getUrl("").toString());
    }
   
    @Test
    public void testCreateUpdateDeleteUser() throws IOException {
     
      String password = randVal("$%password");
     

      GitlabUser gitUser = _api.createUser(randVal("testEmail@gitlabapitest.com"),
                        password,
                        randVal("userName"),
                        randVal("fullName"),
                        randVal("skypeId"),
                        randVal("linledin"),
                        randVal("twitter"),
                        "http://"+randVal("url.com"),
                        10,
                        randVal("externuid"),
                        randVal("externprovidername"),
                        randVal("bio"),
                        false,
                        false,
                        false);
      Assert.assertNotNull(gitUser);
     
      GitlabUser refetched = _api.getUserViaSudo(gitUser.getUsername());
     
      Assert.assertNotNull(refetched);
     
      Assert.assertEquals(refetched.getUsername(),gitUser.getUsername());
     
      _api.updateUser(gitUser.getId(), gitUser.getEmail(), password , gitUser.getUsername(),
          gitUser.getName(), "newSkypeId", gitUser.getLinkedin(), gitUser.getTwitter(), gitUser.getWebsiteUrl(),
          10 /* project limit does not come back on GET */, gitUser.getExternUid(), gitUser.getExternProviderName(),
          gitUser.getBio(), gitUser.isAdmin(), gitUser.isCanCreateGroup(), false);
     
     
      GitlabUser postUpdate = _api.getUserViaSudo(gitUser.getUsername());
     
     
      Assert.assertNotNull(postUpdate);
      Assert.assertEquals(postUpdate.getSkype(),"newSkypeId");
     
     
      _api.deleteUser(postUpdate.getId());
     
      // expect a 404, but we have no access to it
      try {
        GitlabUser shouldNotExist = _api.getUser(postUpdate.getId());
        Assert.assertNull(shouldNotExist); // should never even get here
       
      } catch(FileNotFoundException thisIsSoOddForAnRESTApiClient) {
        Assert.assertTrue(true); // expected
      }
     
     
    }
   
    private String randVal(String postfix) {
      return rand + "-" + postfix;
    }
}
TOP

Related Classes of org.gitlab.api.GitlabAPIT

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.