Search in sources :

Example 31 with CrossReport

use of gov.ca.cwds.rest.api.domain.cms.CrossReport in project API by ca-cwds.

the class CrossReportServiceTest method createReturnsNonNull.

@SuppressWarnings("javadoc")
@Test
public void createReturnsNonNull() throws Exception {
    CrossReport crossReportDomain = MAPPER.readValue(fixture("fixtures/domain/legacy/CrossReport/valid/valid.json"), CrossReport.class);
    gov.ca.cwds.data.persistence.cms.CrossReport toCreate = new gov.ca.cwds.data.persistence.cms.CrossReport(crossReportDomain.getThirdId(), crossReportDomain, "ABC");
    CrossReport request = new CrossReport(toCreate);
    when(crossReportDao.create(any(gov.ca.cwds.data.persistence.cms.CrossReport.class))).thenReturn(toCreate);
    CrossReport postedCrossReport = crossReportService.create(request);
    assertThat(postedCrossReport, is(notNullValue()));
}
Also used : CrossReport(gov.ca.cwds.rest.api.domain.cms.CrossReport) Test(org.junit.Test)

Example 32 with CrossReport

use of gov.ca.cwds.rest.api.domain.cms.CrossReport in project API by ca-cwds.

the class CrossReportServiceTest method updateThrowsExceptionWhenCrossReportNotFound.

@SuppressWarnings("javadoc")
@Test
public void updateThrowsExceptionWhenCrossReportNotFound() throws Exception {
    try {
        CrossReport crossReportRequest = MAPPER.readValue(fixture("fixtures/domain/legacy/CrossReport/valid/valid.json"), CrossReport.class);
        when(crossReportDao.update(any())).thenThrow(EntityNotFoundException.class);
        crossReportService.update("ZZZ1234567", crossReportRequest);
    } catch (Exception e) {
        assertEquals(e.getClass(), ServiceException.class);
    }
}
Also used : CrossReport(gov.ca.cwds.rest.api.domain.cms.CrossReport) ServiceException(gov.ca.cwds.rest.services.ServiceException) EntityNotFoundException(javax.persistence.EntityNotFoundException) ExpectedException(org.junit.rules.ExpectedException) ServiceException(gov.ca.cwds.rest.services.ServiceException) Test(org.junit.Test)

Example 33 with CrossReport

use of gov.ca.cwds.rest.api.domain.cms.CrossReport in project API by ca-cwds.

the class CrossReportServiceTest method createReturnsGeneratedThirdId.

/*
   * Test for checking the new thirdId Generated for crossReport
   */
@SuppressWarnings("javadoc")
@Test
public void createReturnsGeneratedThirdId() throws Exception {
    CrossReport crossReportDomain = MAPPER.readValue(fixture("fixtures/domain/legacy/CrossReport/valid/valid.json"), CrossReport.class);
    when(crossReportDao.create(any(gov.ca.cwds.data.persistence.cms.CrossReport.class))).thenAnswer(new Answer<gov.ca.cwds.data.persistence.cms.CrossReport>() {

        @Override
        public gov.ca.cwds.data.persistence.cms.CrossReport answer(InvocationOnMock invocation) throws Throwable {
            gov.ca.cwds.data.persistence.cms.CrossReport report = (gov.ca.cwds.data.persistence.cms.CrossReport) invocation.getArguments()[0];
            return report;
        }
    });
    CrossReport returned = crossReportService.create(crossReportDomain);
    Assert.assertNotEquals(returned.getThirdId(), crossReportDomain.getThirdId());
}
Also used : CrossReport(gov.ca.cwds.rest.api.domain.cms.CrossReport) InvocationOnMock(org.mockito.invocation.InvocationOnMock) Test(org.junit.Test)

Example 34 with CrossReport

use of gov.ca.cwds.rest.api.domain.cms.CrossReport in project API by ca-cwds.

the class CmsReferralServiceTest method createReturnsCorrectPostedCmsReferral.

