blob: ae28d4c79a924979f3f698b25cde0257fd5b0176 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.sling.distribution.journal.kafka;
import static org.hamcrest.Matchers.equalTo;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertThat;
import static org.junit.Assert.assertTrue;
import java.io.Closeable;
import java.util.UUID;
import java.util.concurrent.Semaphore;
import java.util.concurrent.TimeUnit;
import org.apache.sling.distribution.journal.HandlerAdapter;
import org.apache.sling.distribution.journal.MessageInfo;
import org.apache.sling.distribution.journal.MessageSender;
import org.apache.sling.distribution.journal.MessagingProvider;
import org.apache.sling.distribution.journal.Reset;
import org.apache.sling.distribution.journal.kafka.util.KafkaRule;
import org.apache.sling.distribution.journal.messages.Messages.DiscoveryMessage;
import org.apache.sling.distribution.journal.messages.Messages.SubscriberConfiguration;
import org.junit.Before;
import org.junit.ClassRule;
import org.junit.Test;
import org.mockito.MockitoAnnotations;
public class MessagingTest {
private String topicName;
private Semaphore sem = new Semaphore(0);
private volatile MessageInfo lastInfo;
@ClassRule
public static KafkaRule kafka = new KafkaRule();
private MessagingProvider provider;
@Before
public void before() {
MockitoAnnotations.initMocks(this);
topicName = "MessagingTest" + UUID.randomUUID().toString();
this.provider = kafka.getProvider();
}
@Test
public void testSendReceive() throws Exception {
HandlerAdapter<DiscoveryMessage> handler = HandlerAdapter.create(DiscoveryMessage.class, this::handle);
Closeable poller = provider.createPoller(topicName, Reset.earliest, handler);
MessageSender<DiscoveryMessage> messageSender = provider.createSender();
messageSender.send(topicName, createMessage());
assertReceived("Consumer started from earliest .. should see our message");
messageSender.send(topicName, createMessage());
assertReceived("Should also consume a second message");
poller.close();
}
@Test
public void testAssign() throws Exception {
DiscoveryMessage msg = createMessage();
MessageSender<DiscoveryMessage> messageSender = provider.createSender();
messageSender.send(topicName, msg);
HandlerAdapter<DiscoveryMessage> handler = HandlerAdapter.create(DiscoveryMessage.class, this::handle);
try (Closeable poller = provider.createPoller(topicName, Reset.earliest, handler)) {
assertReceived("Starting from earliest .. should see our message");
}
long offset = lastInfo.getOffset();
String assign = "0:" + offset;
try (Closeable poller = provider.createPoller(topicName, Reset.latest, assign, handler)) {
assertReceived("Starting from old offset .. should see our message");
assertThat(lastInfo.getOffset(), equalTo(offset));
}
String invalid = "0:32532523453";
try (Closeable poller1 = provider.createPoller(topicName, Reset.latest, invalid, handler)) {
assertNotReceived("Should see old message as we start from earliest");
}
String invalid1 = "0:32532523453";
try (Closeable poller2 = provider.createPoller(topicName, Reset.earliest, invalid1, handler)) {
assertReceived("Should not see any message as we start from latest");
}
}
private DiscoveryMessage createMessage() {
return DiscoveryMessage.newBuilder()
.setSubAgentName("sub1agent")
.setSubSlingId("subsling")
.setSubscriberConfiguration(SubscriberConfiguration
.newBuilder()
.setEditable(false)
.setMaxRetries(-1)
.build())
.build();
}
private void assertReceived(String message) throws InterruptedException {
assertTrue(message, sem.tryAcquire(30, TimeUnit.SECONDS));
}
private void assertNotReceived(String message) throws InterruptedException {
assertFalse(message, sem.tryAcquire(2, TimeUnit.SECONDS));
}
private void handle(MessageInfo info, DiscoveryMessage message) {
this.lastInfo = info;
this.sem.release();
}
}