Search in sources :

Example 31 with OtherName

use of de.carne.certmgr.certs.x509.OtherName in project ORCID-Source by ORCID.

the class PersonalDetailsManagerTest method getPersonalDetailsTest3.

@Test
public void getPersonalDetailsTest3() {
    PersonalDetails personalDetails = personalDetailsManager.getPersonalDetails(ORCID3);
    assertNotNull(personalDetails);
    assertNotNull(personalDetails.getOtherNames());
    assertNotNull(personalDetails.getOtherNames().getOtherNames());
    assertEquals(5, personalDetails.getOtherNames().getOtherNames().size());
    boolean found1 = false, found2 = false, found3 = false, found4 = false, found5 = false;
    for (OtherName otherName : personalDetails.getOtherNames().getOtherNames()) {
        long putCode = otherName.getPutCode();
        if (putCode == 13) {
            found1 = true;
        } else if (putCode == 14) {
            found2 = true;
        } else if (putCode == 15) {
            found3 = true;
        } else if (putCode == 16) {
            found4 = true;
        } else if (putCode == 17) {
            found5 = true;
        } else {
            fail("Invalid put code found " + putCode);
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    assertTrue(found4);
    assertTrue(found5);
    assertNotNull(personalDetails.getBiography());
    assertEquals(Visibility.PUBLIC, personalDetails.getBiography().getVisibility());
    assertEquals("Biography for 0000-0000-0000-0003", personalDetails.getBiography().getContent());
    assertNotNull(personalDetails.getName());
    assertEquals("Credit Name", personalDetails.getName().getCreditName().getContent());
    assertEquals("Family Name", personalDetails.getName().getFamilyName().getContent());
    assertEquals("Given Names", personalDetails.getName().getGivenNames().getContent());
    assertEquals(Visibility.PUBLIC, personalDetails.getName().getVisibility());
}
Also used : OtherName(org.orcid.jaxb.model.record_v2.OtherName) PersonalDetails(org.orcid.jaxb.model.record_v2.PersonalDetails) Test(org.junit.Test) BaseTest(org.orcid.core.BaseTest)

Example 32 with OtherName

use of de.carne.certmgr.certs.x509.OtherName in project ORCID-Source by ORCID.

the class PersonalDetailsManagerTest method getPersonalDetailsTest1.

@Test
public void getPersonalDetailsTest1() {
    PersonalDetails personalDetails = personalDetailsManager.getPersonalDetails(ORCID1);
    assertNotNull(personalDetails);
    assertNotNull(personalDetails.getOtherNames());
    assertNotNull(personalDetails.getOtherNames().getOtherNames());
    assertEquals(3, personalDetails.getOtherNames().getOtherNames().size());
    boolean found1 = false, found2 = false, found3 = false;
    for (OtherName otherName : personalDetails.getOtherNames().getOtherNames()) {
        long putCode = otherName.getPutCode();
        if (putCode == 18) {
            found1 = true;
        } else if (putCode == 19) {
            found2 = true;
        } else if (putCode == 20) {
            found3 = true;
        } else {
            fail("Invalid put code found " + putCode);
        }
    }
    assertTrue(found1);
    assertTrue(found2);
    assertTrue(found3);
    assertNotNull(personalDetails.getBiography());
    assertEquals(Visibility.PRIVATE, personalDetails.getBiography().getVisibility());
    assertEquals("Biography for 0000-0000-0000-0001", personalDetails.getBiography().getContent());
    assertNotNull(personalDetails.getName());
    assertEquals("Leonardo", personalDetails.getName().getCreditName().getContent());
    assertEquals("da Vinci", personalDetails.getName().getFamilyName().getContent());
    assertEquals("Leonardo", personalDetails.getName().getGivenNames().getContent());
    assertEquals(Visibility.PRIVATE, personalDetails.getName().getVisibility());
}
Also used : OtherName(org.orcid.jaxb.model.record_v2.OtherName) PersonalDetails(org.orcid.jaxb.model.record_v2.PersonalDetails) Test(org.junit.Test) BaseTest(org.orcid.core.BaseTest)

Example 33 with OtherName

use of de.carne.certmgr.certs.x509.OtherName in project ORCID-Source by ORCID.

the class BlackBoxBaseRC2 method unmarshallFromPath.

public Object unmarshallFromPath(String path, Class<?> type) {
    try (Reader reader = new InputStreamReader(getClass().getResourceAsStream(path))) {
        Object obj = unmarshall(reader, type);
        Object result = null;
        if (Address.class.equals(type)) {
            result = (Address) obj;
        } else if (Education.class.equals(type)) {
            result = (Education) obj;
        } else if (Employment.class.equals(type)) {
            result = (Employment) obj;
        } else if (Funding.class.equals(type)) {
            result = (Funding) obj;
        } else if (Keyword.class.equals(type)) {
            result = (Keyword) obj;
        } else if (Work.class.equals(type)) {
            result = (Work) obj;
        } else if (PeerReview.class.equals(type)) {
            result = (PeerReview) obj;
        } else if (ResearcherUrl.class.equals(type)) {
            result = (ResearcherUrl) obj;
        } else if (PersonalDetails.class.equals(type)) {
            result = (PersonalDetails) obj;
        } else if (OtherName.class.equals(type)) {
            result = (OtherName) obj;
        } else if (PersonExternalIdentifier.class.equals(type)) {
            result = (PersonExternalIdentifier) obj;
        }
        return result;
    } catch (IOException e) {
        throw new RuntimeException("Error reading notification from classpath", e);
    }
}
Also used : InputStreamReader(java.io.InputStreamReader) Education(org.orcid.jaxb.model.record_rc2.Education) Funding(org.orcid.jaxb.model.record_rc2.Funding) Work(org.orcid.jaxb.model.record_rc2.Work) OtherName(org.orcid.jaxb.model.record_rc2.OtherName) Reader(java.io.Reader) InputStreamReader(java.io.InputStreamReader) ResearcherUrl(org.orcid.jaxb.model.record_rc2.ResearcherUrl) IOException(java.io.IOException)

Example 34 with OtherName

use of de.carne.certmgr.certs.x509.OtherName in project ORCID-Source by ORCID.

the class BlackBoxBaseV2_1Release method createOtherName.

@SuppressWarnings({ "deprecation", "rawtypes" })
public Long createOtherName(String value, String userOrcid, String accessToken) {
    OtherName otherName = new OtherName();
    otherName.setContent(value);
    ClientResponse response = memberV2_1ApiClient.createOtherName(userOrcid, otherName, accessToken);
    assertNotNull(response);
    assertEquals(ClientResponse.Status.CREATED.getStatusCode(), response.getStatus());
    Map map = response.getMetadata();
    assertNotNull(map);
    assertTrue(map.containsKey("Location"));
    List resultWithPutCode = (List) map.get("Location");
    String location = resultWithPutCode.get(0).toString();
    Long putCode = Long.valueOf(location.substring(location.lastIndexOf('/') + 1));
    return putCode;
}
Also used : ClientResponse(com.sun.jersey.api.client.ClientResponse) OtherName(org.orcid.jaxb.model.record_v2.OtherName) ArrayList(java.util.ArrayList) List(java.util.List) Map(java.util.Map)

Example 35 with OtherName

use of de.carne.certmgr.certs.x509.OtherName in project ORCID-Source by ORCID.

the class BlackBoxBaseV2_1Release method unmarshallFromPath.

public Object unmarshallFromPath(String path, Class<?> type) {
    try (Reader reader = new InputStreamReader(getClass().getResourceAsStream(path))) {
        Object obj = unmarshall(reader, type);
        Object result = null;
        if (Address.class.equals(type)) {
            result = (Address) obj;
        } else if (Education.class.equals(type)) {
            result = (Education) obj;
        } else if (Employment.class.equals(type)) {
            result = (Employment) obj;
        } else if (Funding.class.equals(type)) {
            result = (Funding) obj;
        } else if (Keyword.class.equals(type)) {
            result = (Keyword) obj;
        } else if (Work.class.equals(type)) {
            result = (Work) obj;
        } else if (PeerReview.class.equals(type)) {
            result = (PeerReview) obj;
        } else if (ResearcherUrl.class.equals(type)) {
            result = (ResearcherUrl) obj;
        } else if (PersonalDetails.class.equals(type)) {
            result = (PersonalDetails) obj;
        } else if (OtherName.class.equals(type)) {
            result = (OtherName) obj;
        } else if (PersonExternalIdentifier.class.equals(type)) {
            result = (PersonExternalIdentifier) obj;
        }
        return result;
    } catch (IOException e) {
        throw new RuntimeException("Error reading notification from classpath", e);
    }
}
Also used : InputStreamReader(java.io.InputStreamReader) Education(org.orcid.jaxb.model.record_v2.Education) Funding(org.orcid.jaxb.model.record_v2.Funding) Work(org.orcid.jaxb.model.record_v2.Work) OtherName(org.orcid.jaxb.model.record_v2.OtherName) Reader(java.io.Reader) InputStreamReader(java.io.InputStreamReader) ResearcherUrl(org.orcid.jaxb.model.record_v2.ResearcherUrl) IOException(java.io.IOException)

Aggregations

OtherName (org.orcid.jaxb.model.record_v2.OtherName)110 Test (org.junit.Test)98 OtherNames (org.orcid.jaxb.model.record_v2.OtherNames)55 Biography (org.orcid.jaxb.model.record_v2.Biography)44 ResearcherUrl (org.orcid.jaxb.model.record_v2.ResearcherUrl)44 Name (org.orcid.jaxb.model.record_v2.Name)43 Address (org.orcid.jaxb.model.record_v2.Address)42 Keyword (org.orcid.jaxb.model.record_v2.Keyword)40 PersonExternalIdentifier (org.orcid.jaxb.model.record_v2.PersonExternalIdentifier)40 Email (org.orcid.jaxb.model.record_v2.Email)38 Addresses (org.orcid.jaxb.model.record_v2.Addresses)33 Emails (org.orcid.jaxb.model.record_v2.Emails)33 ResearcherUrls (org.orcid.jaxb.model.record_v2.ResearcherUrls)33 Keywords (org.orcid.jaxb.model.record_v2.Keywords)32 PersonExternalIdentifiers (org.orcid.jaxb.model.record_v2.PersonExternalIdentifiers)32 Person (org.orcid.jaxb.model.record_v2.Person)31 ArrayList (java.util.ArrayList)21 Response (javax.ws.rs.core.Response)20 DBUnitTest (org.orcid.test.DBUnitTest)20 Record (org.orcid.jaxb.model.record_v2.Record)19