@Test
public void createReturnsCorrectPostedCmsReferral() throws Exception {
    Referral referralDomain = MAPPER.readValue(fixture("fixtures/domain/cms/CmsReferral/valid/referralCmsReferral.json"), Referral.class);
    gov.ca.cwds.data.persistence.cms.Referral referralToCreate = new gov.ca.cwds.data.persistence.cms.Referral("ABC1234567", referralDomain, "2016-10-31");
    Set<ReferralClient> referralClientDomain = MAPPER.readValue(fixture("fixtures/domain/cms/CmsReferral/valid/referralClientCmsReferral.json"), new TypeReference<Set<ReferralClient>>() {
    });
    gov.ca.cwds.data.persistence.cms.ReferralClient referralClientToCreate = new gov.ca.cwds.data.persistence.cms.ReferralClient((ReferralClient) referralClientDomain.toArray()[0], "2016-10-31");
    Set<Allegation> allegationDomain = MAPPER.readValue(fixture("fixtures/domain/cms/CmsReferral/valid/allegationCmsReferral.json"), new TypeReference<Set<Allegation>>() {
    });
    gov.ca.cwds.data.persistence.cms.Allegation allegationToCreate = new gov.ca.cwds.data.persistence.cms.Allegation("ABC1234567", (Allegation) allegationDomain.toArray()[0], "2016-10-31");
    Set<CrossReport> crossReportDomain = MAPPER.readValue(fixture("fixtures/domain/cms/CmsReferral/valid/crossReportCmsReferral.json"), new TypeReference<Set<CrossReport>>() {
    });
    gov.ca.cwds.data.persistence.cms.CrossReport crossReportToCreate = new gov.ca.cwds.data.persistence.cms.CrossReport("1234567ABC", (CrossReport) crossReportDomain.toArray()[0], "2016-10-31");
    Reporter reporterDomain = MAPPER.readValue(fixture("fixtures/domain/cms/CmsReferral/valid/reporterCmsReferral.json"), Reporter.class);
    gov.ca.cwds.data.persistence.cms.Reporter reporterToCreate = new gov.ca.cwds.data.persistence.cms.Reporter(reporterDomain, "2016-10-31");
    Set<Client> clientDomain = MAPPER.readValue(fixture("fixtures/domain/cms/CmsReferral/valid/clientCmsReferral.json"), new TypeReference<Set<Client>>() {
    });
    gov.ca.cwds.data.persistence.cms.Client clientToCreate = new gov.ca.cwds.data.persistence.cms.Client("ABC1234567", (Client) clientDomain.toArray()[0], "2016-10-31");
    Referral referralRequest = new Referral(referralToCreate);
    ReferralClient referralClientRequest = new ReferralClient(referralClientToCreate);
    Set<ReferralClient> referralClientRequestSet = new LinkedHashSet<>();
    referralClientRequestSet.add(referralClientRequest);
    Allegation allegationRequest = new Allegation(allegationToCreate);
    Set<Allegation> allegationRequestSet = new LinkedHashSet<>();
    allegationRequestSet.add(allegationRequest);
    CrossReport crossReportRequest = new CrossReport(crossReportToCreate);
    Set<CrossReport> crossReportRequestSet = new LinkedHashSet<>();
    crossReportRequestSet.add(crossReportRequest);
    Reporter reporterRequest = new Reporter(reporterToCreate);
    Client clientRequest = new Client(clientToCreate, false);
    Set<Client> clientRequestSet = new LinkedHashSet<>();
    clientRequestSet.add(clientRequest);
    PostedReferral postedReferral = new PostedReferral(referralToCreate);
    ReferralClient postedReferralClient = new ReferralClient(referralClientToCreate);
    Set<ReferralClient> postedReferralClientSet = new LinkedHashSet<>();
    postedReferralClientSet.add(postedReferralClient);
    PostedAllegation postedAllegation = new PostedAllegation(allegationToCreate);
    Set<PostedAllegation> postedAllegationSet = new LinkedHashSet<>();
    postedAllegationSet.add(postedAllegation);
    CrossReport postedCrossReport = new CrossReport(crossReportToCreate);
    Set<CrossReport> postedCrossReportSet = new LinkedHashSet<>();
    postedCrossReportSet.add(postedCrossReport);
    PostedReporter postedReporter = new PostedReporter(reporterToCreate);
    PostedClient postedClient = new PostedClient(clientToCreate, false);
    Set<PostedClient> postedClientSet = new LinkedHashSet<>();
    postedClientSet.add(postedClient);
    when(referralDao.create(any(gov.ca.cwds.data.persistence.cms.Referral.class))).thenReturn(referralToCreate);
    when(referralClientDao.create(any(gov.ca.cwds.data.persistence.cms.ReferralClient.class))).thenReturn(referralClientToCreate);
    when(allegationDao.create(any(gov.ca.cwds.data.persistence.cms.Allegation.class))).thenReturn(allegationToCreate);
    when(crossReportDao.create(any(gov.ca.cwds.data.persistence.cms.CrossReport.class))).thenReturn(crossReportToCreate);
    when(reporterDao.create(any(gov.ca.cwds.data.persistence.cms.Reporter.class))).thenReturn(reporterToCreate);
    when(clientDao.create(any(gov.ca.cwds.data.persistence.cms.Client.class))).thenReturn(clientToCreate);
    CmsReferral cmsReferralToCreate = new CmsReferral(referralRequest, clientRequestSet, allegationRequestSet, crossReportRequestSet, referralClientRequestSet, reporterRequest);
    CmsReferralService cmsReferralRequest = new CmsReferralService(referralService, clientService, allegationService, crossReportService, referralClientService, reporterService, clientUcService);
    PostedCmsReferral expected = new PostedCmsReferral(postedReferral, postedClientSet, postedAllegationSet, postedCrossReportSet, postedReferralClientSet, postedReporter);
    PostedCmsReferral returned = (PostedCmsReferral) cmsReferralRequest.create(cmsReferralToCreate);
    assertThat(returned, is(expected));
}
Also used : LinkedHashSet(java.util.LinkedHashSet) PostedCmsReferral(gov.ca.cwds.rest.api.domain.cms.PostedCmsReferral) CmsReferral(gov.ca.cwds.rest.api.domain.cms.CmsReferral) LinkedHashSet(java.util.LinkedHashSet) Set(java.util.Set) PostedCmsReferral(gov.ca.cwds.rest.api.domain.cms.PostedCmsReferral) PostedReporter(gov.ca.cwds.rest.api.domain.cms.PostedReporter) PostedReferral(gov.ca.cwds.rest.api.domain.cms.PostedReferral) PostedAllegation(gov.ca.cwds.rest.api.domain.cms.PostedAllegation) Allegation(gov.ca.cwds.rest.api.domain.cms.Allegation) Client(gov.ca.cwds.rest.api.domain.cms.Client) ReferralClient(gov.ca.cwds.rest.api.domain.cms.ReferralClient) PostedClient(gov.ca.cwds.rest.api.domain.cms.PostedClient) PostedAllegation(gov.ca.cwds.rest.api.domain.cms.PostedAllegation) PostedClient(gov.ca.cwds.rest.api.domain.cms.PostedClient) PostedReporter(gov.ca.cwds.rest.api.domain.cms.PostedReporter) Reporter(gov.ca.cwds.rest.api.domain.cms.Reporter) CrossReport(gov.ca.cwds.rest.api.domain.cms.CrossReport) Referral(gov.ca.cwds.rest.api.domain.cms.Referral) PostedReferral(gov.ca.cwds.rest.api.domain.cms.PostedReferral) PostedCmsReferral(gov.ca.cwds.rest.api.domain.cms.PostedCmsReferral) CmsReferral(gov.ca.cwds.rest.api.domain.cms.CmsReferral) ReferralClient(gov.ca.cwds.rest.api.domain.cms.ReferralClient) Test(org.junit.Test)

