Search in sources :

Example 16 with Cohort

use of org.pmiops.workbench.model.Cohort in project workbench by all-of-us.

the class CohortsControllerTest method testUpdateCohortInvalidEtagsThrow.

@Test
public void testUpdateCohortInvalidEtagsThrow() throws Exception {
    Cohort cohort = createDefaultCohort();
    cohort = cohortsController.createCohort(workspace.getNamespace(), workspace.getId(), cohort).getBody();
    // TODO: Refactor to be a @Parameterized test case.
    List<String> cases = ImmutableList.of("", "hello, world", "\"\"", "\"\"1234\"\"", "\"-1\"");
    for (String etag : cases) {
        try {
            cohortsController.updateCohort(workspace.getNamespace(), workspace.getId(), cohort.getId(), new Cohort().name("updated-name").etag(etag));
            fail(String.format("expected BadRequestException for etag: %s", etag));
        } catch (BadRequestException e) {
        // expected
        }
    }
}
Also used : Cohort(org.pmiops.workbench.model.Cohort) BadRequestException(org.pmiops.workbench.exceptions.BadRequestException) DataJpaTest(org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest) Test(org.junit.Test)

Example 17 with Cohort

use of org.pmiops.workbench.model.Cohort in project workbench by all-of-us.

the class CohortsControllerTest method testUpdateCohort.

@Test
public void testUpdateCohort() throws Exception {
    Cohort cohort = createDefaultCohort();
    cohort = cohortsController.createCohort(workspace.getNamespace(), workspace.getId(), cohort).getBody();
    cohort.setName("updated-name");
    Cohort updated = cohortsController.updateCohort(workspace.getNamespace(), workspace.getId(), cohort.getId(), cohort).getBody();
    cohort.setEtag(updated.getEtag());
    assertThat(updated).isEqualTo(cohort);
    cohort.setName("updated-name2");
    updated = cohortsController.updateCohort(workspace.getNamespace(), workspace.getId(), cohort.getId(), cohort).getBody();
    cohort.setEtag(updated.getEtag());
    assertThat(updated).isEqualTo(cohort);
    Cohort got = cohortsController.getCohort(workspace.getNamespace(), workspace.getId(), cohort.getId()).getBody();
    assertThat(got).isEqualTo(cohort);
}
Also used : Cohort(org.pmiops.workbench.model.Cohort) DataJpaTest(org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest) Test(org.junit.Test)

Example 18 with Cohort

use of org.pmiops.workbench.model.Cohort in project workbench by all-of-us.

the class CohortsControllerTest method testMaterializeCohortWorkspaceNotFound.

@Test(expected = NotFoundException.class)
public void testMaterializeCohortWorkspaceNotFound() throws Exception {
    Cohort cohort = createDefaultCohort();
    cohort = cohortsController.createCohort(workspace.getNamespace(), workspace.getId(), cohort).getBody();
    WorkspaceAccessLevel owner = WorkspaceAccessLevel.OWNER;
    String workspaceName = "badWorkspace";
    org.pmiops.workbench.firecloud.model.WorkspaceResponse fcResponse = new org.pmiops.workbench.firecloud.model.WorkspaceResponse();
    fcResponse.setAccessLevel(owner.toString());
    when(fireCloudService.getWorkspace(WORKSPACE_NAMESPACE, workspaceName)).thenReturn(fcResponse);
    when(workspaceService.getWorkspaceAccessLevel(WORKSPACE_NAMESPACE, workspaceName)).thenThrow(new NotFoundException());
    MaterializeCohortRequest request = new MaterializeCohortRequest();
    request.setCohortName(cohort.getName());
    cohortsController.materializeCohort(WORKSPACE_NAMESPACE, workspaceName, request);
}
Also used : Cohort(org.pmiops.workbench.model.Cohort) MaterializeCohortRequest(org.pmiops.workbench.model.MaterializeCohortRequest) NotFoundException(org.pmiops.workbench.exceptions.NotFoundException) WorkspaceAccessLevel(org.pmiops.workbench.model.WorkspaceAccessLevel) DataJpaTest(org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest) Test(org.junit.Test)

