Search in sources :

Example 21 with FundingGroup

use of org.orcid.jaxb.model.record.summary_rc3.FundingGroup in project ORCID-Source by ORCID.

the class MemberV2ApiServiceDelegator_ActivitiesSummaryTest method testActivities.

private void testActivities(ActivitiesSummary as, String orcid) {
    boolean found1 = false, found2 = false, found3 = false;
    // This is more an utility that will work only for 0000-0000-0000-0003
    assertEquals("0000-0000-0000-0003", orcid);
    assertNotNull(as);
    assertNotNull(as.getPath());
    assertEquals("/0000-0000-0000-0003/activities", as.getPath());
    Utils.verifyLastModified(as.getLastModifiedDate());
    assertNotNull(as.getEducations());
    assertEquals(3, as.getEducations().getSummaries().size());
    for (EducationSummary element : as.getEducations().getSummaries()) {
        if (element.getPutCode().equals(Long.valueOf(20))) {
            found1 = true;
        } else if (element.getPutCode().equals(Long.valueOf(21))) {
            found2 = true;
        } else if (element.getPutCode().equals(Long.valueOf(22))) {
            found3 = true;
        } else {
            fail("Invalid put code " + element.getPutCode());
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    found1 = found2 = found3 = false;
    assertNotNull(as.getEmployments());
    assertEquals(3, as.getEmployments().getSummaries().size());
    for (EmploymentSummary element : as.getEmployments().getSummaries()) {
        if (element.getPutCode().equals(Long.valueOf(17))) {
            found1 = true;
        } else if (element.getPutCode().equals(Long.valueOf(18))) {
            found2 = true;
        } else if (element.getPutCode().equals(Long.valueOf(19))) {
            found3 = true;
        } else {
            fail("Invalid put code " + element.getPutCode());
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    found1 = found2 = found3 = false;
    assertNotNull(as.getFundings());
    assertEquals(3, as.getFundings().getFundingGroup().size());
    for (FundingGroup group : as.getFundings().getFundingGroup()) {
        assertEquals(1, group.getFundingSummary().size());
        FundingSummary element = group.getFundingSummary().get(0);
        if (element.getPutCode().equals(Long.valueOf(10))) {
            found1 = true;
        } else if (element.getPutCode().equals(Long.valueOf(11))) {
            found2 = true;
        } else if (element.getPutCode().equals(Long.valueOf(12))) {
            found3 = true;
        } else {
            fail("Invalid put code " + element.getPutCode());
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    found1 = found2 = found3 = false;
    assertNotNull(as.getPeerReviews());
    assertEquals(3, as.getPeerReviews().getPeerReviewGroup().size());
    for (PeerReviewGroup group : as.getPeerReviews().getPeerReviewGroup()) {
        assertEquals(1, group.getPeerReviewSummary().size());
        PeerReviewSummary element = group.getPeerReviewSummary().get(0);
        if (element.getPutCode().equals(Long.valueOf(9))) {
            found1 = true;
        } else if (element.getPutCode().equals(Long.valueOf(10))) {
            found2 = true;
        } else if (element.getPutCode().equals(Long.valueOf(11))) {
            found3 = true;
        } else {
            fail("Invalid put code " + element.getPutCode());
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    found1 = found2 = found3 = false;
    assertNotNull(as.getWorks());
    assertEquals(3, as.getWorks().getWorkGroup().size());
    for (WorkGroup group : as.getWorks().getWorkGroup()) {
        assertEquals(1, group.getWorkSummary().size());
        WorkSummary element = group.getWorkSummary().get(0);
        if (element.getPutCode().equals(Long.valueOf(11))) {
            found1 = true;
        } else if (element.getPutCode().equals(Long.valueOf(12))) {
            found2 = true;
        } else if (element.getPutCode().equals(Long.valueOf(13))) {
            found3 = true;
        } else {
            fail("Invalid put code " + element.getPutCode());
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    found1 = found2 = found3 = false;
}
Also used : PeerReviewGroup(org.orcid.jaxb.model.record.summary_v2.PeerReviewGroup) WorkGroup(org.orcid.jaxb.model.record.summary_v2.WorkGroup) WorkSummary(org.orcid.jaxb.model.record.summary_v2.WorkSummary) EducationSummary(org.orcid.jaxb.model.record.summary_v2.EducationSummary) PeerReviewSummary(org.orcid.jaxb.model.record.summary_v2.PeerReviewSummary) FundingSummary(org.orcid.jaxb.model.record.summary_v2.FundingSummary) EmploymentSummary(org.orcid.jaxb.model.record.summary_v2.EmploymentSummary) FundingGroup(org.orcid.jaxb.model.record.summary_v2.FundingGroup)

Example 22 with FundingGroup

use of org.orcid.jaxb.model.record.summary_rc3.FundingGroup in project ORCID-Source by ORCID.

the class MemberV2ApiServiceDelegator_ReadRecordTest method testViewRecord.

@Test
public void testViewRecord() {
    SecurityContextTestUtils.setUpSecurityContext(ORCID, ScopePathType.READ_LIMITED);
    Response response = serviceDelegator.viewRecord(ORCID);
    assertNotNull(response);
    Record record = (Record) response.getEntity();
    assertNotNull(record);
    assertEquals("/0000-0000-0000-0003", record.getPath());
    assertNotNull(record.getHistory());
    assertEquals(OrcidType.USER, record.getOrcidType());
    assertNotNull(record.getPreferences());
    assertEquals(Locale.EN, record.getPreferences().getLocale());
    History history = record.getHistory();
    assertTrue(history.getClaimed());
    assertNotNull(history.getCompletionDate());
    assertEquals(CreationMethod.INTEGRATION_TEST, history.getCreationMethod());
    assertNull(history.getDeactivationDate());
    Utils.verifyLastModified(history.getLastModifiedDate());
    assertNotNull(history.getSource());
    assertEquals("APP-5555555555555555", history.getSource().retrieveSourcePath());
    assertNotNull(history.getSubmissionDate());
    assertNotNull(record.getOrcidIdentifier());
    OrcidIdentifier id = record.getOrcidIdentifier();
    assertEquals("0000-0000-0000-0003", id.getPath());
    // Validate person
    Person person = record.getPerson();
    assertNotNull(person);
    assertEquals("/0000-0000-0000-0003/person", person.getPath());
    Utils.verifyLastModified(person.getLastModifiedDate());
    assertEquals("/0000-0000-0000-0003/person", person.getPath());
    assertNotNull(person.getAddresses());
    Utils.verifyLastModified(person.getAddresses().getLastModifiedDate());
    assertEquals("/0000-0000-0000-0003/address", person.getAddresses().getPath());
    assertEquals(4, person.getAddresses().getAddress().size());
    for (Address address : person.getAddresses().getAddress()) {
        Utils.verifyLastModified(address.getLastModifiedDate());
        if (address.getPutCode().equals(Long.valueOf(9))) {
            assertEquals(Iso3166Country.US, address.getCountry().getValue());
            assertEquals(Long.valueOf(0), address.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/address/9", address.getPath());
            assertEquals("APP-5555555555555555", address.getSource().retrieveSourcePath());
            assertEquals(Visibility.PUBLIC.value(), address.getVisibility().value());
        } else if (address.getPutCode().equals(Long.valueOf(10))) {
            assertEquals(Iso3166Country.CR, address.getCountry().getValue());
            assertEquals(Long.valueOf(1), address.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/address/10", address.getPath());
            assertEquals("APP-5555555555555555", address.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), address.getVisibility().value());
        } else if (address.getPutCode().equals(Long.valueOf(11))) {
            assertEquals(Iso3166Country.GB, address.getCountry().getValue());
            assertEquals(Long.valueOf(2), address.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/address/11", address.getPath());
            assertEquals("APP-5555555555555555", address.getSource().retrieveSourcePath());
            assertEquals(Visibility.PRIVATE.value(), address.getVisibility().value());
        } else if (address.getPutCode().equals(Long.valueOf(12))) {
            assertEquals(Iso3166Country.MX, address.getCountry().getValue());
            assertEquals(Long.valueOf(3), address.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/address/12", address.getPath());
            assertEquals("0000-0000-0000-0003", address.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), address.getVisibility().value());
        } else {
            fail("Invalid address found with put code: " + address.getPutCode());
        }
    }
    assertNotNull(person.getBiography());
    Utils.verifyLastModified(person.getBiography().getLastModifiedDate());
    assertEquals(Visibility.PUBLIC.value(), person.getBiography().getVisibility().value());
    assertEquals("Biography for 0000-0000-0000-0003", person.getBiography().getContent());
    assertNotNull(person.getEmails());
    Utils.verifyLastModified(person.getEmails().getLastModifiedDate());
    assertEquals("/0000-0000-0000-0003/email", person.getEmails().getPath());
    assertEquals(4, person.getEmails().getEmails().size());
    for (Email email : person.getEmails().getEmails()) {
        Utils.verifyLastModified(email.getLastModifiedDate());
        if (email.getEmail().equals("public_0000-0000-0000-0003@test.orcid.org")) {
            assertEquals("APP-5555555555555555", email.getSource().retrieveSourcePath());
            assertEquals(Visibility.PUBLIC.value(), email.getVisibility().value());
        } else if (email.getEmail().equals("limited_0000-0000-0000-0003@test.orcid.org")) {
            assertEquals("APP-5555555555555555", email.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), email.getVisibility().value());
        } else if (email.getEmail().equals("private_0000-0000-0000-0003@test.orcid.org")) {
            assertEquals("APP-5555555555555555", email.getSource().retrieveSourcePath());
            assertEquals(Visibility.PRIVATE.value(), email.getVisibility().value());
        } else if (email.getEmail().equals("self_limited_0000-0000-0000-0003@test.orcid.org")) {
            assertEquals("0000-0000-0000-0003", email.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), email.getVisibility().value());
        } else {
            fail("Invalid email found: " + email.getEmail());
        }
    }
    assertNotNull(person.getExternalIdentifiers());
    Utils.verifyLastModified(person.getExternalIdentifiers().getLastModifiedDate());
    assertEquals("/0000-0000-0000-0003/external-identifiers", person.getExternalIdentifiers().getPath());
    assertEquals(4, person.getExternalIdentifiers().getExternalIdentifiers().size());
    for (PersonExternalIdentifier extId : person.getExternalIdentifiers().getExternalIdentifiers()) {
        Utils.verifyLastModified(extId.getLastModifiedDate());
        if (extId.getPutCode().equals(Long.valueOf(13))) {
            assertEquals(Long.valueOf(0), extId.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/external-identifiers/13", extId.getPath());
            assertEquals("APP-5555555555555555", extId.getSource().retrieveSourcePath());
            assertEquals("public_type", extId.getType());
            assertEquals("http://ext-id/public_ref", extId.getUrl().getValue());
            assertEquals("public_ref", extId.getValue());
            assertEquals(Visibility.PUBLIC.value(), extId.getVisibility().value());
        } else if (extId.getPutCode().equals(Long.valueOf(14))) {
            assertEquals(Long.valueOf(1), extId.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/external-identifiers/14", extId.getPath());
            assertEquals("APP-5555555555555555", extId.getSource().retrieveSourcePath());
            assertEquals("limited_type", extId.getType());
            assertEquals("http://ext-id/limited_ref", extId.getUrl().getValue());
            assertEquals("limited_ref", extId.getValue());
            assertEquals(Visibility.LIMITED.value(), extId.getVisibility().value());
        } else if (extId.getPutCode().equals(Long.valueOf(15))) {
            assertEquals(Long.valueOf(2), extId.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/external-identifiers/15", extId.getPath());
            assertEquals("APP-5555555555555555", extId.getSource().retrieveSourcePath());
            assertEquals("private_type", extId.getType());
            assertEquals("http://ext-id/private_ref", extId.getUrl().getValue());
            assertEquals("private_ref", extId.getValue());
            assertEquals(Visibility.PRIVATE.value(), extId.getVisibility().value());
        } else if (extId.getPutCode().equals(Long.valueOf(16))) {
            assertEquals(Long.valueOf(3), extId.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/external-identifiers/16", extId.getPath());
            assertEquals("0000-0000-0000-0003", extId.getSource().retrieveSourcePath());
            assertEquals("self_limited_type", extId.getType());
            assertEquals("http://ext-id/self/limited", extId.getUrl().getValue());
            assertEquals("self_limited_ref", extId.getValue());
            assertEquals(Visibility.LIMITED.value(), extId.getVisibility().value());
        } else {
            fail("Invalid external identifier found: " + extId.getPutCode());
        }
    }
    assertNotNull(person.getKeywords());
    Utils.verifyLastModified(person.getKeywords().getLastModifiedDate());
    assertEquals("/0000-0000-0000-0003/keywords", person.getKeywords().getPath());
    assertEquals(4, person.getKeywords().getKeywords().size());
    for (Keyword keyword : person.getKeywords().getKeywords()) {
        Utils.verifyLastModified(keyword.getLastModifiedDate());
        if (keyword.getPutCode().equals(Long.valueOf(9))) {
            assertEquals("PUBLIC", keyword.getContent());
            assertEquals(Long.valueOf(0), keyword.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/keywords/9", keyword.getPath());
            assertEquals("APP-5555555555555555", keyword.getSource().retrieveSourcePath());
            assertEquals(Visibility.PUBLIC.value(), keyword.getVisibility().value());
        } else if (keyword.getPutCode().equals(Long.valueOf(10))) {
            assertEquals("LIMITED", keyword.getContent());
            assertEquals(Long.valueOf(1), keyword.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/keywords/10", keyword.getPath());
            assertEquals("APP-5555555555555555", keyword.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), keyword.getVisibility().value());
        } else if (keyword.getPutCode().equals(Long.valueOf(11))) {
            assertEquals("PRIVATE", keyword.getContent());
            assertEquals(Long.valueOf(2), keyword.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/keywords/11", keyword.getPath());
            assertEquals("APP-5555555555555555", keyword.getSource().retrieveSourcePath());
            assertEquals(Visibility.PRIVATE.value(), keyword.getVisibility().value());
        } else if (keyword.getPutCode().equals(Long.valueOf(12))) {
            assertEquals("SELF LIMITED", keyword.getContent());
            assertEquals(Long.valueOf(3), keyword.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/keywords/12", keyword.getPath());
            assertEquals("0000-0000-0000-0003", keyword.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), keyword.getVisibility().value());
        } else {
            fail("Invalid keyword found: " + keyword.getPutCode());
        }
    }
    assertNotNull(person.getName());
    Utils.verifyLastModified(person.getName().getLastModifiedDate());
    assertEquals("Credit Name", person.getName().getCreditName().getContent());
    assertEquals("Family Name", person.getName().getFamilyName().getContent());
    assertEquals("Given Names", person.getName().getGivenNames().getContent());
    assertEquals(Visibility.PUBLIC.value(), person.getName().getVisibility().value());
    assertNotNull(person.getOtherNames());
    Utils.verifyLastModified(person.getOtherNames().getLastModifiedDate());
    assertEquals("/0000-0000-0000-0003/other-names", person.getOtherNames().getPath());
    assertEquals(4, person.getOtherNames().getOtherNames().size());
    for (OtherName otherName : person.getOtherNames().getOtherNames()) {
        Utils.verifyLastModified(otherName.getLastModifiedDate());
        if (otherName.getPutCode().equals(Long.valueOf(13))) {
            assertEquals("Other Name PUBLIC", otherName.getContent());
            assertEquals(Long.valueOf(0), otherName.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/other-names/13", otherName.getPath());
            assertEquals("APP-5555555555555555", otherName.getSource().retrieveSourcePath());
            assertEquals(Visibility.PUBLIC.value(), otherName.getVisibility().value());
        } else if (otherName.getPutCode().equals(Long.valueOf(14))) {
            assertEquals("Other Name LIMITED", otherName.getContent());
            assertEquals(Long.valueOf(1), otherName.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/other-names/14", otherName.getPath());
            assertEquals("APP-5555555555555555", otherName.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), otherName.getVisibility().value());
        } else if (otherName.getPutCode().equals(Long.valueOf(15))) {
            assertEquals("Other Name PRIVATE", otherName.getContent());
            assertEquals(Long.valueOf(2), otherName.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/other-names/15", otherName.getPath());
            assertEquals("APP-5555555555555555", otherName.getSource().retrieveSourcePath());
            assertEquals(Visibility.PRIVATE.value(), otherName.getVisibility().value());
        } else if (otherName.getPutCode().equals(Long.valueOf(16))) {
            assertEquals("Other Name SELF LIMITED", otherName.getContent());
            assertEquals(Long.valueOf(3), otherName.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/other-names/16", otherName.getPath());
            assertEquals("0000-0000-0000-0003", otherName.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), otherName.getVisibility().value());
        } else {
            fail("Invalid other name found: " + otherName.getPutCode());
        }
    }
    assertNotNull(person.getResearcherUrls());
    Utils.verifyLastModified(person.getResearcherUrls().getLastModifiedDate());
    assertEquals("/0000-0000-0000-0003/researcher-urls", person.getResearcherUrls().getPath());
    assertEquals(4, person.getResearcherUrls().getResearcherUrls().size());
    for (ResearcherUrl rUrl : person.getResearcherUrls().getResearcherUrls()) {
        Utils.verifyLastModified(rUrl.getLastModifiedDate());
        if (rUrl.getPutCode().equals(Long.valueOf(13))) {
            assertEquals(Long.valueOf(0), rUrl.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/researcher-urls/13", rUrl.getPath());
            assertEquals("APP-5555555555555555", rUrl.getSource().retrieveSourcePath());
            assertEquals("http://www.researcherurl.com?id=13", rUrl.getUrl().getValue());
            assertEquals("public_rurl", rUrl.getUrlName());
            assertEquals(Visibility.PUBLIC.value(), rUrl.getVisibility().value());
        } else if (rUrl.getPutCode().equals(Long.valueOf(14))) {
            assertEquals(Long.valueOf(1), rUrl.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/researcher-urls/14", rUrl.getPath());
            assertEquals("APP-5555555555555555", rUrl.getSource().retrieveSourcePath());
            assertEquals("http://www.researcherurl.com?id=14", rUrl.getUrl().getValue());
            assertEquals("limited_rurl", rUrl.getUrlName());
            assertEquals(Visibility.LIMITED.value(), rUrl.getVisibility().value());
        } else if (rUrl.getPutCode().equals(Long.valueOf(15))) {
            assertEquals(Long.valueOf(2), rUrl.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/researcher-urls/15", rUrl.getPath());
            assertEquals("APP-5555555555555555", rUrl.getSource().retrieveSourcePath());
            assertEquals("http://www.researcherurl.com?id=15", rUrl.getUrl().getValue());
            assertEquals("private_rurl", rUrl.getUrlName());
            assertEquals(Visibility.PRIVATE.value(), rUrl.getVisibility().value());
        } else if (rUrl.getPutCode().equals(Long.valueOf(16))) {
            assertEquals(Long.valueOf(3), rUrl.getDisplayIndex());
            assertEquals("/0000-0000-0000-0003/researcher-urls/16", rUrl.getPath());
            assertEquals("0000-0000-0000-0003", rUrl.getSource().retrieveSourcePath());
            assertEquals("http://www.researcherurl.com?id=16", rUrl.getUrl().getValue());
            assertEquals("self_limited_rurl", rUrl.getUrlName());
            assertEquals(Visibility.LIMITED.value(), rUrl.getVisibility().value());
        } else {
            fail("Invalid researcher url found: " + rUrl.getPutCode());
        }
    }
    // Validate activities
    ActivitiesSummary activities = record.getActivitiesSummary();
    assertNotNull(activities);
    assertEquals("/0000-0000-0000-0003/activities", activities.getPath());
    Utils.verifyLastModified(activities.getLastModifiedDate());
    assertNotNull(activities.getEducations());
    Utils.verifyLastModified(activities.getEducations().getLastModifiedDate());
    assertEquals(4, activities.getEducations().getSummaries().size());
    for (EducationSummary education : activities.getEducations().getSummaries()) {
        Utils.verifyLastModified(education.getLastModifiedDate());
        assertNotNull(education.getStartDate());
        assertEquals("2016", education.getStartDate().getYear().getValue());
        assertEquals("04", education.getStartDate().getMonth().getValue());
        assertEquals("01", education.getStartDate().getDay().getValue());
        assertNotNull(education.getEndDate());
        assertEquals("2030", education.getEndDate().getYear().getValue());
        assertEquals("01", education.getEndDate().getMonth().getValue());
        assertEquals("01", education.getEndDate().getDay().getValue());
        if (education.getPutCode().equals(Long.valueOf(20))) {
            assertEquals("PUBLIC Department", education.getDepartmentName());
            assertEquals("/0000-0000-0000-0003/education/20", education.getPath());
            assertEquals("PUBLIC", education.getRoleTitle());
            assertEquals("APP-5555555555555555", education.getSource().retrieveSourcePath());
            assertEquals(Visibility.PUBLIC.value(), education.getVisibility().value());
        } else if (education.getPutCode().equals(Long.valueOf(21))) {
            assertEquals("LIMITED Department", education.getDepartmentName());
            assertEquals("/0000-0000-0000-0003/education/21", education.getPath());
            assertEquals("LIMITED", education.getRoleTitle());
            assertEquals("APP-5555555555555555", education.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), education.getVisibility().value());
        } else if (education.getPutCode().equals(Long.valueOf(22))) {
            assertEquals("PRIVATE Department", education.getDepartmentName());
            assertEquals("/0000-0000-0000-0003/education/22", education.getPath());
            assertEquals("PRIVATE", education.getRoleTitle());
            assertEquals("APP-5555555555555555", education.getSource().retrieveSourcePath());
            assertEquals(Visibility.PRIVATE.value(), education.getVisibility().value());
        } else if (education.getPutCode().equals(Long.valueOf(25))) {
            assertEquals("SELF LIMITED Department", education.getDepartmentName());
            assertEquals("/0000-0000-0000-0003/education/25", education.getPath());
            assertEquals("SELF LIMITED", education.getRoleTitle());
            assertEquals("0000-0000-0000-0003", education.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), education.getVisibility().value());
        } else {
            fail("Invalid education found: " + education.getPutCode());
        }
    }
    assertNotNull(activities.getEmployments());
    Utils.verifyLastModified(activities.getEmployments().getLastModifiedDate());
    assertEquals(4, activities.getEmployments().getSummaries().size());
    for (EmploymentSummary employment : activities.getEmployments().getSummaries()) {
        Utils.verifyLastModified(employment.getLastModifiedDate());
        if (employment.getPutCode().equals(Long.valueOf(17))) {
            assertEquals("PUBLIC Department", employment.getDepartmentName());
            assertEquals("/0000-0000-0000-0003/employment/17", employment.getPath());
            assertEquals("PUBLIC", employment.getRoleTitle());
            assertEquals("APP-5555555555555555", employment.getSource().retrieveSourcePath());
            assertEquals(Visibility.PUBLIC.value(), employment.getVisibility().value());
        } else if (employment.getPutCode().equals(Long.valueOf(18))) {
            assertEquals("LIMITED Department", employment.getDepartmentName());
            assertEquals("/0000-0000-0000-0003/employment/18", employment.getPath());
            assertEquals("LIMITED", employment.getRoleTitle());
            assertEquals("APP-5555555555555555", employment.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), employment.getVisibility().value());
        } else if (employment.getPutCode().equals(Long.valueOf(19))) {
            assertEquals("PRIVATE Department", employment.getDepartmentName());
            assertEquals("/0000-0000-0000-0003/employment/19", employment.getPath());
            assertEquals("PRIVATE", employment.getRoleTitle());
            assertEquals("APP-5555555555555555", employment.getSource().retrieveSourcePath());
            assertEquals(Visibility.PRIVATE.value(), employment.getVisibility().value());
        } else if (employment.getPutCode().equals(Long.valueOf(23))) {
            assertEquals("SELF LIMITED Department", employment.getDepartmentName());
            assertEquals("/0000-0000-0000-0003/employment/23", employment.getPath());
            assertEquals("SELF LIMITED", employment.getRoleTitle());
            assertEquals("0000-0000-0000-0003", employment.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), employment.getVisibility().value());
        } else {
            fail("Invalid employment found: " + employment.getPutCode());
        }
    }
    assertNotNull(activities.getFundings());
    Utils.verifyLastModified(activities.getFundings().getLastModifiedDate());
    assertEquals(4, activities.getFundings().getFundingGroup().size());
    for (FundingGroup group : activities.getFundings().getFundingGroup()) {
        Utils.verifyLastModified(group.getLastModifiedDate());
        assertNotNull(group.getIdentifiers());
        assertNotNull(group.getIdentifiers().getExternalIdentifier());
        assertEquals(1, group.getIdentifiers().getExternalIdentifier().size());
        assertNotNull(group.getFundingSummary());
        assertEquals(1, group.getFundingSummary().size());
        FundingSummary funding = group.getFundingSummary().get(0);
        Utils.verifyLastModified(funding.getLastModifiedDate());
        if (funding.getPutCode().equals(Long.valueOf(10))) {
            assertEquals("0", funding.getDisplayIndex());
            assertNotNull(funding.getExternalIdentifiers());
            assertEquals(1, funding.getExternalIdentifiers().getExternalIdentifier().size());
            assertEquals("1", funding.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("/0000-0000-0000-0003/funding/10", funding.getPath());
            assertEquals("APP-5555555555555555", funding.getSource().retrieveSourcePath());
            assertEquals("PUBLIC", funding.getTitle().getTitle().getContent());
            assertEquals(FundingType.SALARY_AWARD.value(), funding.getType().value());
            assertEquals(Visibility.PUBLIC.value(), funding.getVisibility().value());
        } else if (funding.getPutCode().equals(Long.valueOf(11))) {
            assertEquals("1", funding.getDisplayIndex());
            assertNotNull(funding.getExternalIdentifiers());
            assertEquals(1, funding.getExternalIdentifiers().getExternalIdentifier().size());
            assertEquals("2", funding.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("/0000-0000-0000-0003/funding/11", funding.getPath());
            assertEquals("APP-5555555555555555", funding.getSource().retrieveSourcePath());
            assertEquals("LIMITED", funding.getTitle().getTitle().getContent());
            assertEquals(FundingType.SALARY_AWARD.value(), funding.getType().value());
            assertEquals(Visibility.LIMITED.value(), funding.getVisibility().value());
        } else if (funding.getPutCode().equals(Long.valueOf(12))) {
            assertEquals("2", funding.getDisplayIndex());
            assertNotNull(funding.getExternalIdentifiers());
            assertEquals(1, funding.getExternalIdentifiers().getExternalIdentifier().size());
            assertEquals("3", funding.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("/0000-0000-0000-0003/funding/12", funding.getPath());
            assertEquals("APP-5555555555555555", funding.getSource().retrieveSourcePath());
            assertEquals("PRIVATE", funding.getTitle().getTitle().getContent());
            assertEquals(FundingType.SALARY_AWARD.value(), funding.getType().value());
            assertEquals(Visibility.PRIVATE.value(), funding.getVisibility().value());
        } else if (funding.getPutCode().equals(Long.valueOf(13))) {
            assertEquals("3", funding.getDisplayIndex());
            assertNotNull(funding.getExternalIdentifiers());
            assertEquals(1, funding.getExternalIdentifiers().getExternalIdentifier().size());
            assertEquals("4", funding.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("/0000-0000-0000-0003/funding/13", funding.getPath());
            assertEquals("0000-0000-0000-0003", funding.getSource().retrieveSourcePath());
            assertEquals("SELF LIMITED", funding.getTitle().getTitle().getContent());
            assertEquals(FundingType.SALARY_AWARD.value(), funding.getType().value());
            assertEquals(Visibility.LIMITED.value(), funding.getVisibility().value());
        } else {
            fail("Invalid funding found: " + funding.getPutCode());
        }
    }
    assertNotNull(activities.getPeerReviews());
    Utils.verifyLastModified(activities.getPeerReviews().getLastModifiedDate());
    assertEquals(4, activities.getPeerReviews().getPeerReviewGroup().size());
    for (PeerReviewGroup group : activities.getPeerReviews().getPeerReviewGroup()) {
        Utils.verifyLastModified(group.getLastModifiedDate());
        assertNotNull(group.getIdentifiers());
        assertNotNull(group.getIdentifiers().getExternalIdentifier());
        assertEquals(1, group.getIdentifiers().getExternalIdentifier().size());
        assertNotNull(group.getPeerReviewSummary());
        assertEquals(1, group.getPeerReviewSummary().size());
        PeerReviewSummary peerReview = group.getPeerReviewSummary().get(0);
        Utils.verifyLastModified(peerReview.getLastModifiedDate());
        assertNotNull(peerReview.getCompletionDate());
        assertEquals("2016", peerReview.getCompletionDate().getYear().getValue());
        assertEquals("02", peerReview.getCompletionDate().getMonth().getValue());
        assertEquals("02", peerReview.getCompletionDate().getDay().getValue());
        assertNotNull(peerReview.getExternalIdentifiers());
        assertEquals(1, peerReview.getExternalIdentifiers().getExternalIdentifier().size());
        assertEquals("agr", peerReview.getExternalIdentifiers().getExternalIdentifier().get(0).getType());
        if (peerReview.getPutCode().equals(Long.valueOf(9))) {
            assertEquals("0", peerReview.getDisplayIndex());
            assertEquals("issn:0000009", peerReview.getGroupId());
            assertEquals("/0000-0000-0000-0003/peer-review/9", peerReview.getPath());
            assertEquals("work:external-identifier-id#1", peerReview.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("APP-5555555555555555", peerReview.getSource().retrieveSourcePath());
            assertEquals(Visibility.PUBLIC.value(), peerReview.getVisibility().value());
        } else if (peerReview.getPutCode().equals(Long.valueOf(10))) {
            assertEquals("1", peerReview.getDisplayIndex());
            assertEquals("issn:0000010", peerReview.getGroupId());
            assertEquals("/0000-0000-0000-0003/peer-review/10", peerReview.getPath());
            assertEquals("work:external-identifier-id#2", peerReview.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("APP-5555555555555555", peerReview.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), peerReview.getVisibility().value());
        } else if (peerReview.getPutCode().equals(Long.valueOf(11))) {
            assertEquals("2", peerReview.getDisplayIndex());
            assertEquals("issn:0000011", peerReview.getGroupId());
            assertEquals("/0000-0000-0000-0003/peer-review/11", peerReview.getPath());
            assertEquals("work:external-identifier-id#3", peerReview.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("APP-5555555555555555", peerReview.getSource().retrieveSourcePath());
            assertEquals(Visibility.PRIVATE.value(), peerReview.getVisibility().value());
        } else if (peerReview.getPutCode().equals(Long.valueOf(12))) {
            assertEquals("3", peerReview.getDisplayIndex());
            assertEquals("issn:0000012", peerReview.getGroupId());
            assertEquals("/0000-0000-0000-0003/peer-review/12", peerReview.getPath());
            assertEquals("work:external-identifier-id#4", peerReview.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("0000-0000-0000-0003", peerReview.getSource().retrieveSourcePath());
            assertEquals(Visibility.LIMITED.value(), peerReview.getVisibility().value());
        } else {
            fail("Invalid peer review found: " + peerReview.getPutCode());
        }
    }
    assertNotNull(activities.getWorks());
    Utils.verifyLastModified(activities.getWorks().getLastModifiedDate());
    assertEquals(4, activities.getWorks().getWorkGroup().size());
    for (WorkGroup group : activities.getWorks().getWorkGroup()) {
        Utils.verifyLastModified(group.getLastModifiedDate());
        assertNotNull(group.getIdentifiers());
        assertNotNull(group.getIdentifiers().getExternalIdentifier());
        assertEquals(1, group.getIdentifiers().getExternalIdentifier().size());
        assertNotNull(group.getWorkSummary());
        assertEquals(1, group.getWorkSummary().size());
        WorkSummary work = group.getWorkSummary().get(0);
        Utils.verifyLastModified(work.getLastModifiedDate());
        if (work.getPutCode().equals(Long.valueOf(11))) {
            assertEquals("0", work.getDisplayIndex());
            assertNotNull(work.getExternalIdentifiers());
            assertEquals(1, work.getExternalIdentifiers().getExternalIdentifier().size());
            assertEquals("doi", work.getExternalIdentifiers().getExternalIdentifier().get(0).getType());
            assertEquals("1", work.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("2016", work.getPublicationDate().getYear().getValue());
            assertEquals("01", work.getPublicationDate().getMonth().getValue());
            assertEquals("01", work.getPublicationDate().getDay().getValue());
            assertEquals("APP-5555555555555555", work.getSource().retrieveSourcePath());
            assertEquals("PUBLIC", work.getTitle().getTitle().getContent());
            assertEquals(WorkType.JOURNAL_ARTICLE.value(), work.getType().value());
            assertEquals(Visibility.PUBLIC.value(), work.getVisibility().value());
            assertEquals("/0000-0000-0000-0003/work/11", work.getPath());
        } else if (work.getPutCode().equals(Long.valueOf(12))) {
            assertEquals("1", work.getDisplayIndex());
            assertNotNull(work.getExternalIdentifiers());
            assertEquals(1, work.getExternalIdentifiers().getExternalIdentifier().size());
            assertEquals("doi", work.getExternalIdentifiers().getExternalIdentifier().get(0).getType());
            assertEquals("2", work.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("2016", work.getPublicationDate().getYear().getValue());
            assertEquals("01", work.getPublicationDate().getMonth().getValue());
            assertEquals("01", work.getPublicationDate().getDay().getValue());
            assertEquals("APP-5555555555555555", work.getSource().retrieveSourcePath());
            assertEquals("LIMITED", work.getTitle().getTitle().getContent());
            assertEquals(WorkType.JOURNAL_ARTICLE.value(), work.getType().value());
            assertEquals(Visibility.LIMITED.value(), work.getVisibility().value());
            assertEquals("/0000-0000-0000-0003/work/12", work.getPath());
        } else if (work.getPutCode().equals(Long.valueOf(13))) {
            assertEquals("2", work.getDisplayIndex());
            assertNotNull(work.getExternalIdentifiers());
            assertEquals(1, work.getExternalIdentifiers().getExternalIdentifier().size());
            assertEquals("doi", work.getExternalIdentifiers().getExternalIdentifier().get(0).getType());
            assertEquals("3", work.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("2016", work.getPublicationDate().getYear().getValue());
            assertEquals("01", work.getPublicationDate().getMonth().getValue());
            assertEquals("01", work.getPublicationDate().getDay().getValue());
            assertEquals("APP-5555555555555555", work.getSource().retrieveSourcePath());
            assertEquals("PRIVATE", work.getTitle().getTitle().getContent());
            assertEquals(WorkType.JOURNAL_ARTICLE.value(), work.getType().value());
            assertEquals(Visibility.PRIVATE.value(), work.getVisibility().value());
            assertEquals("/0000-0000-0000-0003/work/13", work.getPath());
        } else if (work.getPutCode().equals(Long.valueOf(14))) {
            assertEquals("3", work.getDisplayIndex());
            assertNotNull(work.getExternalIdentifiers());
            assertEquals(1, work.getExternalIdentifiers().getExternalIdentifier().size());
            assertEquals("doi", work.getExternalIdentifiers().getExternalIdentifier().get(0).getType());
            assertEquals("4", work.getExternalIdentifiers().getExternalIdentifier().get(0).getValue());
            assertEquals("2016", work.getPublicationDate().getYear().getValue());
            assertEquals("01", work.getPublicationDate().getMonth().getValue());
            assertEquals("01", work.getPublicationDate().getDay().getValue());
            assertEquals("0000-0000-0000-0003", work.getSource().retrieveSourcePath());
            assertEquals("SELF LIMITED", work.getTitle().getTitle().getContent());
            assertEquals(WorkType.JOURNAL_ARTICLE.value(), work.getType().value());
            assertEquals(Visibility.LIMITED.value(), work.getVisibility().value());
            assertEquals("/0000-0000-0000-0003/work/14", work.getPath());
        } else {
            fail("Invalid work found: " + work.getPutCode());
        }
    }
}
Also used : PeerReviewGroup(org.orcid.jaxb.model.record.summary_v2.PeerReviewGroup) Email(org.orcid.jaxb.model.record_v2.Email) Address(org.orcid.jaxb.model.record_v2.Address) Keyword(org.orcid.jaxb.model.record_v2.Keyword) OtherName(org.orcid.jaxb.model.record_v2.OtherName) History(org.orcid.jaxb.model.record_v2.History) PersonExternalIdentifier(org.orcid.jaxb.model.record_v2.PersonExternalIdentifier) FundingGroup(org.orcid.jaxb.model.record.summary_v2.FundingGroup) ActivitiesSummary(org.orcid.jaxb.model.record.summary_v2.ActivitiesSummary) Response(javax.ws.rs.core.Response) WorkGroup(org.orcid.jaxb.model.record.summary_v2.WorkGroup) WorkSummary(org.orcid.jaxb.model.record.summary_v2.WorkSummary) EducationSummary(org.orcid.jaxb.model.record.summary_v2.EducationSummary) PeerReviewSummary(org.orcid.jaxb.model.record.summary_v2.PeerReviewSummary) OrcidIdentifier(org.orcid.jaxb.model.common_v2.OrcidIdentifier) FundingSummary(org.orcid.jaxb.model.record.summary_v2.FundingSummary) EmploymentSummary(org.orcid.jaxb.model.record.summary_v2.EmploymentSummary) GroupIdRecord(org.orcid.jaxb.model.groupid_v2.GroupIdRecord) Record(org.orcid.jaxb.model.record_v2.Record) ResearcherUrl(org.orcid.jaxb.model.record_v2.ResearcherUrl) Person(org.orcid.jaxb.model.record_v2.Person) DBUnitTest(org.orcid.test.DBUnitTest) Test(org.junit.Test)

Example 23 with FundingGroup

use of org.orcid.jaxb.model.record.summary_rc3.FundingGroup in project ORCID-Source by ORCID.

the class MemberV2ApiServiceDelegator_ReadRecordTest method testActivities.

private void testActivities(ActivitiesSummary as, String orcid) {
    boolean found1 = false, found2 = false, found3 = false;
    // This is more an utility that will work only for 0000-0000-0000-0003
    assertEquals("0000-0000-0000-0003", orcid);
    assertNotNull(as);
    assertEquals("/0000-0000-0000-0003/activities", as.getPath());
    Utils.verifyLastModified(as.getLastModifiedDate());
    assertNotNull(as.getEducations());
    assertEquals(3, as.getEducations().getSummaries().size());
    for (EducationSummary element : as.getEducations().getSummaries()) {
        if (element.getPutCode().equals(Long.valueOf(20))) {
            found1 = true;
        } else if (element.getPutCode().equals(Long.valueOf(21))) {
            found2 = true;
        } else if (element.getPutCode().equals(Long.valueOf(22))) {
            found3 = true;
        } else {
            fail("Invalid put code " + element.getPutCode());
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    found1 = found2 = found3 = false;
    assertNotNull(as.getEmployments());
    assertEquals(3, as.getEmployments().getSummaries().size());
    for (EmploymentSummary element : as.getEmployments().getSummaries()) {
        if (element.getPutCode().equals(Long.valueOf(17))) {
            found1 = true;
        } else if (element.getPutCode().equals(Long.valueOf(18))) {
            found2 = true;
        } else if (element.getPutCode().equals(Long.valueOf(19))) {
            found3 = true;
        } else {
            fail("Invalid put code " + element.getPutCode());
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    found1 = found2 = found3 = false;
    assertNotNull(as.getFundings());
    assertEquals(3, as.getFundings().getFundingGroup().size());
    for (FundingGroup group : as.getFundings().getFundingGroup()) {
        assertEquals(1, group.getFundingSummary().size());
        FundingSummary element = group.getFundingSummary().get(0);
        if (element.getPutCode().equals(Long.valueOf(10))) {
            found1 = true;
        } else if (element.getPutCode().equals(Long.valueOf(11))) {
            found2 = true;
        } else if (element.getPutCode().equals(Long.valueOf(12))) {
            found3 = true;
        } else {
            fail("Invalid put code " + element.getPutCode());
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    found1 = found2 = found3 = false;
    assertNotNull(as.getPeerReviews());
    assertEquals(3, as.getPeerReviews().getPeerReviewGroup().size());
    for (PeerReviewGroup group : as.getPeerReviews().getPeerReviewGroup()) {
        assertEquals(1, group.getPeerReviewSummary().size());
        PeerReviewSummary element = group.getPeerReviewSummary().get(0);
        if (element.getPutCode().equals(Long.valueOf(9))) {
            found1 = true;
        } else if (element.getPutCode().equals(Long.valueOf(10))) {
            found2 = true;
        } else if (element.getPutCode().equals(Long.valueOf(11))) {
            found3 = true;
        } else {
            fail("Invalid put code " + element.getPutCode());
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    found1 = found2 = found3 = false;
    assertNotNull(as.getWorks());
    assertEquals(3, as.getWorks().getWorkGroup().size());
    for (WorkGroup group : as.getWorks().getWorkGroup()) {
        assertEquals(1, group.getWorkSummary().size());
        WorkSummary element = group.getWorkSummary().get(0);
        if (element.getPutCode().equals(Long.valueOf(11))) {
            found1 = true;
        } else if (element.getPutCode().equals(Long.valueOf(12))) {
            found2 = true;
        } else if (element.getPutCode().equals(Long.valueOf(13))) {
            found3 = true;
        } else {
            fail("Invalid put code " + element.getPutCode());
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    found1 = found2 = found3 = false;
}
Also used : PeerReviewGroup(org.orcid.jaxb.model.record.summary_v2.PeerReviewGroup) WorkGroup(org.orcid.jaxb.model.record.summary_v2.WorkGroup) WorkSummary(org.orcid.jaxb.model.record.summary_v2.WorkSummary) EducationSummary(org.orcid.jaxb.model.record.summary_v2.EducationSummary) PeerReviewSummary(org.orcid.jaxb.model.record.summary_v2.PeerReviewSummary) FundingSummary(org.orcid.jaxb.model.record.summary_v2.FundingSummary) EmploymentSummary(org.orcid.jaxb.model.record.summary_v2.EmploymentSummary) FundingGroup(org.orcid.jaxb.model.record.summary_v2.FundingGroup)

Example 24 with FundingGroup

use of org.orcid.jaxb.model.record.summary_rc3.FundingGroup in project ORCID-Source by ORCID.

the class MemberV2Test method testViewActivitiesSummaries.

@Test
public void testViewActivitiesSummaries() throws JSONException, InterruptedException, URISyntaxException {
    long time = System.currentTimeMillis();
    String accessTokenForClient1 = getAccessToken();
    String accessTokenForClient2 = getAccessToken(getUser1OrcidId(), getUser1Password(), getScopes(), getClient2ClientId(), getClient2ClientSecret(), getClient2RedirectUri());
    Education education = (Education) unmarshallFromPath("/record_2.0_rc3/samples/education-2.0_rc3.xml", Education.class);
    education.setPutCode(null);
    education.setVisibility(Visibility.PUBLIC);
    Employment employment = (Employment) unmarshallFromPath("/record_2.0_rc3/samples/employment-2.0_rc3.xml", Employment.class);
    employment.setPutCode(null);
    employment.setVisibility(Visibility.PUBLIC);
    Funding funding = (Funding) unmarshallFromPath("/record_2.0_rc3/samples/funding-2.0_rc3.xml", Funding.class);
    funding.setPutCode(null);
    funding.setVisibility(Visibility.PUBLIC);
    funding.getExternalIdentifiers().getExternalIdentifier().clear();
    ExternalID fExtId = new ExternalID();
    fExtId.setType(FundingExternalIdentifierType.GRANT_NUMBER.value());
    fExtId.setValue("Funding Id " + time);
    fExtId.setRelationship(Relationship.SELF);
    funding.getExternalIdentifiers().getExternalIdentifier().add(fExtId);
    Work work = (Work) unmarshallFromPath("/record_2.0_rc3/samples/work-2.0_rc3.xml", Work.class);
    work.setPutCode(null);
    work.setVisibility(Visibility.PUBLIC);
    work.getExternalIdentifiers().getExternalIdentifier().clear();
    ExternalID wExtId = new ExternalID();
    wExtId.setValue("Work Id " + time);
    wExtId.setType(WorkExternalIdentifierType.AGR.value());
    wExtId.setRelationship(Relationship.SELF);
    work.getExternalIdentifiers().getExternalIdentifier().add(wExtId);
    PeerReview peerReview = (PeerReview) unmarshallFromPath("/record_2.0_rc3/samples/peer-review-2.0_rc3.xml", PeerReview.class);
    peerReview.setPutCode(null);
    peerReview.setVisibility(Visibility.PUBLIC);
    peerReview.setGroupId(groupRecords.get(0).getGroupId());
    peerReview.getExternalIdentifiers().getExternalIdentifier().clear();
    ExternalID pExtId = new ExternalID();
    pExtId.setValue("Work Id " + time);
    pExtId.setType(WorkExternalIdentifierType.AGR.value());
    pExtId.setRelationship(Relationship.SELF);
    peerReview.getExternalIdentifiers().getExternalIdentifier().add(pExtId);
    ClientResponse postResponse = memberV2ApiClient.createEducationXml(this.getUser1OrcidId(), education, accessTokenForClient1);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    postResponse = memberV2ApiClient.createEmploymentXml(this.getUser1OrcidId(), employment, accessTokenForClient1);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    /**
         * Add 3 fundings 1 and 2 get grouped together 3 in another group
         * because it have different ext ids
         * **/
    // Add 1, the default funding
    postResponse = memberV2ApiClient.createFundingXml(this.getUser1OrcidId(), funding, accessTokenForClient1);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    funding.getTitle().getTitle().setContent("Funding # 2");
    ExternalID fExtId3 = new ExternalID();
    fExtId3.setType(FundingExternalIdentifierType.GRANT_NUMBER.value());
    fExtId3.setValue("extId3Value" + time);
    fExtId3.setRelationship(Relationship.SELF);
    funding.getExternalIdentifiers().getExternalIdentifier().add(fExtId3);
    // Add 2, with the same ext ids +1
    postResponse = memberV2ApiClient.createFundingXml(this.getUser1OrcidId(), funding, accessTokenForClient2);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    funding.getTitle().getTitle().setContent("Funding # 3");
    ExternalID fExtId4 = new ExternalID();
    fExtId4.setType(FundingExternalIdentifierType.GRANT_NUMBER.value());
    fExtId4.setValue("extId4Value" + time);
    fExtId4.setRelationship(Relationship.SELF);
    funding.getExternalIdentifiers().getExternalIdentifier().clear();
    funding.getExternalIdentifiers().getExternalIdentifier().add(fExtId4);
    // Add 3, with different ext ids
    postResponse = memberV2ApiClient.createFundingXml(this.getUser1OrcidId(), funding, accessTokenForClient1);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    /**
         * Add 3 works 1 and 2 get grouped together 3 in another group because
         * it have different ext ids 
         **/
    // Add 1, the default work
    postResponse = memberV2ApiClient.createWorkXml(this.getUser1OrcidId(), work, accessTokenForClient1);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    work.getWorkTitle().getTitle().setContent("Work # 2");
    ExternalID wExtId2 = new ExternalID();
    wExtId2.setType(WorkExternalIdentifierType.DOI.value());
    wExtId2.setValue("doi-ext-id" + time);
    wExtId2.setRelationship(Relationship.SELF);
    work.getExternalIdentifiers().getExternalIdentifier().add(wExtId2);
    // Add 2, with the same ext ids +1
    postResponse = memberV2ApiClient.createWorkXml(this.getUser1OrcidId(), work, accessTokenForClient2);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    work.getWorkTitle().getTitle().setContent("Work # 3");
    ExternalID wExtId3 = new ExternalID();
    wExtId3.setType(WorkExternalIdentifierType.EID.value());
    wExtId3.setValue("eid-ext-id" + time);
    wExtId3.setRelationship(Relationship.SELF);
    work.getWorkExternalIdentifiers().getExternalIdentifier().clear();
    work.getWorkExternalIdentifiers().getExternalIdentifier().add(wExtId3);
    // Add 3, with different ext ids
    postResponse = memberV2ApiClient.createWorkXml(this.getUser1OrcidId(), work, accessTokenForClient1);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    /**
         * Add 4 peer reviews 1 and 2 get grouped together 3 in another group because
         * it have different group id 4 in another group because it doesnt have
         * any group id
         **/
    // Add 1, the default peer review
    postResponse = memberV2ApiClient.createPeerReviewXml(this.getUser1OrcidId(), peerReview, accessTokenForClient1);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    peerReview.setGroupId(groupRecords.get(0).getGroupId());
    peerReview.getSubjectName().getTitle().setContent("PeerReview # 2");
    peerReview.getCompletionDate().setDay(new Day(2));
    peerReview.getCompletionDate().setMonth(new Month(2));
    peerReview.getCompletionDate().setYear(new Year(2016));
    peerReview.setUrl(new Url("http://peer_review/2"));
    ExternalID pExtId2 = new ExternalID();
    pExtId2.setType(WorkExternalIdentifierType.DOI.value());
    pExtId2.setValue("doi-ext-id" + System.currentTimeMillis());
    pExtId2.setRelationship(Relationship.SELF);
    for (ExternalID wei : peerReview.getExternalIdentifiers().getExternalIdentifier()) {
        wei.setValue(wei.getValue() + System.currentTimeMillis());
    }
    peerReview.getExternalIdentifiers().getExternalIdentifier().add(pExtId2);
    // Add 2, with the same ext ids +1
    postResponse = memberV2ApiClient.createPeerReviewXml(this.getUser1OrcidId(), peerReview, accessTokenForClient2);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    peerReview.setGroupId(groupRecords.get(1).getGroupId());
    peerReview.getSubjectName().getTitle().setContent("PeerReview # 3");
    peerReview.getCompletionDate().setDay(new Day(3));
    peerReview.getCompletionDate().setMonth(new Month(3));
    peerReview.getCompletionDate().setYear(new Year(2017));
    peerReview.setUrl(new Url("http://peer_review/3"));
    ExternalID pExtId3 = new ExternalID();
    pExtId3.setType(WorkExternalIdentifierType.EID.value());
    pExtId3.setValue("eid-ext-id" + System.currentTimeMillis());
    pExtId3.setRelationship(Relationship.SELF);
    peerReview.getExternalIdentifiers().getExternalIdentifier().clear();
    peerReview.getExternalIdentifiers().getExternalIdentifier().add(pExtId3);
    // Add 3, with different ext ids
    postResponse = memberV2ApiClient.createPeerReviewXml(this.getUser1OrcidId(), peerReview, accessTokenForClient1);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    peerReview.setGroupId(groupRecords.get(0).getGroupId());
    peerReview.getSubjectName().getTitle().setContent("PeerReview # 4");
    peerReview.getCompletionDate().setDay(new Day(4));
    peerReview.getCompletionDate().setMonth(new Month(4));
    peerReview.getCompletionDate().setYear(new Year(2018));
    peerReview.setUrl(new Url("http://peer_review/4"));
    ExternalID pExtId4 = new ExternalID();
    pExtId4.setType(WorkExternalIdentifierType.EID.value());
    pExtId4.setValue("eid-ext-id" + System.currentTimeMillis());
    pExtId4.setRelationship(Relationship.SELF);
    peerReview.getExternalIdentifiers().getExternalIdentifier().clear();
    peerReview.getExternalIdentifiers().getExternalIdentifier().add(pExtId4);
    // Add 4, without ext ids
    postResponse = memberV2ApiClient.createPeerReviewXml(this.getUser1OrcidId(), peerReview, accessTokenForClient1);
    assertNotNull(postResponse);
    assertEquals(Response.Status.CREATED.getStatusCode(), postResponse.getStatus());
    /**
         * Now, get the summaries and verify the following: - Education summary
         * is complete - Employment summary is complete - There are 3 groups of
         * fundings -- One group with 2 fundings -- One group with one funding
         * with ext ids -- One group with one funding without ext ids
         * 
         * - There are 3 groups of works -- One group with 2 works -- One group
         * with one work with ext ids -- One group with one work without ext ids
         * 
         * peer review -- There are 3 groups of peer reviews -- One group with 2 
         * peer reviews -- One groups with one peer review and ext ids -- One 
         * group with one peer review but without ext ids 
         **/
    ClientResponse activitiesResponse = memberV2ApiClient.viewActivities(this.getUser1OrcidId(), accessTokenForClient1);
    assertEquals(Response.Status.OK.getStatusCode(), activitiesResponse.getStatus());
    ActivitiesSummary activities = activitiesResponse.getEntity(ActivitiesSummary.class);
    assertNotNull(activities);
    assertFalse(activities.getEducations().getSummaries().isEmpty());
    boolean found = false;
    Long educationPutCode = null;
    for (EducationSummary summary : activities.getEducations().getSummaries()) {
        if (summary.getRoleTitle() != null && summary.getRoleTitle().equals("education:role-title")) {
            assertEquals("education:department-name", summary.getDepartmentName());
            assertEquals(FuzzyDate.valueOf(1848, 2, 2), summary.getStartDate());
            assertEquals(FuzzyDate.valueOf(1848, 2, 2), summary.getEndDate());
            educationPutCode = summary.getPutCode();
            found = true;
            break;
        }
    }
    assertTrue("Education not found", found);
    assertFalse(activities.getEmployments().getSummaries().isEmpty());
    found = false;
    Long employmentPutCode = null;
    List<Long> fundingPutCodes = new ArrayList<Long>();
    for (EmploymentSummary summary : activities.getEmployments().getSummaries()) {
        if (summary.getRoleTitle() != null && summary.getRoleTitle().equals("employment:role-title")) {
            assertEquals("employment:department-name", summary.getDepartmentName());
            assertEquals(FuzzyDate.valueOf(1848, 2, 2), summary.getStartDate());
            assertEquals(FuzzyDate.valueOf(1848, 2, 2), summary.getEndDate());
            employmentPutCode = summary.getPutCode();
            found = true;
            break;
        }
    }
    assertTrue("Employment not found", found);
    assertNotNull(activities.getFundings());
    boolean found1 = false, found2 = false, found3 = false, found4 = false;
    for (FundingGroup group : activities.getFundings().getFundingGroup()) {
        for (FundingSummary summary : group.getFundingSummary()) {
            if (summary.getTitle().getTitle().getContent().equals("common:title")) {
                found1 = true;
                fundingPutCodes.add(summary.getPutCode());
            } else if (summary.getTitle().getTitle().getContent().equals("Funding # 2")) {
                found2 = true;
                fundingPutCodes.add(summary.getPutCode());
            } else if (summary.getTitle().getTitle().getContent().equals("Funding # 3")) {
                found3 = true;
                fundingPutCodes.add(summary.getPutCode());
            }
        }
    }
    assertTrue("One of the fundings was not found: 1(" + found1 + ") 2(" + found2 + ") 3(" + found3 + ")", found1 == found2 == found3 == true);
    assertNotNull(activities.getWorks());
    found1 = found2 = found3 = false;
    List<Long> worksPutCodes = new ArrayList<Long>();
    for (WorkGroup group : activities.getWorks().getWorkGroup()) {
        for (WorkSummary summary : group.getWorkSummary()) {
            if (summary.getTitle().getTitle().getContent().equals("common:title")) {
                found1 = true;
                worksPutCodes.add(summary.getPutCode());
            } else if (summary.getTitle().getTitle().getContent().equals("Work # 2")) {
                found2 = true;
                worksPutCodes.add(summary.getPutCode());
            } else if (summary.getTitle().getTitle().getContent().equals("Work # 3")) {
                found3 = true;
                worksPutCodes.add(summary.getPutCode());
            } else {
                fail("Couldnt find work with title: " + summary.getTitle().getTitle().getContent());
            }
        }
    }
    assertTrue("One of the works was not found: 1(" + found1 + ") 2(" + found2 + ") 3(" + found3 + ")", found1 == found2 == found3 == true);
    assertNotNull(activities.getPeerReviews());
    found1 = found2 = found3 = found4 = false;
    List<Long> peerReviewPutCodes = new ArrayList<Long>();
    for (PeerReviewGroup group : activities.getPeerReviews().getPeerReviewGroup()) {
        for (PeerReviewSummary summary : group.getPeerReviewSummary()) {
            if (summary.getCompletionDate() != null && summary.getCompletionDate().getYear() != null) {
                if (summary.getCompletionDate().getYear().getValue().equals("1848")) {
                    found1 = true;
                    peerReviewPutCodes.add(summary.getPutCode());
                } else if (summary.getCompletionDate().getYear().getValue().equals("2016")) {
                    found2 = true;
                    peerReviewPutCodes.add(summary.getPutCode());
                } else if (summary.getCompletionDate().getYear().getValue().equals("2017")) {
                    found3 = true;
                    peerReviewPutCodes.add(summary.getPutCode());
                } else if (summary.getCompletionDate().getYear().getValue().equals("2018")) {
                    found4 = true;
                    peerReviewPutCodes.add(summary.getPutCode());
                }
            }
        }
    }
    assertTrue("One of the peer reviews was not found: 1(" + found1 + ") 2(" + found2 + ") 3(" + found3 + ") 4(" + found4 + ")", found1 == found2 == found3 == found4 == true);
    //Delete all created elements
    ClientResponse deleteResponse = memberV2ApiClient.deleteEmploymentXml(this.getUser1OrcidId(), employmentPutCode, accessTokenForClient1);
    assertNotNull(deleteResponse);
    assertEquals(Response.Status.NO_CONTENT.getStatusCode(), deleteResponse.getStatus());
    deleteResponse = memberV2ApiClient.deleteEducationXml(this.getUser1OrcidId(), educationPutCode, accessTokenForClient1);
    assertNotNull(deleteResponse);
    assertEquals(Response.Status.NO_CONTENT.getStatusCode(), deleteResponse.getStatus());
    for (Long putCode : fundingPutCodes) {
        deleteResponse = memberV2ApiClient.deleteFundingXml(this.getUser1OrcidId(), putCode, accessTokenForClient1);
        assertNotNull(deleteResponse);
        if (Response.Status.NO_CONTENT.getStatusCode() != deleteResponse.getStatus()) {
            //It belongs to client2, so, delete it with client2 token
            deleteResponse = memberV2ApiClient.deleteFundingXml(this.getUser1OrcidId(), putCode, accessTokenForClient2);
            assertNotNull(deleteResponse);
            assertEquals("Unable to delete funding " + putCode, Response.Status.NO_CONTENT.getStatusCode(), deleteResponse.getStatus());
        }
    }
    for (Long putCode : worksPutCodes) {
        deleteResponse = memberV2ApiClient.deleteWorkXml(this.getUser1OrcidId(), putCode, accessTokenForClient1);
        assertNotNull(deleteResponse);
        if (Response.Status.NO_CONTENT.getStatusCode() != deleteResponse.getStatus()) {
            //It belongs to client2, so, delete it with client2 token
            deleteResponse = memberV2ApiClient.deleteWorkXml(this.getUser1OrcidId(), putCode, accessTokenForClient2);
            assertNotNull(deleteResponse);
            assertEquals("Unable to delete work " + putCode, Response.Status.NO_CONTENT.getStatusCode(), deleteResponse.getStatus());
        }
    }
    for (Long putCode : peerReviewPutCodes) {
        deleteResponse = memberV2ApiClient.deletePeerReviewXml(this.getUser1OrcidId(), putCode, accessTokenForClient1);
        assertNotNull(deleteResponse);
        if (Response.Status.NO_CONTENT.getStatusCode() != deleteResponse.getStatus()) {
            //It belongs to client2, so, delete it with client2 token
            deleteResponse = memberV2ApiClient.deletePeerReviewXml(this.getUser1OrcidId(), putCode, accessTokenForClient2);
            assertNotNull(deleteResponse);
            assertEquals("Unable to delete peer review " + putCode, Response.Status.NO_CONTENT.getStatusCode(), deleteResponse.getStatus());
        }
    }
}
Also used : ClientResponse(com.sun.jersey.api.client.ClientResponse) Funding(org.orcid.jaxb.model.record_rc3.Funding) ExternalID(org.orcid.jaxb.model.record_rc3.ExternalID) ArrayList(java.util.ArrayList) Url(org.orcid.jaxb.model.common_rc3.Url) ActivitiesSummary(org.orcid.jaxb.model.record.summary_rc3.ActivitiesSummary) Month(org.orcid.jaxb.model.common_rc3.Month) WorkGroup(org.orcid.jaxb.model.record.summary_rc3.WorkGroup) WorkSummary(org.orcid.jaxb.model.record.summary_rc3.WorkSummary) Education(org.orcid.jaxb.model.record_rc3.Education) Employment(org.orcid.jaxb.model.record_rc3.Employment) Work(org.orcid.jaxb.model.record_rc3.Work) FundingSummary(org.orcid.jaxb.model.record.summary_rc3.FundingSummary) PeerReviewGroup(org.orcid.jaxb.model.record.summary_rc3.PeerReviewGroup) FundingGroup(org.orcid.jaxb.model.record.summary_rc3.FundingGroup) Year(org.orcid.jaxb.model.common_rc3.Year) EducationSummary(org.orcid.jaxb.model.record.summary_rc3.EducationSummary) PeerReviewSummary(org.orcid.jaxb.model.record.summary_rc3.PeerReviewSummary) EmploymentSummary(org.orcid.jaxb.model.record.summary_rc3.EmploymentSummary) Day(org.orcid.jaxb.model.common_rc3.Day) PeerReview(org.orcid.jaxb.model.record_rc3.PeerReview) Test(org.junit.Test)

Example 25 with FundingGroup

use of org.orcid.jaxb.model.record.summary_rc3.FundingGroup in project ORCID-Source by ORCID.

the class MemberV2ApiServiceDelegator_FundingTest method testAddFunding.

@Test
public void testAddFunding() {
    SecurityContextTestUtils.setUpSecurityContext("4444-4444-4444-4447", ScopePathType.READ_LIMITED, ScopePathType.ACTIVITIES_UPDATE);
    Response response = serviceDelegator.viewActivities("4444-4444-4444-4447");
    assertNotNull(response);
    ActivitiesSummary summary = (ActivitiesSummary) response.getEntity();
    assertNotNull(summary);
    Utils.verifyLastModified(summary.getLastModifiedDate());
    assertNotNull(summary.getFundings());
    Utils.verifyLastModified(summary.getFundings().getLastModifiedDate());
    assertNotNull(summary.getFundings().getFundingGroup());
    assertNotNull(summary.getFundings().getFundingGroup().get(0));
    Utils.verifyLastModified(summary.getLastModifiedDate());
    assertNotNull(summary.getFundings().getFundingGroup().get(0).getFundingSummary());
    assertEquals(1, summary.getFundings().getFundingGroup().get(0).getFundingSummary().size());
    assertNotNull(summary.getFundings().getFundingGroup().get(0).getFundingSummary().get(0));
    Utils.verifyLastModified(summary.getLastModifiedDate());
    assertNotNull(summary.getFundings().getFundingGroup().get(0).getFundingSummary().get(0).getTitle());
    assertNotNull(summary.getFundings().getFundingGroup().get(0).getFundingSummary().get(0).getTitle().getTitle());
    assertEquals("Public Funding # 1", summary.getFundings().getFundingGroup().get(0).getFundingSummary().get(0).getTitle().getTitle().getContent());
    Funding newFunding = Utils.getFunding();
    response = serviceDelegator.createFunding("4444-4444-4444-4447", newFunding);
    assertNotNull(response);
    assertEquals(Response.Status.CREATED.getStatusCode(), response.getStatus());
    response = serviceDelegator.viewActivities("4444-4444-4444-4447");
    assertNotNull(response);
    summary = (ActivitiesSummary) response.getEntity();
    assertNotNull(summary);
    Utils.verifyLastModified(summary.getLastModifiedDate());
    assertNotNull(summary.getFundings());
    assertNotNull(summary.getFundings().getFundingGroup());
    assertEquals(2, summary.getFundings().getFundingGroup().size());
    boolean haveOld = false;
    boolean haveNew = false;
    for (FundingGroup group : summary.getFundings().getFundingGroup()) {
        assertNotNull(group.getFundingSummary().get(0));
        assertNotNull(group.getFundingSummary().get(0).getTitle());
        assertNotNull(group.getFundingSummary().get(0).getTitle().getTitle());
        assertNotNull(group.getFundingSummary().get(0).getTitle().getTitle().getContent());
        if ("Public Funding # 1".equals(group.getFundingSummary().get(0).getTitle().getTitle().getContent())) {
            haveOld = true;
        } else if ("Public Funding # 2".equals(group.getFundingSummary().get(0).getTitle().getTitle().getContent())) {
            haveNew = true;
        }
    }
    assertTrue(haveOld);
    assertTrue(haveNew);
}
Also used : Response(javax.ws.rs.core.Response) Funding(org.orcid.jaxb.model.record_v2.Funding) FundingGroup(org.orcid.jaxb.model.record.summary_v2.FundingGroup) ActivitiesSummary(org.orcid.jaxb.model.record.summary_v2.ActivitiesSummary) DBUnitTest(org.orcid.test.DBUnitTest) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)22 FundingGroup (org.orcid.jaxb.model.record.summary_v2.FundingGroup)20 ClientResponse (com.sun.jersey.api.client.ClientResponse)19 FundingSummary (org.orcid.jaxb.model.record.summary_v2.FundingSummary)18 PeerReviewGroup (org.orcid.jaxb.model.record.summary_v2.PeerReviewGroup)13 WorkGroup (org.orcid.jaxb.model.record.summary_v2.WorkGroup)13 EducationSummary (org.orcid.jaxb.model.record.summary_v2.EducationSummary)12 EmploymentSummary (org.orcid.jaxb.model.record.summary_v2.EmploymentSummary)12 PeerReviewSummary (org.orcid.jaxb.model.record.summary_v2.PeerReviewSummary)12 WorkSummary (org.orcid.jaxb.model.record.summary_v2.WorkSummary)12 Fundings (org.orcid.jaxb.model.record.summary_v2.Fundings)9 ArrayList (java.util.ArrayList)7 ActivitiesSummary (org.orcid.jaxb.model.record.summary_v2.ActivitiesSummary)7 Response (javax.ws.rs.core.Response)5 Educations (org.orcid.jaxb.model.record.summary_v2.Educations)5 Employments (org.orcid.jaxb.model.record.summary_v2.Employments)5 PeerReviews (org.orcid.jaxb.model.record.summary_v2.PeerReviews)5 Works (org.orcid.jaxb.model.record.summary_v2.Works)5 Address (org.orcid.jaxb.model.record_v2.Address)5 Email (org.orcid.jaxb.model.record_v2.Email)5