use of org.neo4j.logging.AssertableLogProvider in project neo4j by neo4j.
the class NeoServerShutdownLoggingIT method setupServer.
@Before
public void setupServer() throws IOException {
logProvider = new AssertableLogProvider();
server = ServerHelper.createNonPersistentServer(logProvider);
ServerHelper.cleanTheDatabase(server);
}
use of org.neo4j.logging.AssertableLogProvider in project neo4j by neo4j.
the class TruncateLogCommandTest method applyTo.
@Test
public void applyTo() throws Exception {
//Test that truncate commands correctly remove entries from the cache.
//given
AssertableLogProvider logProvider = new AssertableLogProvider();
Log log = logProvider.getLog(getClass());
long fromIndex = 2L;
TruncateLogCommand truncateLogCommand = new TruncateLogCommand(fromIndex);
InFlightMap<RaftLogEntry> inFlightMap = new InFlightMap<>();
inFlightMap.put(0L, new RaftLogEntry(0L, valueOf(0)));
inFlightMap.put(1L, new RaftLogEntry(1L, valueOf(1)));
inFlightMap.put(2L, new RaftLogEntry(2L, valueOf(2)));
inFlightMap.put(3L, new RaftLogEntry(3L, valueOf(3)));
//when
truncateLogCommand.applyTo(inFlightMap, log);
//then
assertNotNull(inFlightMap.get(0L));
assertNotNull(inFlightMap.get(1L));
assertNull(inFlightMap.get(2L));
assertNull(inFlightMap.get(3L));
logProvider.assertAtLeastOnce(inLog(getClass()).debug("Start truncating in-flight-map from index %d. Current map:%n%s", fromIndex, inFlightMap));
}
use of org.neo4j.logging.AssertableLogProvider in project neo4j by neo4j.
the class HeartbeatStateTest method shouldLogFirstHeartbeatAfterTimeout.
@Test
public void shouldLogFirstHeartbeatAfterTimeout() throws Throwable {
// given
InstanceId instanceId = new InstanceId(1), otherInstance = new InstanceId(2);
ClusterConfiguration configuration = new ClusterConfiguration("whatever", NullLogProvider.getInstance(), "cluster://1", "cluster://2");
configuration.getMembers().put(otherInstance, URI.create("cluster://2"));
AssertableLogProvider internalLog = new AssertableLogProvider(true);
TimeoutStrategy timeoutStrategy = mock(TimeoutStrategy.class);
Timeouts timeouts = new Timeouts(timeoutStrategy);
Config config = mock(Config.class);
when(config.get(ClusterSettings.max_acceptors)).thenReturn(10);
MultiPaxosContext context = new MultiPaxosContext(instanceId, iterable(new ElectionRole("coordinator")), configuration, mock(Executor.class), internalLog, mock(ObjectInputStreamFactory.class), mock(ObjectOutputStreamFactory.class), mock(AcceptorInstanceStore.class), timeouts, mock(ElectionCredentialsProvider.class), config);
StateMachines stateMachines = new StateMachines(internalLog, mock(StateMachines.Monitor.class), mock(MessageSource.class), mock(MessageSender.class), timeouts, mock(DelayedDirectExecutor.class), command -> command.run(), instanceId);
stateMachines.addStateMachine(new StateMachine(context.getHeartbeatContext(), HeartbeatMessage.class, HeartbeatState.start, internalLog));
timeouts.tick(0);
when(timeoutStrategy.timeoutFor(any(Message.class))).thenReturn(5L);
// when
stateMachines.process(Message.internal(HeartbeatMessage.join));
stateMachines.process(Message.internal(HeartbeatMessage.i_am_alive, new HeartbeatMessage.IAmAliveState(otherInstance)).setHeader(Message.CREATED_BY, otherInstance.toString()));
for (int i = 1; i <= 15; i++) {
timeouts.tick(i);
}
// then
verify(timeoutStrategy, times(3)).timeoutTriggered(argThat(new MessageArgumentMatcher<>().onMessageType(HeartbeatMessage.timed_out)));
internalLog.assertExactly(inLog(HeartbeatState.class).debug("Received timed out for server 2"), inLog(HeartbeatContext.class).info("1(me) is now suspecting 2"), inLog(HeartbeatState.class).debug("Received timed out for server 2"), inLog(HeartbeatState.class).debug("Received timed out for server 2"));
internalLog.clear();
// when
stateMachines.process(Message.internal(HeartbeatMessage.i_am_alive, new HeartbeatMessage.IAmAliveState(otherInstance)).setHeader(Message.CREATED_BY, otherInstance.toString()));
// then
internalLog.assertExactly(inLog(HeartbeatState.class).debug("Received i_am_alive[2] after missing 3 (15ms)"));
}
use of org.neo4j.logging.AssertableLogProvider in project neo4j by neo4j.
the class ConfiguringPageCacheFactoryTest method mustUseAndLogConfiguredPageSwapper.
@Test
public void mustUseAndLogConfiguredPageSwapper() throws Exception {
// Given
Config config = Config.embeddedDefaults(stringMap(pagecache_memory.name(), "8m", pagecache_swapper.name(), TEST_PAGESWAPPER_NAME));
AssertableLogProvider logProvider = new AssertableLogProvider();
Log log = logProvider.getLog(PageCache.class);
// When
new ConfiguringPageCacheFactory(fsRule.get(), config, PageCacheTracer.NULL, PageCursorTracerSupplier.NULL, log);
// Then
assertThat(PageSwapperFactoryForTesting.countCreatedPageSwapperFactories(), is(1));
assertThat(PageSwapperFactoryForTesting.countConfiguredPageSwapperFactories(), is(1));
logProvider.assertContainsMessageContaining(TEST_PAGESWAPPER_NAME);
}
use of org.neo4j.logging.AssertableLogProvider in project neo4j by neo4j.
the class ServerStartupErrorsTest method shouldDescribeUpgradeFailureInAFriendlyWay.
@Test
public void shouldDescribeUpgradeFailureInAFriendlyWay() {
// given
AssertableLogProvider logging = new AssertableLogProvider();
LifecycleException error = new LifecycleException(new Object(), STARTING, STARTED, new RuntimeException("Error starting org.neo4j.kernel.ha.factory.EnterpriseFacadeFactory", new LifecycleException(new Object(), STARTING, STARTED, new LifecycleException(new Object(), STARTING, STARTED, new UpgradeNotAllowedByConfigurationException()))));
// when
translateToServerStartupError(error).describeTo(logging.getLog("console"));
// then
logging.assertExactly(inLog("console").error("Neo4j cannot be started, because the database files require upgrading and upgrades are " + "disabled in configuration. Please set '%s' to 'true' in your configuration file and try " + "again.", "dbms.allow_format_migration"));
}
Aggregations