/** * 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 * <p> * http://www.apache.org/licenses/LICENSE-2.0 * <p> * 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.activemq.artemis.tests.integration.mqtt.imported; import java.lang.reflect.Field; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.CountDownLatch; import java.util.concurrent.TimeUnit; import org.apache.activemq.artemis.api.core.SimpleString; import org.apache.activemq.artemis.core.postoffice.Binding; import org.apache.activemq.artemis.core.protocol.mqtt.MQTTConnectionManager; import org.apache.activemq.artemis.core.protocol.mqtt.MQTTSession; import org.apache.activemq.artemis.core.server.QueueQueryResult; import org.apache.activemq.artemis.utils.collections.ConcurrentHashSet; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class MQTTFQQNTest extends MQTTTestSupport { private static final Logger LOG = LoggerFactory.getLogger(MQTTFQQNTest.class); @Override @Before public void setUp() throws Exception { Field sessions = MQTTSession.class.getDeclaredField("SESSIONS"); sessions.setAccessible(true); sessions.set(null, new ConcurrentHashMap<>()); Field connectedClients = MQTTConnectionManager.class.getDeclaredField("CONNECTED_CLIENTS"); connectedClients.setAccessible(true); connectedClients.set(null, new ConcurrentHashSet<>()); super.setUp(); } @Override @After public void tearDown() throws Exception { super.tearDown(); } @Test public void testMQTTSubNames() throws Exception { final MQTTClientProvider subscriptionProvider = getMQTTClientProvider(); initializeConnection(subscriptionProvider); try { subscriptionProvider.subscribe("foo/bah", AT_MOST_ONCE); Map<SimpleString, Binding> allBindings = server.getPostOffice().getAllBindings(); assertEquals(1, allBindings.size()); Binding b = allBindings.values().iterator().next(); //check that query using bare queue name works as before QueueQueryResult result = server.queueQuery(b.getUniqueName()); assertTrue(result.isExists()); assertEquals(result.getAddress(), new SimpleString("foo.bah")); assertEquals(b.getUniqueName(), result.getName()); //check that queue query using FQQN returns FQQN result = server.queueQuery(new SimpleString("foo.bah::" + b.getUniqueName())); assertTrue(result.isExists()); assertEquals(new SimpleString("foo.bah"), result.getAddress()); assertEquals(new SimpleString("foo.bah::" + b.getUniqueName()), result.getName()); } finally { subscriptionProvider.disconnect(); } } @Test(timeout = 60 * 1000) public void testSendAndReceiveMQTTSpecial1() throws Exception { final MQTTClientProvider subscriptionProvider = getMQTTClientProvider(); initializeConnection(subscriptionProvider); subscriptionProvider.subscribe("foo/bah::", AT_MOST_ONCE); final CountDownLatch latch = new CountDownLatch(NUM_MESSAGES); Thread thread = new Thread(new Runnable() { @Override public void run() { for (int i = 0; i < NUM_MESSAGES; i++) { try { byte[] payload = subscriptionProvider.receive(10000); assertNotNull("Should get a message", payload); latch.countDown(); } catch (Exception e) { e.printStackTrace(); break; } } } }); thread.start(); final MQTTClientProvider publishProvider = getMQTTClientProvider(); initializeConnection(publishProvider); for (int i = 0; i < NUM_MESSAGES; i++) { String payload = "Message " + i; publishProvider.publish("foo/bah", payload.getBytes(), AT_LEAST_ONCE); } latch.await(10, TimeUnit.SECONDS); assertEquals(0, latch.getCount()); subscriptionProvider.disconnect(); publishProvider.disconnect(); } @Test(timeout = 60 * 1000) public void testSendAndReceiveMQTTSpecial2() throws Exception { final MQTTClientProvider subscriptionProvider = getMQTTClientProvider(); initializeConnection(subscriptionProvider); try { subscriptionProvider.subscribe("::foo/bah", AT_MOST_ONCE); fail("should get exception!"); } catch (Exception e) { //expected } finally { subscriptionProvider.disconnect(); } //:: initializeConnection(subscriptionProvider); try { subscriptionProvider.subscribe("::", AT_MOST_ONCE); fail("should get exception!"); } catch (Exception e) { //expected } finally { subscriptionProvider.disconnect(); } } @Test public void testMQTTSubNamesSpecial() throws Exception { final MQTTClientProvider subscriptionProvider = getMQTTClientProvider(); initializeConnection(subscriptionProvider); try { subscriptionProvider.subscribe("foo/bah", AT_MOST_ONCE); Map<SimpleString, Binding> allBindings = server.getPostOffice().getAllBindings(); assertEquals(1, allBindings.size()); Binding b = allBindings.values().iterator().next(); //check ::queue QueueQueryResult result = server.queueQuery(new SimpleString("::" + b.getUniqueName())); assertTrue(result.isExists()); assertEquals(new SimpleString("foo.bah"), result.getAddress()); assertEquals(new SimpleString("::" + b.getUniqueName()), result.getName()); //check queue:: result = server.queueQuery(new SimpleString(b.getUniqueName() + "::")); assertFalse(result.isExists()); //check :: result = server.queueQuery(new SimpleString("::")); assertFalse(result.isExists()); } finally { subscriptionProvider.disconnect(); } } }