Search in sources :

Example 16 with History

use of org.geotoolkit.sml.xml.v100.History in project ORCID-Source by ORCID.

the class ValidateV2RC3SamplesTest method testUnmarshallHistory.

@Test
public void testUnmarshallHistory() throws SAXException, URISyntaxException {
    History history = (History) unmarshallFromPath("/record_2.0_rc3/samples/history-2.0_rc3.xml", History.class, "/record_2.0_rc3/history-2.0_rc3.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_rc3.History) Test(org.junit.Test)

Example 17 with History

use of org.geotoolkit.sml.xml.v100.History in project ORCID-Source by ORCID.

the class ValidateV2RC2SamplesTest method testUnmarshallHistory.

@Test
public void testUnmarshallHistory() throws SAXException, URISyntaxException {
    History history = (History) unmarshallFromPath("/record_2.0_rc2/samples/history-2.0_rc2.xml", History.class, "/record_2.0_rc2/history-2.0_rc2.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_rc2.History) Test(org.junit.Test)

Example 18 with History

use of org.geotoolkit.sml.xml.v100.History in project ORCID-Source by ORCID.

the class ValidateV2RC2SamplesTest method testMarshallHistory.

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

Example 19 with History

use of org.geotoolkit.sml.xml.v100.History in project ORCID-Source by ORCID.

the class ValidateV2_1SamplesTest method testMarshallHistory.

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

Example 20 with History

use of org.geotoolkit.sml.xml.v100.History in project ORCID-Source by ORCID.

the class ValidateV2_1SamplesTest method testUnmarshallHistory.

@Test
public void testUnmarshallHistory() throws SAXException, URISyntaxException {
    History history = (History) unmarshallFromPath("/record_2.1/samples/read_samples/history-2.1.xml", History.class, "/record_2.1/history-2.1.xsd");
    assertNotNull(history);
    assertNotNull(history.getSource());
    assertEquals("https://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());
    validateSourceInHttps(history.getSource());
    assertEquals("8888-8888-8888-8880", history.getSource().retrieveSourcePath());
}
Also used : History(org.orcid.jaxb.model.record_v2.History) Test(org.junit.Test)

Aggregations

Test (org.junit.Test)16 History (org.orcid.jaxb.model.record_v2.History)13 History (io.temporal.api.history.v1.History)9 HistoryEvent (io.temporal.api.history.v1.HistoryEvent)7 IOException (java.io.IOException)5 InputStreamReader (java.io.InputStreamReader)5 Reader (java.io.Reader)5 OrcidIdentifier (org.orcid.jaxb.model.common_v2.OrcidIdentifier)5 Email (org.orcid.jaxb.model.record_v2.Email)5 WorkflowExecutionHistory (io.temporal.internal.common.WorkflowExecutionHistory)4 Address (org.orcid.jaxb.model.record_v2.Address)4 Record (org.orcid.jaxb.model.record_v2.Record)4 ResearcherUrl (org.orcid.jaxb.model.record_v2.ResearcherUrl)4 WorkflowExecution (io.temporal.api.common.v1.WorkflowExecution)3 ArrayList (java.util.ArrayList)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 WorkflowFailedException (io.temporal.client.WorkflowFailedException)2 WorkflowStub (io.temporal.client.WorkflowStub)2