use of org.neo4j.kernel.api.query.ExecutingQuery in project neo4j by neo4j.
the class QueryLoggerTest method shouldLogUserName.
@Test
public void shouldLogUserName() throws Exception {
// given
final AssertableLogProvider logProvider = new AssertableLogProvider();
FakeClock clock = Clocks.fakeClock();
QueryLogger queryLogger = queryLoggerWithoutParams(logProvider, clock);
// when
ExecutingQuery query = query(0, SESSION_1, "TestUser", QUERY_1);
queryLogger.startQueryExecution(query);
clock.forward(10, TimeUnit.MILLISECONDS);
queryLogger.endSuccess(query);
ExecutingQuery anotherQuery = query(10, SESSION_1, "AnotherUser", QUERY_1);
queryLogger.startQueryExecution(anotherQuery);
clock.forward(10, TimeUnit.MILLISECONDS);
queryLogger.endSuccess(anotherQuery);
// then
logProvider.assertExactly(inLog(getClass()).info(format("%d ms: %s - %s - {}", 10L, sessionConnectionDetails(SESSION_1, "TestUser"), QUERY_1)), inLog(getClass()).info(format("%d ms: %s - %s - {}", 10L, sessionConnectionDetails(SESSION_1, "AnotherUser"), QUERY_1)));
}
use of org.neo4j.kernel.api.query.ExecutingQuery in project neo4j by neo4j.
the class QueryLoggerTest method shouldLogQuerySlowerThanThreshold.
@Test
public void shouldLogQuerySlowerThanThreshold() throws Exception {
// given
final AssertableLogProvider logProvider = new AssertableLogProvider();
ExecutingQuery query = query(0, SESSION_1, "TestUser", QUERY_1);
FakeClock clock = Clocks.fakeClock();
QueryLogger queryLogger = queryLoggerWithoutParams(logProvider, clock);
// when
queryLogger.startQueryExecution(query);
clock.forward(11, TimeUnit.MILLISECONDS);
queryLogger.endSuccess(query);
// then
String expectedSessionString = sessionConnectionDetails(SESSION_1, "TestUser");
logProvider.assertExactly(inLog(getClass()).info(format("%d ms: %s - %s - {}", 11L, expectedSessionString, QUERY_1)));
}
use of org.neo4j.kernel.api.query.ExecutingQuery in project neo4j by neo4j.
the class QueryLoggerTest method runAndCheck.
private void runAndCheck(String inputQuery, String outputQuery, Map<String, Object> params, String paramsString) {
final AssertableLogProvider logProvider = new AssertableLogProvider();
FakeClock clock = Clocks.fakeClock();
QueryLogger queryLogger = queryLoggerWithParams(logProvider, clock);
// when
ExecutingQuery query = query(0, SESSION_1, "neo", inputQuery, params, emptyMap());
queryLogger.startQueryExecution(query);
clock.forward(10, TimeUnit.MILLISECONDS);
queryLogger.endSuccess(query);
// then
logProvider.assertExactly(inLog(getClass()).info(format("%d ms: %s - %s - {%s} - {}", 10L, sessionConnectionDetails(SESSION_1, "neo"), outputQuery, paramsString)));
}
use of org.neo4j.kernel.api.query.ExecutingQuery in project neo4j by neo4j.
the class QueryLoggerTest method shouldLogQueryOnFailureEvenIfFasterThanThreshold.
@Test
public void shouldLogQueryOnFailureEvenIfFasterThanThreshold() throws Exception {
// given
final AssertableLogProvider logProvider = new AssertableLogProvider();
ExecutingQuery query = query(0, SESSION_1, "TestUser", QUERY_1);
FakeClock clock = Clocks.fakeClock();
QueryLogger queryLogger = queryLoggerWithoutParams(logProvider, clock);
RuntimeException failure = new RuntimeException();
// when
queryLogger.startQueryExecution(query);
clock.forward(1, TimeUnit.MILLISECONDS);
queryLogger.endFailure(query, failure);
// then
logProvider.assertExactly(inLog(getClass()).error(is("1 ms: " + sessionConnectionDetails(SESSION_1, "TestUser") + " - MATCH (n) RETURN n - {}"), sameInstance(failure)));
}
use of org.neo4j.kernel.api.query.ExecutingQuery in project neo4j by neo4j.
the class QueryLoggerTest method shouldLogMetaData.
@Test
public void shouldLogMetaData() throws Exception {
// given
final AssertableLogProvider logProvider = new AssertableLogProvider();
FakeClock clock = Clocks.fakeClock();
QueryLogger queryLogger = queryLoggerWithoutParams(logProvider, clock);
// when
ExecutingQuery query = query(0, SESSION_1, "TestUser", QUERY_1, emptyMap(), map("User", "UltiMate"));
queryLogger.startQueryExecution(query);
clock.forward(10, TimeUnit.MILLISECONDS);
queryLogger.endSuccess(query);
ExecutingQuery anotherQuery = query(10, SESSION_1, "AnotherUser", QUERY_1, emptyMap(), map("Place", "Town"));
queryLogger.startQueryExecution(anotherQuery);
clock.forward(10, TimeUnit.MILLISECONDS);
Throwable error = new Throwable();
queryLogger.endFailure(anotherQuery, error);
// then
logProvider.assertExactly(inLog(getClass()).info(format("%d ms: %s - %s - {User: 'UltiMate'}", 10L, sessionConnectionDetails(SESSION_1, "TestUser"), QUERY_1)), inLog(getClass()).error(equalTo(format("%d ms: %s - %s - {Place: 'Town'}", 10L, sessionConnectionDetails(SESSION_1, "AnotherUser"), QUERY_1)), sameInstance(error)));
}
Aggregations