Example 19 with Cohort

use of org.pmiops.workbench.model.Cohort in project workbench by all-of-us.

the class WorkspacesControllerTest method testCloneWorkspaceWithCohorts.

@Test
public void testCloneWorkspaceWithCohorts() throws Exception {
    CdrVersionContext.setCdrVersion(cdrVersion);
    Workspace workspace = createDefaultWorkspace();
    workspace = workspacesController.createWorkspace(workspace).getBody();
    Cohort c1 = createDefaultCohort("c1");
    c1 = cohortsController.createCohort(workspace.getNamespace(), workspace.getId(), c1).getBody();
    Cohort c2 = createDefaultCohort("c2");
    c2 = cohortsController.createCohort(workspace.getNamespace(), workspace.getId(), c2).getBody();
    stubBigQueryCohortCalls();
    CreateReviewRequest reviewReq = new CreateReviewRequest();
    reviewReq.setSize(1);
    CohortReview cr1 = cohortReviewController.createCohortReview(workspace.getNamespace(), workspace.getId(), c1.getId(), cdrVersion.getCdrVersionId(), reviewReq).getBody();
    reviewReq.setSize(2);
    CohortReview cr2 = cohortReviewController.createCohortReview(workspace.getNamespace(), workspace.getId(), c2.getId(), cdrVersion.getCdrVersionId(), reviewReq).getBody();
    stubGetWorkspace(workspace.getNamespace(), workspace.getName(), LOGGED_IN_USER_EMAIL, WorkspaceAccessLevel.OWNER);
    CloneWorkspaceRequest req = new CloneWorkspaceRequest();
    Workspace modWorkspace = new Workspace();
    modWorkspace.setName("cloned");
    modWorkspace.setNamespace("cloned-ns");
    ResearchPurpose modPurpose = new ResearchPurpose();
    modPurpose.setAncestry(true);
    modWorkspace.setResearchPurpose(modPurpose);
    req.setWorkspace(modWorkspace);
    stubGetWorkspace(modWorkspace.getNamespace(), modWorkspace.getName(), LOGGED_IN_USER_EMAIL, WorkspaceAccessLevel.OWNER);
    Workspace cloned = workspacesController.cloneWorkspace(workspace.getNamespace(), workspace.getId(), req).getBody().getWorkspace();
    List<Cohort> cohorts = cohortsController.getCohortsInWorkspace(cloned.getNamespace(), cloned.getId()).getBody().getItems();
    Map<String, Cohort> cohortsByName = Maps.uniqueIndex(cohorts, c -> c.getName());
    assertThat(cohortsByName.keySet()).containsExactlyElementsIn(ImmutableSet.of("c1", "c2"));
    assertThat(cohorts.stream().map(c -> c.getId()).collect(Collectors.toList())).containsNoneOf(c1.getId(), c2.getId());
    CohortReview gotCr1 = cohortReviewController.getParticipantCohortStatuses(cloned.getNamespace(), cloned.getId(), cohortsByName.get("c1").getId(), cdrVersion.getCdrVersionId(), new ParticipantCohortStatuses().pageFilterType(PageFilterType.PARTICIPANTCOHORTSTATUSES)).getBody();
    assertThat(gotCr1.getReviewSize()).isEqualTo(cr1.getReviewSize());
    assertThat(gotCr1.getParticipantCohortStatuses()).isEqualTo(cr1.getParticipantCohortStatuses());
    CohortReview gotCr2 = cohortReviewController.getParticipantCohortStatuses(cloned.getNamespace(), cloned.getId(), cohortsByName.get("c2").getId(), cdrVersion.getCdrVersionId(), new ParticipantCohortStatuses().pageFilterType(PageFilterType.PARTICIPANTCOHORTSTATUSES)).getBody();
    assertThat(gotCr2.getReviewSize()).isEqualTo(cr2.getReviewSize());
    assertThat(gotCr2.getParticipantCohortStatuses()).isEqualTo(cr2.getParticipantCohortStatuses());
    assertThat(ImmutableSet.of(gotCr1.getCohortReviewId(), gotCr2.getCohortReviewId())).containsNoneOf(cr1.getCohortReviewId(), cr2.getCohortId());
}
Also used : DirtiesContext(org.springframework.test.annotation.DirtiesContext) FieldValue(com.google.cloud.bigquery.FieldValue) Provider(javax.inject.Provider) ReviewTabQueryBuilder(org.pmiops.workbench.cohortreview.ReviewTabQueryBuilder) FireCloudService(org.pmiops.workbench.firecloud.FireCloudService) GenderRaceEthnicityType(org.pmiops.workbench.cdr.cache.GenderRaceEthnicityType) Autowired(org.springframework.beans.factory.annotation.Autowired) BlobId(com.google.cloud.storage.BlobId) ShareWorkspaceResponse(org.pmiops.workbench.model.ShareWorkspaceResponse) CohortReviewServiceImpl(org.pmiops.workbench.cohortreview.CohortReviewServiceImpl) PageFilterType(org.pmiops.workbench.model.PageFilterType) DataJpaTest(org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest) TestConfiguration(org.springframework.boot.test.context.TestConfiguration) Blob(com.google.cloud.storage.Blob) GenderRaceEthnicityConcept(org.pmiops.workbench.cdr.cache.GenderRaceEthnicityConcept) org.pmiops.workbench.db.dao(org.pmiops.workbench.db.dao) ResearchPurpose(org.pmiops.workbench.model.ResearchPurpose) Gson(com.google.gson.Gson) Map(java.util.Map) WorkspaceACLUpdate(org.pmiops.workbench.firecloud.model.WorkspaceACLUpdate) CloudStorageService(org.pmiops.workbench.google.CloudStorageService) WorkspaceACLUpdateResponseList(org.pmiops.workbench.firecloud.model.WorkspaceACLUpdateResponseList) SpringRunner(org.springframework.test.context.junit4.SpringRunner) User(org.pmiops.workbench.db.model.User) MockBean(org.springframework.boot.test.mock.mockito.MockBean) ImmutableSet(com.google.common.collect.ImmutableSet) ImmutableMap(com.google.common.collect.ImmutableMap) Truth.assertWithMessage(com.google.common.truth.Truth.assertWithMessage) Timestamp(java.sql.Timestamp) CdrVersion(org.pmiops.workbench.db.model.CdrVersion) Cohort(org.pmiops.workbench.model.Cohort) ConflictException(org.pmiops.workbench.exceptions.ConflictException) Instant(java.time.Instant) Collectors(java.util.stream.Collectors) ZoneId(java.time.ZoneId) UpdateWorkspaceRequest(org.pmiops.workbench.model.UpdateWorkspaceRequest) List(java.util.List) CohortMaterializationService(org.pmiops.workbench.cohorts.CohortMaterializationService) AutoConfigureTestDatabase(org.springframework.boot.test.autoconfigure.jdbc.AutoConfigureTestDatabase) CreateReviewRequest(org.pmiops.workbench.model.CreateReviewRequest) WorkspaceAccessLevel(org.pmiops.workbench.model.WorkspaceAccessLevel) ResearchPurposeReviewRequest(org.pmiops.workbench.model.ResearchPurposeReviewRequest) QueryResult(com.google.cloud.bigquery.QueryResult) CloneWorkspaceRequest(org.pmiops.workbench.model.CloneWorkspaceRequest) ShareWorkspaceRequest(org.pmiops.workbench.model.ShareWorkspaceRequest) TestCase.assertEquals(junit.framework.TestCase.assertEquals) UserRole(org.pmiops.workbench.model.UserRole) ParticipantCohortStatuses(org.pmiops.workbench.model.ParticipantCohortStatuses) Mock(org.mockito.Mock) Workspace(org.pmiops.workbench.model.Workspace) RunWith(org.junit.runner.RunWith) ApiException(org.pmiops.workbench.firecloud.ApiException) HashMap(java.util.HashMap) LiquibaseAutoConfiguration(org.springframework.boot.autoconfigure.liquibase.LiquibaseAutoConfiguration) Matchers.anyString(org.mockito.Matchers.anyString) ArrayList(java.util.ArrayList) SearchRequests(org.pmiops.workbench.test.SearchRequests) ParticipantCounter(org.pmiops.workbench.cohortbuilder.ParticipantCounter) ImmutableList(com.google.common.collect.ImmutableList) CohortReview(org.pmiops.workbench.model.CohortReview) Propagation(org.springframework.transaction.annotation.Propagation) FailedPreconditionException(org.pmiops.workbench.exceptions.FailedPreconditionException) Qualifier(org.springframework.beans.factory.annotation.Qualifier) Before(org.junit.Before) CdrVersionContext(org.pmiops.workbench.cdr.CdrVersionContext) BadRequestException(org.pmiops.workbench.exceptions.BadRequestException) Iterator(java.util.Iterator) ClassMode(org.springframework.test.annotation.DirtiesContext.ClassMode) Matchers.anyListOf(org.mockito.Matchers.anyListOf) TestCase.fail(junit.framework.TestCase.fail) Import(org.springframework.context.annotation.Import) Test(org.junit.Test) FileDetail(org.pmiops.workbench.model.FileDetail) Truth.assertThat(com.google.common.truth.Truth.assertThat) Maps(com.google.common.collect.Maps) FakeClock(org.pmiops.workbench.test.FakeClock) Mockito(org.mockito.Mockito) DataAccessLevel(org.pmiops.workbench.model.DataAccessLevel) ForbiddenException(org.pmiops.workbench.exceptions.ForbiddenException) NotFoundException(org.pmiops.workbench.exceptions.NotFoundException) EmailVerificationStatus(org.pmiops.workbench.model.EmailVerificationStatus) Clock(java.time.Clock) Bean(org.springframework.context.annotation.Bean) Transactional(org.springframework.transaction.annotation.Transactional) CloneWorkspaceRequest(org.pmiops.workbench.model.CloneWorkspaceRequest) Cohort(org.pmiops.workbench.model.Cohort) CreateReviewRequest(org.pmiops.workbench.model.CreateReviewRequest) CohortReview(org.pmiops.workbench.model.CohortReview) Matchers.anyString(org.mockito.Matchers.anyString) Workspace(org.pmiops.workbench.model.Workspace) ResearchPurpose(org.pmiops.workbench.model.ResearchPurpose) ParticipantCohortStatuses(org.pmiops.workbench.model.ParticipantCohortStatuses) DataJpaTest(org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest) Test(org.junit.Test)

