Search in sources :

Example 6 with ReplicaMigrationEvent

use of com.hazelcast.partition.ReplicaMigrationEvent in project hazelcast by hazelcast.

the class MigrationListenerAdapterTest method test_migrationCompleted.

@Test
public void test_migrationCompleted() {
    MigrationState migrationSchedule = new MigrationStateImpl();
    ReplicaMigrationEvent event = new ReplicaMigrationEventImpl(migrationSchedule, 0, 0, null, null, true, 0L);
    adapter.onEvent(event);
    verify(listener, never()).migrationStarted(any(MigrationState.class));
    verify(listener, never()).migrationFinished(any(MigrationState.class));
    verify(listener, never()).replicaMigrationFailed(any(ReplicaMigrationEvent.class));
    verify(listener).replicaMigrationCompleted(event);
}
Also used : MigrationState(com.hazelcast.partition.MigrationState) ReplicaMigrationEventImpl(com.hazelcast.internal.partition.ReplicaMigrationEventImpl) MigrationStateImpl(com.hazelcast.internal.partition.MigrationStateImpl) ReplicaMigrationEvent(com.hazelcast.partition.ReplicaMigrationEvent) ParallelJVMTest(com.hazelcast.test.annotation.ParallelJVMTest) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test)

Example 7 with ReplicaMigrationEvent

use of com.hazelcast.partition.ReplicaMigrationEvent in project hazelcast by hazelcast.

the class MigrationListenerAdapterTest method test_migrationProcessStarted.

@Test
public void test_migrationProcessStarted() {
    MigrationState migrationSchedule = new MigrationStateImpl();
    ReplicaMigrationEvent event = new ReplicaMigrationEventImpl(migrationSchedule, MIGRATION_STARTED_PARTITION_ID, 0, null, null, true, 0L);
    adapter.onEvent(event);
    verify(listener).migrationStarted(migrationSchedule);
    verify(listener, never()).migrationFinished(any(MigrationStateImpl.class));
    verify(listener, never()).replicaMigrationCompleted(any(ReplicaMigrationEvent.class));
    verify(listener, never()).replicaMigrationFailed(any(ReplicaMigrationEvent.class));
}
Also used : MigrationState(com.hazelcast.partition.MigrationState) ReplicaMigrationEventImpl(com.hazelcast.internal.partition.ReplicaMigrationEventImpl) MigrationStateImpl(com.hazelcast.internal.partition.MigrationStateImpl) ReplicaMigrationEvent(com.hazelcast.partition.ReplicaMigrationEvent) ParallelJVMTest(com.hazelcast.test.annotation.ParallelJVMTest) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test)

Aggregations

ReplicaMigrationEventImpl (com.hazelcast.internal.partition.ReplicaMigrationEventImpl)7 ReplicaMigrationEvent (com.hazelcast.partition.ReplicaMigrationEvent)7 MigrationStateImpl (com.hazelcast.internal.partition.MigrationStateImpl)4 MigrationState (com.hazelcast.partition.MigrationState)4 ParallelJVMTest (com.hazelcast.test.annotation.ParallelJVMTest)4 QuickTest (com.hazelcast.test.annotation.QuickTest)4 Test (org.junit.Test)4 Member (com.hazelcast.cluster.Member)1 ClusterServiceImpl (com.hazelcast.internal.cluster.impl.ClusterServiceImpl)1 PartitionReplica (com.hazelcast.internal.partition.PartitionReplica)1