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());
}
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());
}
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");
}
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");
}
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());
}
Aggregations