Search in sources :

Example 21 with Address

use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.

the class AddressImplTest method testB.

@Test
public void testB() {
    SimpleString s1 = new SimpleString("a.b.c.d");
    SimpleString s2 = new SimpleString("a.b.x.e");
    SimpleString s3 = new SimpleString("a.b.c.*");
    Address a1 = new AddressImpl(s1);
    Address a2 = new AddressImpl(s2);
    Address w = new AddressImpl(s3);
    Assert.assertTrue(a1.matches(w));
    Assert.assertFalse(a2.matches(w));
}
Also used : Address(org.apache.activemq.artemis.core.postoffice.Address) SimpleString(org.apache.activemq.artemis.api.core.SimpleString) AddressImpl(org.apache.activemq.artemis.core.postoffice.impl.AddressImpl) Test(org.junit.Test)

Example 22 with Address

use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.

the class AddressImplTest method testC.

@Test
public void testC() {
    SimpleString s1 = new SimpleString("a.b.c.d");
    SimpleString s2 = new SimpleString("a.b.c.x");
    SimpleString s3 = new SimpleString("a.b.*.d");
    Address a1 = new AddressImpl(s1);
    Address a2 = new AddressImpl(s2);
    Address w = new AddressImpl(s3);
    Assert.assertTrue(a1.matches(w));
    Assert.assertFalse(a2.matches(w));
}
Also used : Address(org.apache.activemq.artemis.core.postoffice.Address) SimpleString(org.apache.activemq.artemis.api.core.SimpleString) AddressImpl(org.apache.activemq.artemis.core.postoffice.impl.AddressImpl) Test(org.junit.Test)

Example 23 with Address

use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.

the class AddressImplTest method testQ.

@Test
public void testQ() {
    SimpleString s1 = new SimpleString("a.b.c.d");
    SimpleString s3 = new SimpleString("#a.b.c");
    Address a1 = new AddressImpl(s1);
    Address w = new AddressImpl(s3);
    Assert.assertFalse(a1.matches(w));
}
Also used : Address(org.apache.activemq.artemis.core.postoffice.Address) SimpleString(org.apache.activemq.artemis.api.core.SimpleString) AddressImpl(org.apache.activemq.artemis.core.postoffice.impl.AddressImpl) Test(org.junit.Test)

Example 24 with Address

use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.

the class AddressImplTest method testN.

@Test
public void testN() {
    SimpleString s1 = new SimpleString("usd.stock");
    SimpleString s2 = new SimpleString("a.b.x.e");
    SimpleString s3 = new SimpleString("*.stock.#");
    Address a1 = new AddressImpl(s1);
    Address a2 = new AddressImpl(s2);
    Address w = new AddressImpl(s3);
    Assert.assertTrue(a1.matches(w));
    Assert.assertFalse(a2.matches(w));
}
Also used : Address(org.apache.activemq.artemis.core.postoffice.Address) SimpleString(org.apache.activemq.artemis.api.core.SimpleString) AddressImpl(org.apache.activemq.artemis.core.postoffice.impl.AddressImpl) Test(org.junit.Test)

Example 25 with Address

use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.

the class AddressImplTest method testS.

@Test
public void testS() {
    SimpleString s1 = new SimpleString("a.b.c.d");
    SimpleString s3 = new SimpleString("a.b.c*");
    Address a1 = new AddressImpl(s1);
    Address w = new AddressImpl(s3);
    Assert.assertFalse(a1.matches(w));
}
Also used : Address(org.apache.activemq.artemis.core.postoffice.Address) SimpleString(org.apache.activemq.artemis.api.core.SimpleString) AddressImpl(org.apache.activemq.artemis.core.postoffice.impl.AddressImpl) Test(org.junit.Test)

Aggregations

Address (org.apache.activemq.artemis.core.postoffice.Address)31 SimpleString (org.apache.activemq.artemis.api.core.SimpleString)24 Test (org.junit.Test)24 AddressImpl (org.apache.activemq.artemis.core.postoffice.impl.AddressImpl)23 Bindings (org.apache.activemq.artemis.core.postoffice.Bindings)4 Binding (org.apache.activemq.artemis.core.postoffice.Binding)3 Field (java.lang.reflect.Field)1 Map (java.util.Map)1 QueueBinding (org.apache.activemq.artemis.core.postoffice.QueueBinding)1 WildcardAddressManager (org.apache.activemq.artemis.core.postoffice.impl.WildcardAddressManager)1 AddressInfo (org.apache.activemq.artemis.core.server.impl.AddressInfo)1 CompositeAddress (org.apache.activemq.artemis.utils.CompositeAddress)1