io.github.fallwizard.rabbitmq.TestExample Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rabbitmq-mgmt Show documentation
Show all versions of rabbitmq-mgmt Show documentation
Manage your RabbitMQ services programmatically
The newest version!
package io.github.fallwizard.rabbitmq;
import org.junit.*;
import io.github.fallwizard.rabbitmq.mgmt.RabbitMgmtService;
import io.github.fallwizard.rabbitmq.mgmt.model.Binding;
import io.github.fallwizard.rabbitmq.mgmt.model.Exchange;
import io.github.fallwizard.rabbitmq.mgmt.model.Message;
import io.github.fallwizard.rabbitmq.mgmt.model.Queue;
import io.github.fallwizard.rabbitmq.test.RabbitAssert;
import static io.github.fallwizard.rabbitmq.test.ExchangeMatchers.*;
import static io.github.fallwizard.rabbitmq.test.QueueMatchers.*;
import static io.github.fallwizard.rabbitmq.test.BindingMatchers.*;
/**
* @author Richard Clayton (Berico Technologies)
*/
//@Ignore("Just an example. Assumes you have an RabbitMQ Mgmt Console at localhost:15672")
public class TestExample {
static RabbitMgmtService mgmt;
static RabbitAssert rabbitAssert;
@BeforeClass
public static void setup(){
mgmt = RabbitMgmtService.builder().build();
rabbitAssert = new RabbitAssert(mgmt);
mgmt.exchanges().create(new Exchange("test.example.exchange"));
mgmt.queues().create(new Queue("test.example.queue"));
mgmt.queues().create(new Queue("test.example.queue2"));
mgmt.bindings().create(new Binding("test.example.exchange", "test.example.queue", "test.topic"));
mgmt.bindings().create(new Binding("test.example.exchange", "test.example.queue2", "test.topic2"));
}
@AfterClass
public static void teardown(){
mgmt.exchanges().delete("test.example.exchange");
mgmt.queues().delete("test.example.queue");
mgmt.queues().delete("test.example.queue2");
}
@Test
public void test_topology_state_and_make_other_assertions(){
rabbitAssert.hasExchange("test.example.exchange", isDirectType());
rabbitAssert.hasQueue("test.example.queue", isNotQDurable());
rabbitAssert.hasEtoQBinding("test.example.exchange", "test.example.queue", routingKey("test.topic"), isExToQ());
rabbitAssert.verifyDelivery()
.on("test.example.queue")
.butNotOn("test.example.queue2")
.deliver("test.example.exchange",
Message.builder()
.routingKey("test.topic")
.payload("Hello Rabbid Mgmt!")
.build());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy