Search in sources :

Example 31 with Biography

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

the class ValidateV2RC4SamplesTest method testMarshallBiography.

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

Example 32 with Biography

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

the class ValidateV2RC4SamplesTest method testUnmarshallBiography.

@Test
public void testUnmarshallBiography() throws SAXException, URISyntaxException {
    Biography bio = (Biography) unmarshallFromPath("/record_2.0_rc4/samples/biography-2.0_rc4.xml", Biography.class, "/record_2.0_rc4/personal-details-2.0_rc4.xsd");
    assertNotNull(bio);
    assertEquals("biography V2.0_rc4", bio.getContent());
    assertEquals(Visibility.PUBLIC.value(), bio.getVisibility().value());
}
Also used : Biography(org.orcid.jaxb.model.record_rc4.Biography) Test(org.junit.Test)

Example 33 with Biography

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

the class ValidateV2RC3SamplesTest method testUnmarshallBiography.

@Test
public void testUnmarshallBiography() throws SAXException, URISyntaxException {
    Biography bio = (Biography) unmarshallFromPath("/record_2.0_rc3/samples/biography-2.0_rc3.xml", Biography.class, "/record_2.0_rc3/personal-details-2.0_rc3.xsd");
    assertNotNull(bio);
    assertEquals("biography V2.0_rc3", bio.getContent());
    assertEquals(Visibility.PUBLIC.value(), bio.getVisibility().value());
}
Also used : Biography(org.orcid.jaxb.model.record_rc3.Biography) Test(org.junit.Test)

Example 34 with Biography

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

the class ValidateV2_1SamplesTest 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;
        } else if (Works.class.equals(type)) {
            result = (Works) obj;
        }
        return result;
    } catch (IOException e) {
        throw new RuntimeException("Error reading notification from classpath", e);
    }
}
Also used : Email(org.orcid.jaxb.model.record_v2.Email) InputStreamReader(java.io.InputStreamReader) Keyword(org.orcid.jaxb.model.record_v2.Keyword) Address(org.orcid.jaxb.model.record_v2.Address) OtherNames(org.orcid.jaxb.model.record_v2.OtherNames) CreditName(org.orcid.jaxb.model.record_v2.CreditName) Reader(java.io.Reader) InputStreamReader(java.io.InputStreamReader) IOException(java.io.IOException) PersonExternalIdentifier(org.orcid.jaxb.model.record_v2.PersonExternalIdentifier) History(org.orcid.jaxb.model.record_v2.History) ActivitiesSummary(org.orcid.jaxb.model.record.summary_v2.ActivitiesSummary) Deprecated(org.orcid.jaxb.model.record_v2.Deprecated) Biography(org.orcid.jaxb.model.record_v2.Biography) ResearcherUrl(org.orcid.jaxb.model.record_v2.ResearcherUrl)

Example 35 with Biography

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

Aggregations

Biography (org.orcid.jaxb.model.record_v2.Biography)79 Test (org.junit.Test)74 OtherNames (org.orcid.jaxb.model.record_v2.OtherNames)48 Name (org.orcid.jaxb.model.record_v2.Name)46 OtherName (org.orcid.jaxb.model.record_v2.OtherName)46 Address (org.orcid.jaxb.model.record_v2.Address)34 Addresses (org.orcid.jaxb.model.record_v2.Addresses)34 ResearcherUrls (org.orcid.jaxb.model.record_v2.ResearcherUrls)34 Email (org.orcid.jaxb.model.record_v2.Email)33 Keywords (org.orcid.jaxb.model.record_v2.Keywords)33 PersonExternalIdentifiers (org.orcid.jaxb.model.record_v2.PersonExternalIdentifiers)33 ResearcherUrl (org.orcid.jaxb.model.record_v2.ResearcherUrl)33 Emails (org.orcid.jaxb.model.record_v2.Emails)32 Keyword (org.orcid.jaxb.model.record_v2.Keyword)32 PersonExternalIdentifier (org.orcid.jaxb.model.record_v2.PersonExternalIdentifier)32 Person (org.orcid.jaxb.model.record_v2.Person)26 Record (org.orcid.jaxb.model.record_v2.Record)16 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