Search in sources :

Example 1 with User

use of io.pivotal.cla.data.User in project pivotal-cla by pivotalsoftware.

the class AccessDeniedTests method adminForbiddenForUserRequestedAdmin.

@Test
@WithSigningUser(requestedAdmin = true)
public void adminForbiddenForUserRequestedAdmin() throws Exception {
    User user = WithSigningUserFactory.create();
    when(mockClaRepository.findByNameAndPrimaryTrue(cla.getName())).thenReturn(cla);
    when(mockGitHub.getCurrentUser(any(CurrentUserRequest.class))).thenReturn(user);
    String url = AdminLinkClaPage.url();
    mockMvc.perform(get(url)).andExpect(status().isForbidden());
}
Also used : WithSigningUser(io.pivotal.cla.security.WithSigningUser) User(io.pivotal.cla.data.User) CurrentUserRequest(io.pivotal.cla.service.github.CurrentUserRequest) WithSigningUser(io.pivotal.cla.security.WithSigningUser) Test(org.junit.Test)

Example 2 with User

use of io.pivotal.cla.data.User in project pivotal-cla by pivotalsoftware.

the class AuthenticationTests method savedRequestUsed.

@Test
public void savedRequestUsed() throws Exception {
    User user = WithAdminUserFactory.create();
    when(mockGitHub.getCurrentUser(any(CurrentUserRequest.class))).thenReturn(user);
    when(mockClaRepository.findAll()).thenReturn(Arrays.asList(cla));
    AdminLinkClaPage page = AdminLinkClaPage.to(getDriver());
    page.assertAt();
}
Also used : WithSigningUser(io.pivotal.cla.security.WithSigningUser) User(io.pivotal.cla.data.User) CurrentUserRequest(io.pivotal.cla.service.github.CurrentUserRequest) AdminLinkClaPage(io.pivotal.cla.webdriver.pages.admin.AdminLinkClaPage) Test(org.junit.Test)

Example 3 with User

use of io.pivotal.cla.data.User in project pivotal-cla by pivotalsoftware.

the class AuthenticationTests method authenticateAdmin.

@Test
public void authenticateAdmin() throws Exception {
    User user = WithAdminUserFactory.create();
    when(mockGitHub.getCurrentUser(any(CurrentUserRequest.class))).thenReturn(user);
    AdminLinkClaPage admin = AdminLinkClaPage.to(driver);
    admin.assertAt();
    ArgumentCaptor<CurrentUserRequest> userCaptor = ArgumentCaptor.forClass(CurrentUserRequest.class);
    verify(mockGitHub).getCurrentUser(userCaptor.capture());
    CurrentUserRequest userRequest = userCaptor.getValue();
    OAuthAccessTokenParams oauthParams = userRequest.getOauthParams();
    assertThat(userRequest.isRequestAdminAccess()).isTrue();
    assertThat(oauthParams.getCallbackUrl()).isEqualTo("https://localhost/login/oauth2/github");
    assertThat(oauthParams.getCode()).isEqualTo("abc");
}
Also used : WithSigningUser(io.pivotal.cla.security.WithSigningUser) User(io.pivotal.cla.data.User) CurrentUserRequest(io.pivotal.cla.service.github.CurrentUserRequest) AdminLinkClaPage(io.pivotal.cla.webdriver.pages.admin.AdminLinkClaPage) OAuthAccessTokenParams(io.pivotal.cla.service.github.OAuthAccessTokenParams) Test(org.junit.Test)

Example 4 with User

use of io.pivotal.cla.data.User in project pivotal-cla by pivotalsoftware.

the class ClaControllerTests method viewSignedWithRepositoryIdAndPullRequestIdNewUser.

