-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add attributes to display total number of queues and topics
- Loading branch information
Showing
3 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
activemq-unit-tests/src/test/java/org/apache/activemq/broker/jmx/BrokerViewTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package org.apache.activemq.broker.jmx; | ||
|
||
import jakarta.jms.*; | ||
import jakarta.jms.Connection; | ||
import org.apache.activemq.*; | ||
import org.apache.activemq.broker.*; | ||
import org.apache.activemq.util.*; | ||
import org.junit.*; | ||
|
||
import static org.junit.Assert.assertTrue; | ||
|
||
public class BrokerViewTest { | ||
protected BrokerService brokerService; | ||
protected ActiveMQConnectionFactory factory; | ||
protected Connection producerConnection; | ||
|
||
protected Session producerSession; | ||
protected MessageConsumer consumer; | ||
protected MessageProducer producer; | ||
protected Queue queue; | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
brokerService = new BrokerService(); | ||
brokerService.setPersistent(false); | ||
brokerService.start(); | ||
|
||
factory = new ActiveMQConnectionFactory(BrokerRegistry.getInstance().findFirst().getVmConnectorURI()); | ||
producerConnection = factory.createConnection(); | ||
producerConnection.start(); | ||
producerSession = producerConnection.createSession(false, Session.AUTO_ACKNOWLEDGE); | ||
Queue queue = producerSession.createQueue("testQueue"); | ||
producer = producerSession.createProducer(queue); | ||
producer.send(producerSession.createTextMessage("testMessage")); | ||
} | ||
|
||
@Test(timeout=120000) | ||
public void testBrokerViewRetrieveTotalQueuesAndTopicsCount() throws Exception { | ||
assertTrue(Wait.waitFor(() -> (brokerService.getAdminView()) != null)); | ||
|
||
final BrokerView view = brokerService.getAdminView(); | ||
// The total number of advisory topics | ||
assert(view.getTotalTopicsCount() == 4); | ||
// The queue created in setup | ||
assert(view.getTotalQueuesCount() == 1); | ||
} | ||
} |