use of org.orcid.jaxb.model.record_v2.Biography in project ORCID-Source by ORCID.
the class PublicV2ApiServiceDelegatorTest method testGetPublicBiographyUsingToken.
// Biography
@Test
public void testGetPublicBiographyUsingToken() {
SecurityContextTestUtils.setUpSecurityContext(ORCID, ScopePathType.READ_LIMITED);
Response r = serviceDelegator.viewBiography(ORCID);
assertNotNull(r);
Biography b = (Biography) r.getEntity();
assertNotNull(b);
assertNotNull(b.getLastModifiedDate());
assertNotNull(b.getLastModifiedDate().getValue());
assertEquals(Visibility.PUBLIC, b.getVisibility());
}
use of org.orcid.jaxb.model.record_v2.Biography in project ORCID-Source by ORCID.
the class MemberV2ApiServiceDelegator_PersonalDetailsTest method testReadPublicScope_PersonalDetails.
@Test
public void testReadPublicScope_PersonalDetails() {
SecurityContextTestUtils.setUpSecurityContext(ORCID, ScopePathType.READ_PUBLIC);
Response r = serviceDelegator.viewPersonalDetails(ORCID);
assertNotNull(r);
assertEquals(PersonalDetails.class.getName(), r.getEntity().getClass().getName());
PersonalDetails p = (PersonalDetails) r.getEntity();
assertEquals("/0000-0000-0000-0003/personal-details", p.getPath());
Utils.verifyLastModified(p.getLastModifiedDate());
Utils.verifyLastModified(p.getBiography().getLastModifiedDate());
Utils.verifyLastModified(p.getName().getLastModifiedDate());
Utils.verifyLastModified(p.getOtherNames().getLastModifiedDate());
assertEquals("Biography for 0000-0000-0000-0003", p.getBiography().getContent());
assertEquals("Credit Name", p.getName().getCreditName().getContent());
assertEquals("Given Names", p.getName().getGivenNames().getContent());
assertEquals("Family Name", p.getName().getFamilyName().getContent());
assertEquals(3, p.getOtherNames().getOtherNames().size());
boolean found13 = false, found14 = false, found15 = false;
for (OtherName element : p.getOtherNames().getOtherNames()) {
if (element.getPutCode() == 13) {
found13 = true;
} else if (element.getPutCode() == 14) {
found14 = true;
} else if (element.getPutCode() == 15) {
found15 = true;
} else {
fail("Invalid put code " + element.getPutCode());
}
}
assertTrue(found13);
assertTrue(found14);
assertTrue(found15);
String otherOrcid = "0000-0000-0000-0002";
SecurityContextTestUtils.setUpSecurityContext(otherOrcid, ScopePathType.READ_PUBLIC);
r = serviceDelegator.viewPersonalDetails(otherOrcid);
assertNotNull(r);
assertEquals(PersonalDetails.class.getName(), r.getEntity().getClass().getName());
p = (PersonalDetails) r.getEntity();
assertNull(p.getBiography());
assertNull(p.getName());
assertNotNull(p.getOtherNames());
assertTrue(p.getOtherNames().getOtherNames().isEmpty());
}
use of org.orcid.jaxb.model.record_v2.Biography in project ORCID-Source by ORCID.
the class MemberV2ApiServiceDelegator_PersonalDetailsTest method testViewPersonalDetails.
@Test
public void testViewPersonalDetails() {
SecurityContextTestUtils.setUpSecurityContext(ORCID, ScopePathType.PERSON_READ_LIMITED);
Response response = serviceDelegator.viewPersonalDetails(ORCID);
assertNotNull(response);
PersonalDetails personalDetails = (PersonalDetails) response.getEntity();
assertNotNull(personalDetails);
assertEquals("/0000-0000-0000-0003/personal-details", personalDetails.getPath());
Utils.verifyLastModified(personalDetails.getLastModifiedDate());
assertNotNull(personalDetails.getBiography());
Utils.verifyLastModified(personalDetails.getBiography().getLastModifiedDate());
assertEquals("Biography for 0000-0000-0000-0003", personalDetails.getBiography().getContent());
assertEquals(Visibility.PUBLIC.value(), personalDetails.getBiography().getVisibility().value());
assertEquals("/0000-0000-0000-0003/biography", personalDetails.getBiography().getPath());
assertNotNull(personalDetails.getName());
Utils.verifyLastModified(personalDetails.getName().getLastModifiedDate());
assertNotNull(personalDetails.getName().getCreatedDate().getValue());
assertEquals("Credit Name", personalDetails.getName().getCreditName().getContent());
assertEquals("Family Name", personalDetails.getName().getFamilyName().getContent());
assertEquals("Given Names", personalDetails.getName().getGivenNames().getContent());
assertEquals(Visibility.PUBLIC.value(), personalDetails.getName().getVisibility().value());
assertNotNull(personalDetails.getOtherNames());
Utils.verifyLastModified(personalDetails.getOtherNames().getLastModifiedDate());
assertEquals(4, personalDetails.getOtherNames().getOtherNames().size());
for (OtherName otherName : personalDetails.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 put code found: " + otherName.getPutCode());
}
}
assertEquals("/0000-0000-0000-0003/other-names", personalDetails.getOtherNames().getPath());
assertEquals("/0000-0000-0000-0003/personal-details", personalDetails.getPath());
}
use of org.orcid.jaxb.model.record_v2.Biography in project ORCID-Source by ORCID.
the class MemberV2ApiServiceDelegator_ReadPersonTest method testViewPerson.
@Test
public void testViewPerson() {
SecurityContextTestUtils.setUpSecurityContext(ORCID, ScopePathType.PERSON_READ_LIMITED);
Response response = serviceDelegator.viewPerson(ORCID);
assertNotNull(response);
assertEquals(Person.class.getName(), response.getEntity().getClass().getName());
Person p = (Person) response.getEntity();
assertNotNull(p);
assertEquals("/0000-0000-0000-0003/person", p.getPath());
Utils.verifyLastModified(p.getLastModifiedDate());
// Address
assertNotNull(p.getAddresses());
Addresses a = p.getAddresses();
assertNotNull(a);
Utils.verifyLastModified(a.getLastModifiedDate());
assertEquals(4, a.getAddress().size());
boolean found1 = false, found2 = false, found3 = false, found4 = false;
for (Address element : a.getAddress()) {
Utils.verifyLastModified(element.getLastModifiedDate());
if (element.getPutCode() == 9) {
found1 = true;
} else if (element.getPutCode() == 10) {
found2 = true;
} else if (element.getPutCode() == 11) {
found3 = true;
} else if (element.getPutCode() == 12) {
found4 = true;
} else {
fail("Invalid put code " + element.getPutCode());
}
}
assertTrue(found1);
assertTrue(found2);
assertTrue(found3);
assertTrue(found4);
// Biography
assertNotNull(p.getBiography());
Biography b = p.getBiography();
assertNotNull(b);
Utils.verifyLastModified(b.getLastModifiedDate());
assertEquals("Biography for 0000-0000-0000-0003", b.getContent());
// Email
assertNotNull(p.getEmails());
Emails email = p.getEmails();
assertNotNull(email);
Utils.verifyLastModified(email.getLastModifiedDate());
assertEquals(4, email.getEmails().size());
found1 = false;
found2 = false;
found3 = false;
found4 = false;
for (Email element : email.getEmails()) {
if (element.getEmail().equals("public_0000-0000-0000-0003@test.orcid.org")) {
found1 = true;
} else if (element.getEmail().equals("limited_0000-0000-0000-0003@test.orcid.org")) {
found2 = true;
} else if (element.getEmail().equals("private_0000-0000-0000-0003@test.orcid.org")) {
found3 = true;
} else if (element.getEmail().equals("self_limited_0000-0000-0000-0003@test.orcid.org")) {
found4 = true;
} else {
fail("Invalid email " + element.getEmail());
}
}
assertTrue(found1);
assertTrue(found2);
assertTrue(found3);
assertTrue(found4);
// External identifiers
assertNotNull(p.getExternalIdentifiers());
PersonExternalIdentifiers extIds = p.getExternalIdentifiers();
assertNotNull(extIds);
Utils.verifyLastModified(extIds.getLastModifiedDate());
assertEquals(4, extIds.getExternalIdentifiers().size());
found1 = false;
found2 = false;
found3 = false;
found4 = false;
for (PersonExternalIdentifier element : extIds.getExternalIdentifiers()) {
Utils.verifyLastModified(element.getLastModifiedDate());
if (element.getPutCode() == 13) {
found1 = true;
} else if (element.getPutCode() == 14) {
found2 = true;
} else if (element.getPutCode() == 15) {
found3 = true;
} else if (element.getPutCode() == 16) {
found4 = true;
} else {
fail("Invalid put code " + element.getPutCode());
}
}
assertTrue(found1);
assertTrue(found2);
assertTrue(found3);
assertTrue(found4);
// Keywords
assertNotNull(p.getKeywords());
Keywords k = p.getKeywords();
assertNotNull(k);
Utils.verifyLastModified(k.getLastModifiedDate());
assertEquals(4, k.getKeywords().size());
found1 = false;
found2 = false;
found3 = false;
found4 = false;
for (Keyword element : k.getKeywords()) {
Utils.verifyLastModified(element.getLastModifiedDate());
if (element.getPutCode() == 9) {
found1 = true;
} else if (element.getPutCode() == 10) {
found2 = true;
} else if (element.getPutCode() == 11) {
found3 = true;
} else if (element.getPutCode() == 12) {
found4 = true;
} else {
fail("Invalid put code " + element.getPutCode());
}
}
assertTrue(found1);
assertTrue(found2);
assertTrue(found3);
assertTrue(found4);
// Name
assertNotNull(p.getName());
assertEquals("Credit Name", p.getName().getCreditName().getContent());
assertEquals("Given Names", p.getName().getGivenNames().getContent());
assertEquals("Family Name", p.getName().getFamilyName().getContent());
// Other names
assertNotNull(p.getOtherNames());
OtherNames o = p.getOtherNames();
assertNotNull(o);
Utils.verifyLastModified(o.getLastModifiedDate());
assertEquals(4, o.getOtherNames().size());
found1 = false;
found2 = false;
found3 = false;
found4 = false;
for (OtherName element : o.getOtherNames()) {
Utils.verifyLastModified(element.getLastModifiedDate());
if (element.getPutCode() == 13) {
found1 = true;
} else if (element.getPutCode() == 14) {
found2 = true;
} else if (element.getPutCode() == 15) {
found3 = true;
} else if (element.getPutCode() == 16) {
found4 = true;
} else {
fail("Invalid put code " + element.getPutCode());
}
}
assertTrue(found1);
assertTrue(found2);
assertTrue(found3);
assertTrue(found4);
// Researcher urls
assertNotNull(p.getResearcherUrls());
ResearcherUrls ru = p.getResearcherUrls();
assertNotNull(ru);
Utils.verifyLastModified(ru.getLastModifiedDate());
assertEquals(4, ru.getResearcherUrls().size());
found1 = false;
found2 = false;
found3 = false;
found4 = false;
for (ResearcherUrl element : ru.getResearcherUrls()) {
Utils.verifyLastModified(element.getLastModifiedDate());
if (element.getPutCode() == 13) {
found1 = true;
} else if (element.getPutCode() == 14) {
found2 = true;
} else if (element.getPutCode() == 15) {
found3 = true;
} else if (element.getPutCode() == 16) {
found4 = true;
} else {
fail("Invalid put code " + element.getPutCode());
}
}
assertTrue(found1);
assertTrue(found2);
assertTrue(found3);
assertTrue(found4);
assertNotNull(p.getPath());
}
use of org.orcid.jaxb.model.record_v2.Biography in project ORCID-Source by ORCID.
the class MemberV2ApiServiceDelegator_ReadPersonTest method assertAllPublicButEmails.
private void assertAllPublicButEmails(Person p) {
assertNotNull(p);
Utils.verifyLastModified(p.getLastModifiedDate());
// Address
assertNotNull(p.getAddresses());
Addresses a = p.getAddresses();
assertNotNull(a);
Utils.verifyLastModified(a.getLastModifiedDate());
assertEquals(1, a.getAddress().size());
assertEquals(Long.valueOf(9), a.getAddress().get(0).getPutCode());
assertEquals(Visibility.PUBLIC, a.getAddress().get(0).getVisibility());
// Biography
assertNotNull(p.getBiography());
Biography b = p.getBiography();
assertNotNull(b);
Utils.verifyLastModified(b.getLastModifiedDate());
assertEquals("Biography for 0000-0000-0000-0003", b.getContent());
// External identifiers
assertNotNull(p.getExternalIdentifiers());
PersonExternalIdentifiers extIds = p.getExternalIdentifiers();
assertNotNull(extIds);
Utils.verifyLastModified(extIds.getLastModifiedDate());
assertEquals(1, extIds.getExternalIdentifiers().size());
assertEquals(Long.valueOf(13), extIds.getExternalIdentifiers().get(0).getPutCode());
assertEquals(Visibility.PUBLIC, extIds.getExternalIdentifiers().get(0).getVisibility());
// Keywords
assertNotNull(p.getKeywords());
Keywords k = p.getKeywords();
assertNotNull(k);
Utils.verifyLastModified(k.getLastModifiedDate());
assertEquals(1, k.getKeywords().size());
assertEquals(Long.valueOf(9), k.getKeywords().get(0).getPutCode());
assertEquals(Visibility.PUBLIC, k.getKeywords().get(0).getVisibility());
// Name
assertNotNull(p.getName());
assertEquals("Credit Name", p.getName().getCreditName().getContent());
assertEquals("Given Names", p.getName().getGivenNames().getContent());
assertEquals("Family Name", p.getName().getFamilyName().getContent());
// Other names
assertNotNull(p.getOtherNames());
OtherNames o = p.getOtherNames();
assertNotNull(o);
Utils.verifyLastModified(o.getLastModifiedDate());
assertEquals(1, o.getOtherNames().size());
assertEquals(Long.valueOf(13), o.getOtherNames().get(0).getPutCode());
assertEquals(Visibility.PUBLIC, o.getOtherNames().get(0).getVisibility());
// Researcher urls
assertNotNull(p.getResearcherUrls());
ResearcherUrls ru = p.getResearcherUrls();
assertNotNull(ru);
Utils.verifyLastModified(ru.getLastModifiedDate());
assertEquals(1, ru.getResearcherUrls().size());
assertEquals(Long.valueOf(13), ru.getResearcherUrls().get(0).getPutCode());
assertEquals(Visibility.PUBLIC, ru.getResearcherUrls().get(0).getVisibility());
}
Aggregations