nats.client.MockNats Maven / Gradle / Ivy
/*
* Copyright (c) 2013 Mike Heath. All rights reserved.
*
* Licensed 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 nats.client;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.Executor;
/**
* Provide a mock instance of {@link Nats} to use primarily for testing purposes. This mock Nats does not yet support
* subscribing to subjects with wild cards.
*
* @author Mike Heath
*/
public class MockNats implements Nats {
private volatile boolean connected = true;
private final Map> subscriptions = new HashMap<>();
private final Executor executor = new Executor() {
private final Logger logger = LoggerFactory.getLogger(getClass());
@Override
public void execute(Runnable command) {
try {
command.run();
} catch (Exception e) {
logger.error("Error invoking callback", e);
}
}
};
@Override
public boolean isConnected() {
return connected;
}
@Override
public boolean isClosed() {
return !connected;
}
@Override
public void close() {
connected = false;
}
@Override
public void publish(String subject) {
publish(subject, null);
}
@Override
public void publish(String subject, String body) {
publish(subject, body, null);
}
@Override
public void publish(String subject, String body, String replyTo) {
final Collection mockSubscriptions = subscriptions.get(subject);
if (mockSubscriptions != null) {
for (DefaultSubscription subscription : mockSubscriptions) {
subscription.onMessage(subject, body, replyTo, executor);
}
}
}
@Override
public Subscription subscribe(String subject, MessageHandler... messageHandlers) {
return subscribe(subject, null, null, messageHandlers);
}
@Override
public Subscription subscribe(String subject, String queueGroup, MessageHandler... messageHandlers) {
return subscribe(subject, queueGroup, null, messageHandlers);
}
@Override
public Subscription subscribe(String subject, Integer maxMessages, MessageHandler... messageHandlers) {
return subscribe(subject, null, maxMessages, messageHandlers);
}
@Override
public Subscription subscribe(String subject, String queueGroup, Integer maxMessages, MessageHandler... messageHandlers) {
final DefaultSubscription subscription = new DefaultSubscription(subject, queueGroup, maxMessages, messageHandlers);
Collection mockSubscriptions = subscriptions.get(subject);
if (mockSubscriptions == null) {
mockSubscriptions = new ArrayList<>();
subscriptions.put(subject, mockSubscriptions);
}
mockSubscriptions.add(subscription);
return subscription;
}
@Override
public Request request(String subject, String message, MessageHandler... messageHandlers) {
return null;
}
@Override
public Request request(String subject, MessageHandler... messageHandlers) {
return null;
}
@Override
public Request request(String subject, String message, Integer maxReplies, MessageHandler... messageHandlers) {
return null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy