Search in sources :

Example 16 with PersonalDetails

use of org.orcid.jaxb.model.record_rc3.PersonalDetails 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());
}
Also used : Response(javax.ws.rs.core.Response) OtherName(org.orcid.jaxb.model.record_v2.OtherName) PersonalDetails(org.orcid.jaxb.model.record_v2.PersonalDetails) DBUnitTest(org.orcid.test.DBUnitTest) Test(org.junit.Test)

Example 17 with PersonalDetails

use of org.orcid.jaxb.model.record_rc3.PersonalDetails 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());
}
Also used : Response(javax.ws.rs.core.Response) OtherName(org.orcid.jaxb.model.record_v2.OtherName) PersonalDetails(org.orcid.jaxb.model.record_v2.PersonalDetails) DBUnitTest(org.orcid.test.DBUnitTest) Test(org.junit.Test)

Example 18 with PersonalDetails

use of org.orcid.jaxb.model.record_rc3.PersonalDetails in project ORCID-Source by ORCID.

the class ValidateV2RC2SamplesTest method testMarshallPersonalDetails.

@Test
public void testMarshallPersonalDetails() throws JAXBException, SAXException, URISyntaxException {
    PersonalDetails object = (PersonalDetails) unmarshallFromPath("/record_2.0_rc2/samples/personal-details-2.0_rc2.xml", PersonalDetails.class);
    marshall(object, "/record_2.0_rc2/personal-details-2.0_rc2.xsd");
}
Also used : PersonalDetails(org.orcid.jaxb.model.record_rc2.PersonalDetails) Test(org.junit.Test)

Example 19 with PersonalDetails

use of org.orcid.jaxb.model.record_rc3.PersonalDetails in project ORCID-Source by ORCID.

the class PublicAPISecurityManagerV2Test method checkIsPublicPersonalDetailsTest.

@Test
public void checkIsPublicPersonalDetailsTest() {
    PersonalDetails p = getPersonalDetailsElement(Visibility.PUBLIC, Visibility.PUBLIC, Visibility.PUBLIC);
    publicAPISecurityManagerV2.filter(p);
    assertEquals(Visibility.PUBLIC, p.getName().getVisibility());
    assertEquals(Visibility.PUBLIC, p.getBiography().getVisibility());
    assertNotNull(p.getOtherNames().getOtherNames());
    p.getOtherNames().getOtherNames().forEach(e -> {
        assertIsPublic(e);
    });
    // Should not fail, but name should be empty
    p = getPersonalDetailsElement(Visibility.LIMITED, Visibility.PUBLIC, Visibility.PUBLIC);
    publicAPISecurityManagerV2.filter(p);
    assertNull(p.getName());
    assertNotNull(p.getBiography());
    assertNotNull(p.getOtherNames().getOtherNames());
    p.getOtherNames().getOtherNames().forEach(e -> {
        assertIsPublic(e);
    });
    // Should not fail, but bio should be null
    p = getPersonalDetailsElement(Visibility.PUBLIC, Visibility.LIMITED, Visibility.PUBLIC);
    publicAPISecurityManagerV2.filter(p);
    assertNotNull(p.getName());
    assertNull(p.getBiography());
    assertNotNull(p.getOtherNames().getOtherNames());
    p.getOtherNames().getOtherNames().forEach(e -> {
        assertIsPublic(e);
    });
    p = getPersonalDetailsElement(Visibility.PUBLIC, Visibility.PUBLIC, Visibility.LIMITED);
    publicAPISecurityManagerV2.filter(p);
    assertNotNull(p.getName());
    assertNotNull(p.getBiography());
    assertNotNull(p.getOtherNames());
    assertTrue(p.getOtherNames().getOtherNames().isEmpty());
    p = getPersonalDetailsElement(Visibility.PUBLIC, Visibility.PUBLIC, Visibility.PRIVATE);
    publicAPISecurityManagerV2.filter(p);
    assertNotNull(p.getName());
    assertNotNull(p.getBiography());
    assertNotNull(p.getOtherNames());
    assertTrue(p.getOtherNames().getOtherNames().isEmpty());
}
Also used : PersonalDetails(org.orcid.jaxb.model.record_v2.PersonalDetails) Test(org.junit.Test)

Example 20 with PersonalDetails

use of org.orcid.jaxb.model.record_rc3.PersonalDetails in project ORCID-Source by ORCID.

the class MemberV2ApiServiceDelegator_PersonalDetailsTest method testViewPersonalDetailsReadPublic.

@Test
public void testViewPersonalDetailsReadPublic() {
    SecurityContextTestUtils.setUpSecurityContextForClientOnly("APP-5555555555555555", ScopePathType.READ_PUBLIC);
    Response r = serviceDelegator.viewPersonalDetails(ORCID);
    PersonalDetails element = (PersonalDetails) r.getEntity();
    assertNotNull(element);
    assertEquals("/0000-0000-0000-0003/personal-details", element.getPath());
    Utils.assertIsPublicOrSource(element, "APP-5555555555555555");
}
Also used : Response(javax.ws.rs.core.Response) PersonalDetails(org.orcid.jaxb.model.record_v2.PersonalDetails) DBUnitTest(org.orcid.test.DBUnitTest) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)34 PersonalDetails (org.orcid.jaxb.model.record_v2.PersonalDetails)34 OtherName (org.orcid.jaxb.model.record_v2.OtherName)18 Biography (org.orcid.jaxb.model.record_v2.Biography)14 Name (org.orcid.jaxb.model.record_v2.Name)14 OtherNames (org.orcid.jaxb.model.record_v2.OtherNames)13 BaseTest (org.orcid.core.BaseTest)6 Response (javax.ws.rs.core.Response)4 DBUnitTest (org.orcid.test.DBUnitTest)4 IOException (java.io.IOException)3 ArrayList (java.util.ArrayList)3 InputStreamReader (java.io.InputStreamReader)2 Reader (java.io.Reader)2 Date (java.util.Date)2 LastModifiedDate (org.orcid.jaxb.model.common_v2.LastModifiedDate)2 PersonalDetails (org.orcid.jaxb.model.record_rc2.PersonalDetails)2 PersonalDetails (org.orcid.jaxb.model.record_rc3.PersonalDetails)2 ResearcherUrl (org.orcid.jaxb.model.record_rc3.ResearcherUrl)2 PersonalDetails (org.orcid.jaxb.model.record_rc4.PersonalDetails)2 JsonGenerationException (com.fasterxml.jackson.core.JsonGenerationException)1