Aggregations

Cohort (org.pmiops.workbench.model.Cohort)19 Test (org.junit.Test)15 DataJpaTest (org.springframework.boot.test.autoconfigure.orm.jpa.DataJpaTest)15 MaterializeCohortRequest (org.pmiops.workbench.model.MaterializeCohortRequest)12 MaterializeCohortResponse (org.pmiops.workbench.model.MaterializeCohortResponse)6 Gson (com.google.gson.Gson)2 BadRequestException (org.pmiops.workbench.exceptions.BadRequestException)2 NotFoundException (org.pmiops.workbench.exceptions.NotFoundException)2 WorkspaceAccessLevel (org.pmiops.workbench.model.WorkspaceAccessLevel)2 FieldValue (com.google.cloud.bigquery.FieldValue)1 QueryResult (com.google.cloud.bigquery.QueryResult)1 Blob (com.google.cloud.storage.Blob)1 BlobId (com.google.cloud.storage.BlobId)1 ImmutableList (com.google.common.collect.ImmutableList)1 ImmutableMap (com.google.common.collect.ImmutableMap)1 ImmutableSet (com.google.common.collect.ImmutableSet)1 Maps (com.google.common.collect.Maps)1 Truth.assertThat (com.google.common.truth.Truth.assertThat)1 Truth.assertWithMessage (com.google.common.truth.Truth.assertWithMessage)1 Timestamp (java.sql.Timestamp)1