@Test
@WithAnonymousUser
public void viewSignedWithRepositoryIdAndPullRequestIdNewUser() throws Exception {
    String repositoryId = "spring-projects/spring-security";
    User signingUser = WithSigningUserFactory.create();
    when(mockGitHub.getCurrentUser(any())).thenReturn(signingUser);
    when(mockGitHub.getShaForPullRequest(any(PullRequestStatus.class))).thenReturn("abc123");
    when(mockIndividualSignatureRepository.findSignaturesFor(any(), eq(signingUser), eq(cla.getName()))).thenReturn(Arrays.asList(individualSignature));
    when(mockIndividualSignatureRepository.findSignaturesFor(any(), eq(signingUser))).thenReturn(Arrays.asList(individualSignature));
    when(mockTokenRepo.findOne(repositoryId)).thenReturn(new AccessToken(repositoryId, "access-token-123"));
    int pullRequestId = 123;
    SignClaPage home = SignClaPage.go(driver, cla.getName(), repositoryId, pullRequestId);
    home.assertAt();
    home.assertClaLinksWithPullRequest(cla.getName(), repositoryId, pullRequestId);
    home.assertPullRequestLink(repositoryId, pullRequestId);
    home.assertImported();
    ArgumentCaptor<PullRequestStatus> updatePullRequestCaptor = ArgumentCaptor.forClass(PullRequestStatus.class);
    verify(mockGitHub).save(updatePullRequestCaptor.capture());
    PullRequestStatus updatePr = updatePullRequestCaptor.getValue();
    String commitStatusUrl = "http://localhost/sign/" + cla.getName() + "?repositoryId=" + repositoryId + "&pullRequestId=" + pullRequestId;
    assertThat(updatePr.getUrl()).isEqualTo(commitStatusUrl);
    assertThat(updatePr.getGitHubUsername()).isEqualTo(signingUser.getGitHubLogin());
    assertThat(updatePr.getPullRequestId()).isEqualTo(pullRequestId);
    assertThat(updatePr.getRepoId()).isEqualTo(repositoryId);
}
Also used : SignClaPage(io.pivotal.cla.webdriver.pages.SignClaPage) WithSigningUser(io.pivotal.cla.security.WithSigningUser) User(io.pivotal.cla.data.User) WithAnonymousUser(org.springframework.security.test.context.support.WithAnonymousUser) AccessToken(io.pivotal.cla.data.AccessToken) PullRequestStatus(io.pivotal.cla.service.github.PullRequestStatus) WithAnonymousUser(org.springframework.security.test.context.support.WithAnonymousUser) Test(org.junit.Test)

Example 5 with User

use of io.pivotal.cla.data.User in project pivotal-cla by pivotalsoftware.

the class AdminLinkClaTests method linkClaRepositories.

