Search in sources :

Example 81 with OtherNames

use of org.orcid.jaxb.model.record_rc4.OtherNames in project ORCID-Source by ORCID.

the class ValidateV2RC4SamplesTest method testUnmarshallOtherNames.

@Test
public void testUnmarshallOtherNames() throws SAXException, URISyntaxException {
    OtherNames otherNames = (OtherNames) unmarshallFromPath("/record_2.0_rc4/samples/other-names-2.0_rc4.xml", OtherNames.class, "/record_2.0_rc4/personal-details-2.0_rc4.xsd");
    assertNotNull(otherNames);
    assertNotNull(otherNames.getOtherNames());
    assertEquals(2, otherNames.getOtherNames().size());
    for (OtherName otherName : otherNames.getOtherNames()) {
        assertThat(otherName.getContent(), anyOf(is("Other Name #1"), is("Other Name #2")));
        assertThat(otherName.getPutCode(), anyOf(is(1L), is(2L)));
        assertEquals(Visibility.PUBLIC.value(), otherName.getVisibility().value());
        assertNotNull(otherName.getCreatedDate());
        assertNotNull(otherName.getLastModifiedDate());
        assertNotNull(otherName.getSource());
        assertEquals("8888-8888-8888-8880", otherName.getSource().retrieveSourcePath());
    }
    OtherName otherName = (OtherName) unmarshallFromPath("/record_2.0_rc4/samples/other-name-2.0_rc4.xml", OtherName.class);
    assertNotNull(otherName);
    assertEquals("Other Name #1", otherName.getContent());
    assertEquals(Long.valueOf(1), otherName.getPutCode());
    assertEquals(Visibility.PUBLIC.value(), otherName.getVisibility().value());
    assertNotNull(otherName.getCreatedDate());
    assertNotNull(otherName.getLastModifiedDate());
    assertNotNull(otherName.getSource());
    assertEquals("8888-8888-8888-8880", otherName.getSource().retrieveSourcePath());
}
Also used : OtherNames(org.orcid.jaxb.model.record_rc4.OtherNames) OtherName(org.orcid.jaxb.model.record_rc4.OtherName) Test(org.junit.Test)

Example 82 with OtherNames

use of org.orcid.jaxb.model.record_rc4.OtherNames in project ORCID-Source by ORCID.

the class ValidateV2RC3SamplesTest method unmarshallFromPath.

private Object unmarshallFromPath(String path, Class<?> type, String schemaPath) throws SAXException, URISyntaxException {
    try (Reader reader = new InputStreamReader(getClass().getResourceAsStream(path))) {
        Object obj = unmarshall(reader, type, schemaPath);
        Object result = null;
        if (ResearcherUrls.class.equals(type)) {
            result = (ResearcherUrls) obj;
        } else if (ResearcherUrl.class.equals(type)) {
            result = (ResearcherUrl) obj;
        } else if (PersonalDetails.class.equals(type)) {
            result = (PersonalDetails) obj;
        } else if (PersonExternalIdentifier.class.equals(type)) {
            result = (PersonExternalIdentifier) obj;
        } else if (PersonExternalIdentifiers.class.equals(type)) {
            result = (PersonExternalIdentifiers) obj;
        } else if (Biography.class.equals(type)) {
            result = (Biography) obj;
        } else if (Name.class.equals(type)) {
            result = (Name) obj;
        } else if (CreditName.class.equals(type)) {
            result = (CreditName) obj;
        } else if (OtherName.class.equals(type)) {
            result = (OtherName) obj;
        } else if (OtherNames.class.equals(type)) {
            result = (OtherNames) obj;
        } else if (Keywords.class.equals(type)) {
            result = (Keywords) obj;
        } else if (Keyword.class.equals(type)) {
            result = (Keyword) obj;
        } else if (Addresses.class.equals(type)) {
            result = (Addresses) obj;
        } else if (Address.class.equals(type)) {
            result = (Address) obj;
        } else if (Emails.class.equals(type)) {
            result = (Emails) obj;
        } else if (Email.class.equals(type)) {
            result = (Email) obj;
        } else if (Person.class.equals(type)) {
            result = (Person) obj;
        } else if (Deprecated.class.equals(type)) {
            result = (Deprecated) obj;
        } else if (Preferences.class.equals(type)) {
            result = (Preferences) obj;
        } else if (History.class.equals(type)) {
            result = (History) obj;
        } else if (Record.class.equals(type)) {
            result = (Record) obj;
        } else if (ActivitiesSummary.class.equals(type)) {
            result = (ActivitiesSummary) obj;
        }
        return result;
    } catch (IOException e) {
        throw new RuntimeException("Error reading notification from classpath", e);
    }
}
Also used : Email(org.orcid.jaxb.model.record_rc3.Email) InputStreamReader(java.io.InputStreamReader) Keyword(org.orcid.jaxb.model.record_rc3.Keyword) Address(org.orcid.jaxb.model.record_rc3.Address) OtherNames(org.orcid.jaxb.model.record_rc3.OtherNames) CreditName(org.orcid.jaxb.model.record_rc3.CreditName) Reader(java.io.Reader) InputStreamReader(java.io.InputStreamReader) IOException(java.io.IOException) PersonExternalIdentifier(org.orcid.jaxb.model.record_rc3.PersonExternalIdentifier) History(org.orcid.jaxb.model.record_rc3.History) ActivitiesSummary(org.orcid.jaxb.model.record.summary_rc3.ActivitiesSummary) Deprecated(org.orcid.jaxb.model.record_rc3.Deprecated) Biography(org.orcid.jaxb.model.record_rc3.Biography) ResearcherUrl(org.orcid.jaxb.model.record_rc3.ResearcherUrl)

