use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.
the class AddressImplTest method testU.
@Test
public void testU() {
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));
}
use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.
the class AddressImplTest method testP.
@Test
public void testP() {
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));
}
use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.
the class AddressImplTest method testH.
@Test
public void testH() {
SimpleString s1 = new SimpleString("a.b.c.d.e.f");
SimpleString s2 = new SimpleString("a.b.c.x.e.f");
SimpleString s3 = new SimpleString("#.b.#");
Address a1 = new AddressImpl(s1);
Address a2 = new AddressImpl(s2);
Address w = new AddressImpl(s3);
Assert.assertTrue(a1.matches(w));
Assert.assertTrue(a2.matches(w));
}
use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.
the class AddressImplTest method testO.
@Test
public void testO() {
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));
}
use of org.apache.activemq.artemis.core.postoffice.Address in project activemq-artemis by apache.
the class AddressImplTest method testR.
@Test
public void testR() {
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));
}
Aggregations