use of org.orcid.jaxb.model.record_rc4.Record in project neo4j by neo4j.
the class BoltCausalClusteringIT method shouldUseBookmarkFromAWriteSessionInAReadSession.
@Test
public void shouldUseBookmarkFromAWriteSessionInAReadSession() throws Throwable {
// given
cluster = clusterRule.withNumberOfReadReplicas(1).startCluster();
CoreClusterMember leader = cluster.awaitLeader();
ReadReplica readReplica = cluster.getReadReplicaById(0);
readReplica.txPollingClient().stop();
Driver driver = GraphDatabase.driver(leader.directURI(), AuthTokens.basic("neo4j", "neo4j"));
String bookmark = inExpirableSession(driver, (d) -> d.session(AccessMode.WRITE), (session) -> {
try (Transaction tx = session.beginTransaction()) {
tx.run("CREATE (p:Person {name: {name} })", Values.parameters("name", "Jim"));
tx.run("CREATE (p:Person {name: {name} })", Values.parameters("name", "Alistair"));
tx.run("CREATE (p:Person {name: {name} })", Values.parameters("name", "Mark"));
tx.run("CREATE (p:Person {name: {name} })", Values.parameters("name", "Chris"));
tx.success();
}
return session.lastBookmark();
});
assertNotNull(bookmark);
readReplica.txPollingClient().start();
driver = GraphDatabase.driver(readReplica.directURI(), AuthTokens.basic("neo4j", "neo4j"));
try (Session session = driver.session(AccessMode.READ)) {
try (Transaction tx = session.beginTransaction(bookmark)) {
Record record = tx.run("MATCH (n:Person) RETURN COUNT(*) AS count").next();
tx.success();
assertEquals(4, record.get("count").asInt());
}
}
}
use of org.orcid.jaxb.model.record_rc4.Record in project neo4j by neo4j.
the class BoltCausalClusteringIT method shouldHandleLeaderSwitch.
@Test
public void shouldHandleLeaderSwitch() throws Exception {
// given
cluster = clusterRule.startCluster();
CoreClusterMember leader = cluster.awaitLeader();
try (Driver driver = GraphDatabase.driver(leader.routingURI(), AuthTokens.basic("neo4j", "neo4j"))) {
// when
try (Session session = driver.session()) {
try (Transaction tx = session.beginTransaction()) {
switchLeader(leader);
tx.run("CREATE (person:Person {name: {name}, title: {title}})", parameters("name", "Webber", "title", "Mr"));
tx.success();
} catch (SessionExpiredException ignored) {
// expected
}
}
String bookmark = inExpirableSession(driver, Driver::session, s -> {
try (Transaction tx = s.beginTransaction()) {
tx.run("CREATE (person:Person {name: {name}, title: {title}})", parameters("name", "Webber", "title", "Mr"));
tx.success();
} catch (SessionExpiredException ignored) {
}
return s.lastBookmark();
});
// then
try (Session session = driver.session(AccessMode.READ)) {
try (Transaction tx = session.beginTransaction(bookmark)) {
Record record = tx.run("MATCH (n:Person) RETURN COUNT(*) AS count").next();
tx.success();
assertEquals(1, record.get("count").asInt());
}
}
}
}
use of org.orcid.jaxb.model.record_rc4.Record in project neo4j by neo4j.
the class BoltCausalClusteringIT method shouldReadAndWriteToANewSessionCreatedAfterALeaderSwitch.
/*
Create a session with empty arg list (no AccessMode arg), in a driver that was initialized with a bolt+routing
URI, and ensure that it
a) works against the Leader for reads and writes before a leader switch, and
b) receives a SESSION EXPIRED after a leader switch, and
c) keeps working if a new session is created after that exception, again with no access mode specified.
*/
@Test
public void shouldReadAndWriteToANewSessionCreatedAfterALeaderSwitch() throws Exception {
// given
cluster = clusterRule.withNumberOfReadReplicas(1).startCluster();
CoreClusterMember leader = cluster.awaitLeader();
try (Driver driver = GraphDatabase.driver(leader.routingURI(), AuthTokens.basic("neo4j", "neo4j"))) {
inExpirableSession(driver, Driver::session, (session) -> {
// execute a write/read query
session.run("CREATE (p:Person {name: {name} })", Values.parameters("name", "Jim"));
Record record = session.run("MATCH (n:Person) RETURN COUNT(*) AS count").next();
assertEquals(1, record.get("count").asInt());
try {
switchLeader(leader);
session.run("CREATE (p:Person {name: {name} })").consume();
fail("Should have thrown an exception as the leader went away mid session");
} catch (SessionExpiredException sep) {
// then
assertEquals(String.format("Server at %s no longer accepts writes", leader.boltAdvertisedAddress()), sep.getMessage());
} catch (InterruptedException e) {
// ignored
}
return null;
});
inExpirableSession(driver, Driver::session, (session) -> {
// execute a write/read query
session.run("CREATE (p:Person {name: {name} })", Values.parameters("name", "Jim"));
Record record = session.run("MATCH (n:Person) RETURN COUNT(*) AS count").next();
assertEquals(2, record.get("count").asInt());
return null;
});
}
}
use of org.orcid.jaxb.model.record_rc4.Record in project ORCID-Source by ORCID.
the class MemberV2ApiServiceVersionedDelegatorTest method test2_0.
@Test
public void test2_0() {
SecurityContextTestUtils.setUpSecurityContext("0000-0000-0000-0003", ScopePathType.READ_LIMITED);
Response response = serviceDelegator.viewRecord("0000-0000-0000-0003");
Record record = (Record) response.getEntity();
assertNotNull(record.getActivitiesSummary());
ActivitiesSummary activitiesSummary = record.getActivitiesSummary();
if (activitiesSummary.getEducations() != null) {
activitiesSummary.getEducations().getSummaries().forEach(e -> assertSourceElement(e, false));
}
if (activitiesSummary.getEmployments() != null) {
activitiesSummary.getEmployments().getSummaries().forEach(e -> assertSourceElement(e, false));
}
if (activitiesSummary.getFundings() != null) {
activitiesSummary.getFundings().getFundingGroup().forEach(g -> {
g.getFundingSummary().forEach(e -> assertSourceElement(e, false));
});
}
if (activitiesSummary.getWorks() != null) {
activitiesSummary.getWorks().getWorkGroup().forEach(g -> {
g.getWorkSummary().forEach(e -> assertSourceElement(e, false));
});
}
if (activitiesSummary.getPeerReviews() != null) {
activitiesSummary.getPeerReviews().getPeerReviewGroup().forEach(g -> {
g.getPeerReviewSummary().forEach(e -> assertSourceElement(e, false));
});
}
assertNotNull(record.getPerson());
Person person = record.getPerson();
if (person.getAddresses() != null) {
person.getAddresses().getAddress().forEach(e -> assertSourceElement(e, false));
}
if (person.getExternalIdentifiers() != null) {
person.getExternalIdentifiers().getExternalIdentifiers().forEach(e -> assertSourceElement(e, false));
}
if (person.getKeywords() != null) {
person.getKeywords().getKeywords().forEach(e -> assertSourceElement(e, false));
}
if (person.getOtherNames() != null) {
person.getOtherNames().getOtherNames().forEach(e -> assertSourceElement(e, false));
}
if (person.getResearcherUrls() != null) {
person.getResearcherUrls().getResearcherUrls().forEach(e -> assertSourceElement(e, false));
}
}
use of org.orcid.jaxb.model.record_rc4.Record in project ORCID-Source by ORCID.
the class MemberV2ApiServiceVersionedDelegatorTest method test2_1.
@Test
public void test2_1() {
SecurityContextTestUtils.setUpSecurityContext("0000-0000-0000-0003", ScopePathType.READ_LIMITED);
Response response = serviceDelegator_v2_1.viewRecord("0000-0000-0000-0003");
Record record = (Record) response.getEntity();
assertNotNull(record.getActivitiesSummary());
ActivitiesSummary activitiesSummary = record.getActivitiesSummary();
if (activitiesSummary.getEducations() != null) {
activitiesSummary.getEducations().getSummaries().forEach(e -> assertSourceElement(e, true));
}
if (activitiesSummary.getEmployments() != null) {
activitiesSummary.getEmployments().getSummaries().forEach(e -> assertSourceElement(e, true));
}
if (activitiesSummary.getFundings() != null) {
activitiesSummary.getFundings().getFundingGroup().forEach(g -> {
g.getFundingSummary().forEach(e -> assertSourceElement(e, true));
});
}
if (activitiesSummary.getWorks() != null) {
activitiesSummary.getWorks().getWorkGroup().forEach(g -> {
g.getWorkSummary().forEach(e -> assertSourceElement(e, true));
});
}
if (activitiesSummary.getPeerReviews() != null) {
activitiesSummary.getPeerReviews().getPeerReviewGroup().forEach(g -> {
g.getPeerReviewSummary().forEach(e -> assertSourceElement(e, true));
});
}
assertNotNull(record.getPerson());
Person person = record.getPerson();
if (person.getAddresses() != null) {
person.getAddresses().getAddress().forEach(e -> assertSourceElement(e, true));
}
if (person.getExternalIdentifiers() != null) {
person.getExternalIdentifiers().getExternalIdentifiers().forEach(e -> assertSourceElement(e, true));
}
if (person.getKeywords() != null) {
person.getKeywords().getKeywords().forEach(e -> assertSourceElement(e, true));
}
if (person.getOtherNames() != null) {
person.getOtherNames().getOtherNames().forEach(e -> assertSourceElement(e, true));
}
if (person.getResearcherUrls() != null) {
person.getResearcherUrls().getResearcherUrls().forEach(e -> assertSourceElement(e, true));
}
}
Aggregations