use of org.orcid.jaxb.model.v3.dev1.record.Funding in project ORCID-Source by ORCID.
the class JpaJaxbFundingAdapterTest method getFunding.
private Funding getFunding(boolean full) throws JAXBException {
JAXBContext context = JAXBContext.newInstance(new Class[] { Funding.class });
Unmarshaller unmarshaller = context.createUnmarshaller();
String name = "/record_2.0/samples/read_samples/funding-2.0.xml";
if (full) {
name = "/record_2.0/samples/read_samples/funding-full-2.0.xml";
}
InputStream inputStream = getClass().getResourceAsStream(name);
return (Funding) unmarshaller.unmarshal(inputStream);
}
use of org.orcid.jaxb.model.v3.dev1.record.Funding in project ORCID-Source by ORCID.
the class MemberV3ApiServiceDelegator_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());
}
}
}
use of org.orcid.jaxb.model.v3.dev1.record.Funding in project ORCID-Source by ORCID.
the class FundingForm method valueOf.
public static FundingForm valueOf(Funding funding) {
FundingForm result = new FundingForm();
result.setDateSortString(PojoUtil.createDateSortString(funding.getStartDate(), funding.getEndDate()));
if (funding.getPutCode() != null)
result.setPutCode(Text.valueOf(funding.getPutCode()));
if (funding.getAmount() != null) {
if (StringUtils.isNotEmpty(funding.getAmount().getContent())) {
String cleanNumber = funding.getAmount().getContent().trim();
result.setAmount(Text.valueOf(cleanNumber));
}
if (funding.getAmount().getCurrencyCode() != null)
result.setCurrencyCode(Text.valueOf(funding.getAmount().getCurrencyCode()));
else
result.setCurrencyCode(new Text());
} else {
result.setAmount(new Text());
result.setCurrencyCode(new Text());
}
if (StringUtils.isNotEmpty(funding.getDescription()))
result.setDescription(Text.valueOf(funding.getDescription()));
else
result.setDescription(new Text());
if (funding.getStartDate() != null)
result.setStartDate(Date.valueOf(funding.getStartDate()));
if (funding.getEndDate() != null)
result.setEndDate(Date.valueOf(funding.getEndDate()));
if (funding.getType() != null)
result.setFundingType(Text.valueOf(funding.getType().value()));
else
result.setFundingType(new Text());
if (funding.getOrganizationDefinedType() != null) {
OrgDefinedFundingSubType OrgDefinedFundingSubType = new OrgDefinedFundingSubType();
OrgDefinedFundingSubType.setSubtype(Text.valueOf(funding.getOrganizationDefinedType().getContent()));
OrgDefinedFundingSubType.setAlreadyIndexed(false);
result.setOrganizationDefinedFundingSubType(OrgDefinedFundingSubType);
}
Source source = funding.getSource();
if (source != null) {
result.setSource(source.retrieveSourcePath());
if (source.getSourceName() != null) {
result.setSourceName(source.getSourceName().getContent());
}
}
if (funding.getTitle() != null) {
FundingTitleForm fundingTitle = new FundingTitleForm();
if (funding.getTitle().getTitle() != null)
fundingTitle.setTitle(Text.valueOf(funding.getTitle().getTitle().getContent()));
else
fundingTitle.setTitle(new Text());
if (funding.getTitle().getTranslatedTitle() != null) {
TranslatedTitleForm translatedTitle = new TranslatedTitleForm();
translatedTitle.setContent(funding.getTitle().getTranslatedTitle().getContent());
translatedTitle.setLanguageCode(funding.getTitle().getTranslatedTitle().getLanguageCode());
fundingTitle.setTranslatedTitle(translatedTitle);
}
result.setFundingTitle(fundingTitle);
} else {
FundingTitleForm fundingTitle = new FundingTitleForm();
fundingTitle.setTitle(new Text());
result.setFundingTitle(fundingTitle);
}
if (funding.getUrl() != null)
result.setUrl(Text.valueOf(funding.getUrl().getValue()));
else
result.setUrl(new Text());
if (funding.getVisibility() != null)
result.setVisibility(Visibility.valueOf(funding.getVisibility()));
// Set the disambiguated organization
Organization organization = funding.getOrganization();
result.setFundingName(Text.valueOf(organization.getName()));
DisambiguatedOrganization disambiguatedOrganization = organization.getDisambiguatedOrganization();
if (disambiguatedOrganization != null) {
if (StringUtils.isNotEmpty(disambiguatedOrganization.getDisambiguatedOrganizationIdentifier())) {
result.setDisambiguatedFundingSourceId(Text.valueOf(disambiguatedOrganization.getDisambiguatedOrganizationIdentifier()));
result.setDisambiguationSource(Text.valueOf(disambiguatedOrganization.getDisambiguationSource()));
}
}
OrganizationAddress organizationAddress = organization.getAddress();
if (organizationAddress != null) {
if (!PojoUtil.isEmpty(organizationAddress.getCity()))
result.setCity(Text.valueOf(organizationAddress.getCity()));
else
result.setCity(new Text());
if (!PojoUtil.isEmpty(organizationAddress.getRegion()))
result.setRegion(Text.valueOf(organizationAddress.getRegion()));
else
result.setRegion(new Text());
if (organizationAddress.getCountry() != null)
result.setCountry(Text.valueOf(organizationAddress.getCountry().value()));
else
result.setCountry(new Text());
} else {
result.setCountry(new Text());
result.setCity(new Text());
result.setRegion(new Text());
}
// Set contributors
if (funding.getContributors() != null) {
List<Contributor> contributors = new ArrayList<Contributor>();
for (FundingContributor fContributor : funding.getContributors().getContributor()) {
Contributor contributor = Contributor.valueOf(fContributor);
contributors.add(contributor);
}
result.setContributors(contributors);
}
List<FundingExternalIdentifierForm> externalIdentifiersList = new ArrayList<FundingExternalIdentifierForm>();
// Set external identifiers
if (funding.getExternalIdentifiers() != null) {
for (ExternalID fExternalIdentifier : funding.getExternalIdentifiers().getExternalIdentifier()) {
FundingExternalIdentifierForm fundingExternalIdentifierForm = FundingExternalIdentifierForm.valueOf(fExternalIdentifier);
externalIdentifiersList.add(fundingExternalIdentifierForm);
}
}
result.setExternalIdentifiers(externalIdentifiersList);
result.setCreatedDate(Date.valueOf(funding.getCreatedDate()));
result.setLastModified(Date.valueOf(funding.getLastModifiedDate()));
return result;
}
use of org.orcid.jaxb.model.v3.dev1.record.Funding in project ORCID-Source by ORCID.
the class JpaJaxbFundingAdapterTest method toFundingEntityTest.
@Test
public void toFundingEntityTest() throws JAXBException {
Funding f = getFunding(true);
assertNotNull(f);
ProfileFundingEntity pfe = jpaJaxbFundingAdapter.toProfileFundingEntity(f);
assertNotNull(pfe);
// Enums
assertEquals(Visibility.PRIVATE.value(), pfe.getVisibility().value());
assertEquals(FundingType.GRANT.value(), pfe.getType().value());
// General info
assertEquals(Long.valueOf(0), pfe.getId());
assertEquals("common:title", pfe.getTitle());
assertEquals("common:translated-title", pfe.getTranslatedTitle());
assertEquals("en", pfe.getTranslatedTitleLanguageCode());
assertEquals("funding:organization-defined-type", pfe.getOrganizationDefinedType());
assertEquals("funding:short-description", pfe.getDescription());
assertEquals("1234", pfe.getNumericAmount().toString());
assertEquals("ADP", pfe.getCurrencyCode());
assertEquals("http://tempuri.org", pfe.getUrl());
// Dates
assertEquals(Integer.valueOf(2), pfe.getStartDate().getDay());
assertEquals(Integer.valueOf(2), pfe.getStartDate().getMonth());
assertEquals(Integer.valueOf(1848), pfe.getStartDate().getYear());
assertEquals(Integer.valueOf(2), pfe.getEndDate().getDay());
assertEquals(Integer.valueOf(2), pfe.getEndDate().getMonth());
assertEquals(Integer.valueOf(1848), pfe.getEndDate().getYear());
// Contributors
assertEquals("{\"contributor\":[{\"contributorOrcid\":{\"uri\":\"http://orcid.org/8888-8888-8888-8880\",\"path\":\"8888-8888-8888-8880\",\"host\":\"orcid.org\"},\"creditName\":{\"content\":\"funding:credit-name\"},\"contributorEmail\":{\"value\":\"funding@contributor.email\"},\"contributorAttributes\":{\"contributorRole\":\"LEAD\"}}]}", pfe.getContributorsJson());
// External identifiers
assertEquals("{\"fundingExternalIdentifier\":[{\"type\":\"GRANT_NUMBER\",\"value\":\"funding:external-identifier-value\",\"url\":{\"value\":\"http://tempuri.org\"},\"relationship\":\"SELF\"},{\"type\":\"GRANT_NUMBER\",\"value\":\"funding:external-identifier-value2\",\"url\":{\"value\":\"http://tempuri.org/2\"},\"relationship\":\"SELF\"}]}", pfe.getExternalIdentifiersJson());
// Check org is null
assertNull(pfe.getOrg());
// Source
assertNull(pfe.getSourceId());
assertNull(pfe.getClientSourceId());
assertNull(pfe.getElementSourceId());
}
use of org.orcid.jaxb.model.v3.dev1.record.Funding in project ORCID-Source by ORCID.
the class JpaJaxbFundingAdapterTest method fromFundingEntityTest.
@Test
public void fromFundingEntityTest() throws JAXBException {
ProfileFundingEntity entity = getProfileFundingEntity();
assertNotNull(entity);
assertEquals("123456", entity.getNumericAmount().toString());
Funding funding = jpaJaxbFundingAdapter.toFunding(entity);
assertNotNull(funding);
assertEquals(Long.valueOf(12345), funding.getPutCode());
assertNotNull(funding.getAmount());
assertEquals("123456", funding.getAmount().getContent());
assertEquals("CRC", funding.getAmount().getCurrencyCode());
assertNotNull(funding.getContributors());
assertNotNull(funding.getContributors().getContributor());
assertEquals(1, funding.getContributors().getContributor().size());
assertEquals("8888-8888-8888-8880", funding.getContributors().getContributor().get(0).getContributorOrcid().getPath());
assertEquals("orcid.org", funding.getContributors().getContributor().get(0).getContributorOrcid().getHost());
assertEquals("http://orcid.org/8888-8888-8888-8880", funding.getContributors().getContributor().get(0).getContributorOrcid().getUri());
assertEquals("funding:creditName", funding.getContributors().getContributor().get(0).getCreditName().getContent());
assertEquals("funding:description", funding.getDescription());
assertNotNull(funding.getStartDate());
assertEquals("01", funding.getStartDate().getDay().getValue());
assertEquals("01", funding.getStartDate().getMonth().getValue());
assertEquals("2000", funding.getStartDate().getYear().getValue());
assertNotNull(funding.getEndDate());
assertEquals("01", funding.getEndDate().getDay().getValue());
assertEquals("01", funding.getEndDate().getMonth().getValue());
assertEquals("2020", funding.getEndDate().getYear().getValue());
assertEquals("funding:title", funding.getTitle().getTitle().getContent());
assertEquals("funding:translatedTitle", funding.getTitle().getTranslatedTitle().getContent());
assertEquals("ES", funding.getTitle().getTranslatedTitle().getLanguageCode());
assertEquals(FundingType.SALARY_AWARD, funding.getType());
assertEquals(Visibility.PRIVATE, funding.getVisibility());
}
Aggregations