Search in sources :

Example 1 with History

use of org.orcid.jaxb.model.record_v2.History in project ORCID-Source by ORCID.

the class ValidateV2SamplesTest method testUnmarshallHistory.

@Test
public void testUnmarshallHistory() throws SAXException, URISyntaxException {
    History history = (History) unmarshallFromPath("/record_2.0/samples/read_samples/history-2.0.xml", History.class, "/record_2.0/history-2.0.xsd");
    assertNotNull(history);
    assertNotNull(history.getSource());
    assertEquals("http://orcid.org/8888-8888-8888-8880", history.getSource().retriveSourceUri());
    assertNotNull(history.getCreationMethod());
    assertEquals(CreationMethod.API, history.getCreationMethod());
    assertNotNull(history.getClaimed());
    assertTrue(history.getClaimed());
    assertNotNull(history.isVerifiedEmail());
    assertTrue(history.isVerifiedEmail());
    assertNotNull(history.isVerifiedPrimaryEmail());
    assertTrue(history.isVerifiedPrimaryEmail());
    assertNotNull(history.getCompletionDate());
    assertNotNull(history.getCompletionDate().getValue());
    assertEquals(2001, history.getCompletionDate().getValue().getYear());
    assertEquals(12, history.getCompletionDate().getValue().getMonth());
    assertEquals(31, history.getCompletionDate().getValue().getDay());
    assertNotNull(history.getDeactivationDate());
    assertNotNull(history.getDeactivationDate().getValue());
    assertEquals(2001, history.getDeactivationDate().getValue().getYear());
    assertEquals(12, history.getDeactivationDate().getValue().getMonth());
    assertEquals(31, history.getDeactivationDate().getValue().getDay());
    assertNotNull(history.getLastModifiedDate());
    assertNotNull(history.getLastModifiedDate().getValue());
    assertEquals(2001, history.getLastModifiedDate().getValue().getYear());
    assertEquals(12, history.getLastModifiedDate().getValue().getMonth());
    assertEquals(31, history.getLastModifiedDate().getValue().getDay());
    assertNotNull(history.getSubmissionDate());
    assertNotNull(history.getSubmissionDate().getValue());
    assertEquals(2001, history.getSubmissionDate().getValue().getYear());
    assertEquals(12, history.getSubmissionDate().getValue().getMonth());
    assertEquals(31, history.getSubmissionDate().getValue().getDay());
}
Also used : History(org.orcid.jaxb.model.record_v2.History) Test(org.junit.Test)

Example 2 with History

use of org.orcid.jaxb.model.record_v2.History in project ORCID-Source by ORCID.

the class ValidateV2SamplesTest 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 3 with History

use of org.orcid.jaxb.model.record_v2.History in project ORCID-Source by ORCID.

the class ValidateV2SamplesTest method testMarshallHistory.

@Test
public void testMarshallHistory() throws JAXBException, SAXException, URISyntaxException {
    History object = (History) unmarshallFromPath("/record_2.0/samples/read_samples/history-2.0.xml", History.class);
    marshall(object, "/record_2.0/history-2.0.xsd");
}
Also used : History(org.orcid.jaxb.model.record_v2.History) Test(org.junit.Test)

Example 4 with History

use of org.orcid.jaxb.model.record_v2.History in project ORCID-Source by ORCID.

the class ValidateV2RC2SamplesTest 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_rc2.Email) InputStreamReader(java.io.InputStreamReader) Keyword(org.orcid.jaxb.model.record_rc2.Keyword) Address(org.orcid.jaxb.model.record_rc2.Address) OtherNames(org.orcid.jaxb.model.record_rc2.OtherNames) CreditName(org.orcid.jaxb.model.record_rc2.CreditName) Reader(java.io.Reader) InputStreamReader(java.io.InputStreamReader) IOException(java.io.IOException) PersonExternalIdentifier(org.orcid.jaxb.model.record_rc2.PersonExternalIdentifier) History(org.orcid.jaxb.model.record_rc2.History) ActivitiesSummary(org.orcid.jaxb.model.record.summary_rc2.ActivitiesSummary) Deprecated(org.orcid.jaxb.model.record_rc2.Deprecated) Biography(org.orcid.jaxb.model.record_rc2.Biography) ResearcherUrl(org.orcid.jaxb.model.record_rc2.ResearcherUrl)

Example 5 with History

use of org.orcid.jaxb.model.record_v2.History in project ORCID-Source by ORCID.

the class ValidateV2RC3SamplesTest method testMarshallHistory.

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

Aggregations

Test (org.junit.Test)12 History (org.orcid.jaxb.model.record_v2.History)10 IOException (java.io.IOException)5 InputStreamReader (java.io.InputStreamReader)5 Reader (java.io.Reader)5 Email (org.orcid.jaxb.model.record_v2.Email)4 OrcidIdentifier (org.orcid.jaxb.model.common_v2.OrcidIdentifier)3 ActivitiesSummary (org.orcid.jaxb.model.record.summary_v2.ActivitiesSummary)3 History (org.orcid.jaxb.model.record_rc2.History)3 History (org.orcid.jaxb.model.record_rc3.History)3 History (org.orcid.jaxb.model.record_rc4.History)3 Response (javax.ws.rs.core.Response)2 GroupIdRecord (org.orcid.jaxb.model.groupid_v2.GroupIdRecord)2 Address (org.orcid.jaxb.model.record_v2.Address)2 Biography (org.orcid.jaxb.model.record_v2.Biography)2 CreditName (org.orcid.jaxb.model.record_v2.CreditName)2 Deprecated (org.orcid.jaxb.model.record_v2.Deprecated)2 Keyword (org.orcid.jaxb.model.record_v2.Keyword)2 OtherNames (org.orcid.jaxb.model.record_v2.OtherNames)2 PersonExternalIdentifier (org.orcid.jaxb.model.record_v2.PersonExternalIdentifier)2