Example 83 with OtherNames

use of org.orcid.jaxb.model.record_rc4.OtherNames in project ORCID-Source by ORCID.

the class ValidateV2RC3SamplesTest method testMarshallOtherNames.

@Test
public void testMarshallOtherNames() throws JAXBException, SAXException, URISyntaxException {
    OtherNames object = (OtherNames) unmarshallFromPath("/record_2.0_rc3/samples/other-names-2.0_rc3.xml", OtherNames.class);
    marshall(object, "/record_2.0_rc3/other-name-2.0_rc3.xsd");
}
Also used : OtherNames(org.orcid.jaxb.model.record_rc3.OtherNames) Test(org.junit.Test)

Example 84 with OtherNames

use of org.orcid.jaxb.model.record_rc4.OtherNames in project ORCID-Source by ORCID.

the class PublicV2ApiServiceDelegatorTest method testViewOtherNames.

@Test
public void testViewOtherNames() {
    Response response = serviceDelegator.viewOtherNames(ORCID);
    assertNotNull(response);
    OtherNames otherNames = (OtherNames) response.getEntity();
    assertNotNull(otherNames);
    assertNotNull(otherNames.getLastModifiedDate());
    assertNotNull(otherNames.getLastModifiedDate().getValue());
    assertEquals("/0000-0000-0000-0003/other-names", otherNames.getPath());
    assertEquals(1, otherNames.getOtherNames().size());
    OtherName otherName = otherNames.getOtherNames().get(0);
    assertNotNull(otherName);
    assertNotNull(otherName.getLastModifiedDate());
    assertNotNull(otherName.getLastModifiedDate().getValue());
    assertEquals(Long.valueOf(13), otherName.getPutCode());
    assertEquals("Other Name PUBLIC", otherName.getContent());
    assertEquals(Visibility.PUBLIC.value(), otherName.getVisibility().value());
    assertEquals("/0000-0000-0000-0003/other-names/13", otherName.getPath());
    assertEquals("APP-5555555555555555", otherName.getSource().retrieveSourcePath());
}
Also used : Response(javax.ws.rs.core.Response) OtherNames(org.orcid.jaxb.model.record_v2.OtherNames) OtherName(org.orcid.jaxb.model.record_v2.OtherName) DBUnitTest(org.orcid.test.DBUnitTest) Test(org.junit.Test)

Example 85 with OtherNames

use of org.orcid.jaxb.model.record_rc4.OtherNames in project ORCID-Source by ORCID.

the class JpaJaxbOtherNameAdapterImpl method toOtherNameList.

@Override
public OtherNames toOtherNameList(Collection<OtherNameEntity> entities) {
    if (entities == null) {
        return null;
    }
    List<OtherName> otherNameList = mapperFacade.mapAsList(entities, OtherName.class);
    OtherNames otherNames = new OtherNames();
    otherNames.setOtherNames(otherNameList);
    return otherNames;
}
Also used : OtherNames(org.orcid.jaxb.model.record_v2.OtherNames) OtherName(org.orcid.jaxb.model.record_v2.OtherName)

Aggregations

OtherNames (org.orcid.jaxb.model.record_v2.OtherNames)70 Test (org.junit.Test)61 OtherName (org.orcid.jaxb.model.record_v2.OtherName)55 Biography (org.orcid.jaxb.model.record_v2.Biography)47 Name (org.orcid.jaxb.model.record_v2.Name)40 Addresses (org.orcid.jaxb.model.record_v2.Addresses)35 Keywords (org.orcid.jaxb.model.record_v2.Keywords)35 PersonExternalIdentifiers (org.orcid.jaxb.model.record_v2.PersonExternalIdentifiers)35 ResearcherUrls (org.orcid.jaxb.model.record_v2.ResearcherUrls)35 Address (org.orcid.jaxb.model.record_v2.Address)34 Email (org.orcid.jaxb.model.record_v2.Email)33 Emails (org.orcid.jaxb.model.record_v2.Emails)33 Keyword (org.orcid.jaxb.model.record_v2.Keyword)33 PersonExternalIdentifier (org.orcid.jaxb.model.record_v2.PersonExternalIdentifier)33 ResearcherUrl (org.orcid.jaxb.model.record_v2.ResearcherUrl)33 Person (org.orcid.jaxb.model.record_v2.Person)25 EducationSummary (org.orcid.jaxb.model.record.summary_v2.EducationSummary)15 EmploymentSummary (org.orcid.jaxb.model.record.summary_v2.EmploymentSummary)15 FundingSummary (org.orcid.jaxb.model.record.summary_v2.FundingSummary)15 PeerReviewSummary (org.orcid.jaxb.model.record.summary_v2.PeerReviewSummary)15