@Test
@SuppressWarnings("unchecked")
public void linkClaRepositories() throws Exception {
    AccessToken token = new AccessToken(AccessToken.CLA_ACCESS_TOKEN_ID, "linkClaValidationRepositories_access_token_abc123");
    when(mockTokenRepo.findOne(AccessToken.CLA_ACCESS_TOKEN_ID)).thenReturn(token);
    when(mockGitHub.getContributingUrls(anyList())).thenReturn(new ContributingUrlsResponse());
    User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
    AdminLinkClaPage link = AdminLinkClaPage.to(getDriver());
    link = link.link("test/this", cla.getName(), AdminLinkClaPage.class);
    link.assertRepositories().hasNoErrors();
    link.assertClaName().hasNoErrors();
    ArgumentCaptor<CreatePullRequestHookRequest> requestCaptor = ArgumentCaptor.forClass(CreatePullRequestHookRequest.class);
    verify(mockGitHub).createPullRequestHooks(requestCaptor.capture());
    CreatePullRequestHookRequest request = requestCaptor.getValue();
    assertThat(request.getAccessToken()).isEqualTo(user.getAccessToken());
    assertThat(request.getRepositoryIds()).containsOnly("test/this");
    assertThat(request.getGitHubEventUrl()).isEqualTo("http://localhost/github/hooks/pull_request/" + cla.getName());
    assertThat(request.getSecret()).isEqualTo(token.getToken());
    assertThat(driver.getPageSource()).doesNotContain(token.getToken());
    ArgumentCaptor<AccessToken> tokenCaptor = ArgumentCaptor.forClass(AccessToken.class);
    verify(mockTokenRepo).save(tokenCaptor.capture());
    AccessToken savedToken = tokenCaptor.getValue();
    assertThat(savedToken.getId()).isEqualTo("test/this");
    assertThat(savedToken.getToken()).isEqualTo(user.getAccessToken());
    PullRequestStatus expectedStatus = new PullRequestStatus();
    expectedStatus.setAccessToken("access-token-123");
    expectedStatus.setGitHubUsername("username");
    expectedStatus.setPullRequestId(1);
    expectedStatus.setRepoId("repo");
    expectedStatus.setSha("12345678");
    expectedStatus.setUrl("https://cla.pivotal.io/sign/pivotal");
    when(mockGitHub.createUpdatePullRequestStatuses(any())).thenReturn(Arrays.asList(expectedStatus));
    link = link.migrate();
    ArgumentCaptor<PullRequestStatus> statusCaptor = ArgumentCaptor.forClass(PullRequestStatus.class);
    verify(mockGitHub).save(statusCaptor.capture());
    PullRequestStatus status = statusCaptor.getValue();
    assertThat(status.getAccessToken()).isEqualTo(expectedStatus.getAccessToken());
    assertThat(status.getGitHubUsername()).isEqualTo(expectedStatus.getGitHubUsername());
    assertThat(status.getPullRequestId()).isEqualTo(expectedStatus.getPullRequestId());
    assertThat(status.getRepoId()).isEqualTo(expectedStatus.getRepoId());
    assertThat(status.getSha()).isEqualTo(expectedStatus.getSha());
    assertThat(status.getSuccess()).isFalse();
    assertThat(status.getUrl()).isEqualTo(expectedStatus.getUrl());
}
Also used : WithSigningUser(io.pivotal.cla.security.WithSigningUser) User(io.pivotal.cla.data.User) WithAdminUser(io.pivotal.cla.security.WithAdminUser) CreatePullRequestHookRequest(io.pivotal.cla.service.github.CreatePullRequestHookRequest) AccessToken(io.pivotal.cla.data.AccessToken) ContributingUrlsResponse(io.pivotal.cla.service.github.ContributingUrlsResponse) PullRequestStatus(io.pivotal.cla.service.github.PullRequestStatus) AdminLinkClaPage(io.pivotal.cla.webdriver.pages.admin.AdminLinkClaPage) Test(org.junit.Test)

Aggregations

User (io.pivotal.cla.data.User)31 Test (org.junit.Test)22 WithSigningUser (io.pivotal.cla.security.WithSigningUser)11 AccessToken (io.pivotal.cla.data.AccessToken)9 CurrentUserRequest (io.pivotal.cla.service.github.CurrentUserRequest)8 PullRequestStatus (io.pivotal.cla.service.github.PullRequestStatus)6 SignClaPage (io.pivotal.cla.webdriver.pages.SignClaPage)4 AdminLinkClaPage (io.pivotal.cla.webdriver.pages.admin.AdminLinkClaPage)4 EnqueueRequests (okhttp3.mockwebserver.EnqueueRequests)4 RecordedRequest (okhttp3.mockwebserver.RecordedRequest)4 UserAuthentication (io.pivotal.cla.security.Login.UserAuthentication)3 OAuthAccessTokenParams (io.pivotal.cla.service.github.OAuthAccessTokenParams)3 Matchers.anyString (org.mockito.Matchers.anyString)3 SecurityContext (org.springframework.security.core.context.SecurityContext)3 WithAnonymousUser (org.springframework.security.test.context.support.WithAnonymousUser)3 IndividualSignature (io.pivotal.cla.data.IndividualSignature)1 PullRequestId (io.pivotal.cla.egit.github.core.PullRequestId)1 WithAdminUser (io.pivotal.cla.security.WithAdminUser)1 ContributingUrlsResponse (io.pivotal.cla.service.github.ContributingUrlsResponse)1 CreatePullRequestHookRequest (io.pivotal.cla.service.github.CreatePullRequestHookRequest)1