Example 35 with CrossReport

use of gov.ca.cwds.rest.api.domain.cms.CrossReport in project API by ca-cwds.

the class CrossReportServiceTest method updateReturnsCrossReportResponseOnSuccess.

@SuppressWarnings("javadoc")
@Test
public void updateReturnsCrossReportResponseOnSuccess() throws Exception {
    CrossReport expected = MAPPER.readValue(fixture("fixtures/domain/legacy/CrossReport/valid/valid.json"), CrossReport.class);
    gov.ca.cwds.data.persistence.cms.CrossReport crossReport = new gov.ca.cwds.data.persistence.cms.CrossReport(expected.getThirdId(), expected, "ABC");
    when(crossReportDao.find("ABC1234567")).thenReturn(crossReport);
    when(crossReportDao.update(any())).thenReturn(crossReport);
    Object retval = crossReportService.update("ABC1234567", expected);
    assertThat(retval.getClass(), is(CrossReport.class));
}
Also used : CrossReport(gov.ca.cwds.rest.api.domain.cms.CrossReport) Test(org.junit.Test)

Aggregations

CrossReport (gov.ca.cwds.rest.api.domain.cms.CrossReport)59 Test (org.junit.Test)56 Allegation (gov.ca.cwds.rest.api.domain.cms.Allegation)46 Client (gov.ca.cwds.rest.api.domain.cms.Client)46 CmsReferral (gov.ca.cwds.rest.api.domain.cms.CmsReferral)46 ReferralClient (gov.ca.cwds.rest.api.domain.cms.ReferralClient)46 LinkedHashSet (java.util.LinkedHashSet)46 Response (gov.ca.cwds.rest.api.Response)45 Referral (gov.ca.cwds.rest.api.domain.cms.Referral)45 Reporter (gov.ca.cwds.rest.api.domain.cms.Reporter)45 Set (java.util.Set)45 PostedScreeningToReferral (gov.ca.cwds.rest.api.domain.PostedScreeningToReferral)42 ScreeningToReferral (gov.ca.cwds.rest.api.domain.ScreeningToReferral)42 Address (gov.ca.cwds.rest.api.domain.cms.Address)42 ChildClient (gov.ca.cwds.rest.api.domain.cms.ChildClient)42 ClientAddress (gov.ca.cwds.rest.api.domain.cms.ClientAddress)42 LongText (gov.ca.cwds.rest.api.domain.cms.LongText)42 ErrorMessage (gov.ca.cwds.rest.api.domain.error.ErrorMessage)22 ExpectedException (org.junit.rules.ExpectedException)17 PostedCmsReferral (gov.ca.cwds.rest.api.domain.cms.PostedCmsReferral)5