Search in sources :

Example 1 with DebugReceiveChannelEndpoint

use of io.aeron.driver.ext.DebugReceiveChannelEndpoint in project aeron by real-logic.

the class PubAndSubTest method shouldReceivePublishedMessageBatchedWithDataLoss.

@Theory
@Test(timeout = 10_000)
public void shouldReceivePublishedMessageBatchedWithDataLoss(final String channel) {
    if (IPC_URI.equals(channel)) {
        return;
    }
    final int termBufferLength = 64 * 1024;
    final int numMessagesInTermBuffer = 64;
    final int messageLength = (termBufferLength / numMessagesInTermBuffer) - HEADER_LENGTH;
    final int numMessagesToSend = 2 * numMessagesInTermBuffer;
    final int numBatches = 4;
    final int numMessagesPerBatch = numMessagesToSend / numBatches;
    final LossReport lossReport = mock(LossReport.class);
    context.lossReport(lossReport);
    final LossGenerator dataLossGenerator = DebugChannelEndpointConfiguration.lossGeneratorSupplier(0.10, 0xcafebabeL);
    final LossGenerator noLossGenerator = DebugChannelEndpointConfiguration.lossGeneratorSupplier(0, 0);
    context.publicationTermBufferLength(termBufferLength);
    context.sendChannelEndpointSupplier((udpChannel, statusIndicator, context) -> new DebugSendChannelEndpoint(udpChannel, statusIndicator, context, noLossGenerator, noLossGenerator));
    context.receiveChannelEndpointSupplier((udpChannel, dispatcher, statusIndicator, context) -> new DebugReceiveChannelEndpoint(udpChannel, dispatcher, statusIndicator, context, dataLossGenerator, noLossGenerator));
    launch(channel);
    for (int i = 0; i < numBatches; i++) {
        for (int j = 0; j < numMessagesPerBatch; j++) {
            while (publication.offer(buffer, 0, messageLength) < 0L) {
                SystemTest.checkInterruptedStatus();
                Thread.yield();
            }
        }
        final MutableInteger fragmentsRead = new MutableInteger();
        SystemTest.executeUntil(() -> fragmentsRead.value >= numMessagesPerBatch, (j) -> {
            final int fragments = subscription.poll(fragmentHandler, 10);
            if (0 == fragments) {
                Thread.yield();
            }
            fragmentsRead.value += fragments;
        }, Integer.MAX_VALUE, TimeUnit.MILLISECONDS.toNanos(900));
    }
    verify(fragmentHandler, times(numMessagesToSend)).onFragment(any(DirectBuffer.class), anyInt(), eq(messageLength), any(Header.class));
    verify(lossReport).createEntry(anyLong(), anyLong(), anyInt(), eq(STREAM_ID), anyString(), anyString());
}
Also used : DirectBuffer(org.agrona.DirectBuffer) DebugReceiveChannelEndpoint(io.aeron.driver.ext.DebugReceiveChannelEndpoint) LossGenerator(io.aeron.driver.ext.LossGenerator) Header(io.aeron.logbuffer.Header) MutableInteger(org.agrona.collections.MutableInteger) LossReport(io.aeron.driver.reports.LossReport) DebugSendChannelEndpoint(io.aeron.driver.ext.DebugSendChannelEndpoint) DataPoint(org.junit.experimental.theories.DataPoint) DebugSendChannelEndpoint(io.aeron.driver.ext.DebugSendChannelEndpoint) DebugReceiveChannelEndpoint(io.aeron.driver.ext.DebugReceiveChannelEndpoint) Theory(org.junit.experimental.theories.Theory) Test(org.junit.Test)

Example 2 with DebugReceiveChannelEndpoint

use of io.aeron.driver.ext.DebugReceiveChannelEndpoint in project Aeron by real-logic.

the class JavaTestMediaDriver method enableLossGenerationOnReceive.

public static void enableLossGenerationOnReceive(final MediaDriver.Context context, final double rate, final long seed, final boolean loseDataMessages, final boolean loseControlMessages) {
    final LossGenerator dataLossGenerator = loseDataMessages ? DebugChannelEndpointConfiguration.lossGeneratorSupplier(rate, seed) : DebugChannelEndpointConfiguration.lossGeneratorSupplier(0, 0);
    final LossGenerator controlLossGenerator = loseControlMessages ? DebugChannelEndpointConfiguration.lossGeneratorSupplier(rate, seed) : DebugChannelEndpointConfiguration.lossGeneratorSupplier(0, 0);
    final ReceiveChannelEndpointSupplier endpointSupplier = (udpChannel, dispatcher, statusIndicator, ctx) -> {
        return new DebugReceiveChannelEndpoint(udpChannel, dispatcher, statusIndicator, ctx, dataLossGenerator, controlLossGenerator);
    };
    context.receiveChannelEndpointSupplier(endpointSupplier);
}
Also used : MediaDriver(io.aeron.driver.MediaDriver) ReceiveChannelEndpointSupplier(io.aeron.driver.ReceiveChannelEndpointSupplier) LossGenerator(io.aeron.driver.ext.LossGenerator) DebugChannelEndpointConfiguration(io.aeron.driver.ext.DebugChannelEndpointConfiguration) DebugReceiveChannelEndpoint(io.aeron.driver.ext.DebugReceiveChannelEndpoint) CountersManager(org.agrona.concurrent.status.CountersManager) AgentInvoker(org.agrona.concurrent.AgentInvoker) DebugReceiveChannelEndpoint(io.aeron.driver.ext.DebugReceiveChannelEndpoint) LossGenerator(io.aeron.driver.ext.LossGenerator) ReceiveChannelEndpointSupplier(io.aeron.driver.ReceiveChannelEndpointSupplier)

Example 3 with DebugReceiveChannelEndpoint

use of io.aeron.driver.ext.DebugReceiveChannelEndpoint in project aeron by real-logic.

the class PubAndSubTest method shouldReceivePublishedMessageOneForOneWithDataLoss.

@Theory
@Test(timeout = 10_000)
public void shouldReceivePublishedMessageOneForOneWithDataLoss(final String channel) {
    if (IPC_URI.equals(channel)) {
        return;
    }
    final int termBufferLength = 64 * 1024;
    final int numMessagesInTermBuffer = 64;
    final int messageLength = (termBufferLength / numMessagesInTermBuffer) - HEADER_LENGTH;
    final int numMessagesToSend = 2 * numMessagesInTermBuffer;
    final LossReport lossReport = mock(LossReport.class);
    context.lossReport(lossReport);
    final LossGenerator dataLossGenerator = DebugChannelEndpointConfiguration.lossGeneratorSupplier(0.10, 0xcafebabeL);
    final LossGenerator noLossGenerator = DebugChannelEndpointConfiguration.lossGeneratorSupplier(0, 0);
    context.publicationTermBufferLength(termBufferLength);
    context.sendChannelEndpointSupplier((udpChannel, statusIndicator, context) -> new DebugSendChannelEndpoint(udpChannel, statusIndicator, context, noLossGenerator, noLossGenerator));
    context.receiveChannelEndpointSupplier((udpChannel, dispatcher, statusIndicator, context) -> new DebugReceiveChannelEndpoint(udpChannel, dispatcher, statusIndicator, context, dataLossGenerator, noLossGenerator));
    launch(channel);
    for (int i = 0; i < numMessagesToSend; i++) {
        while (publication.offer(buffer, 0, messageLength) < 0L) {
            Thread.yield();
        }
        final MutableInteger mutableInteger = new MutableInteger();
        SystemTest.executeUntil(() -> mutableInteger.value > 0, (j) -> {
            final int fragments = subscription.poll(fragmentHandler, 10);
            if (0 == fragments) {
                Thread.yield();
            }
            mutableInteger.value += fragments;
        }, Integer.MAX_VALUE, TimeUnit.MILLISECONDS.toNanos(900));
    }
    verify(fragmentHandler, times(numMessagesToSend)).onFragment(any(DirectBuffer.class), anyInt(), eq(messageLength), any(Header.class));
    verify(lossReport).createEntry(anyLong(), anyLong(), anyInt(), eq(STREAM_ID), anyString(), anyString());
}
Also used : DirectBuffer(org.agrona.DirectBuffer) DebugReceiveChannelEndpoint(io.aeron.driver.ext.DebugReceiveChannelEndpoint) LossGenerator(io.aeron.driver.ext.LossGenerator) Header(io.aeron.logbuffer.Header) MutableInteger(org.agrona.collections.MutableInteger) LossReport(io.aeron.driver.reports.LossReport) DebugSendChannelEndpoint(io.aeron.driver.ext.DebugSendChannelEndpoint) DataPoint(org.junit.experimental.theories.DataPoint) DebugSendChannelEndpoint(io.aeron.driver.ext.DebugSendChannelEndpoint) DebugReceiveChannelEndpoint(io.aeron.driver.ext.DebugReceiveChannelEndpoint) Theory(org.junit.experimental.theories.Theory) Test(org.junit.Test)

Aggregations

DebugReceiveChannelEndpoint (io.aeron.driver.ext.DebugReceiveChannelEndpoint)3 LossGenerator (io.aeron.driver.ext.LossGenerator)3 DebugSendChannelEndpoint (io.aeron.driver.ext.DebugSendChannelEndpoint)2 LossReport (io.aeron.driver.reports.LossReport)2 Header (io.aeron.logbuffer.Header)2 DirectBuffer (org.agrona.DirectBuffer)2 MutableInteger (org.agrona.collections.MutableInteger)2 Test (org.junit.Test)2 DataPoint (org.junit.experimental.theories.DataPoint)2 Theory (org.junit.experimental.theories.Theory)2 MediaDriver (io.aeron.driver.MediaDriver)1 ReceiveChannelEndpointSupplier (io.aeron.driver.ReceiveChannelEndpointSupplier)1 DebugChannelEndpointConfiguration (io.aeron.driver.ext.DebugChannelEndpointConfiguration)1 AgentInvoker (org.agrona.concurrent.AgentInvoker)1 CountersManager (org.agrona.concurrent.status.CountersManager)1