Skip to content

Commit

Permalink
Re-enable QoS tests
Browse files Browse the repository at this point in the history
Now fix is in master and 3.9.x.

(cherry picked from commit 12f9f75)
  • Loading branch information
acogoluegnes committed Jul 30, 2021
1 parent 1a9008b commit 8c3504f
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/test/java/com/rabbitmq/client/test/functional/QosTests.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
import java.util.Map;
import java.util.concurrent.TimeoutException;

import org.junit.Ignore;
import org.junit.Test;

import com.rabbitmq.client.AMQP;
Expand Down Expand Up @@ -120,7 +119,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
drain(c, 2);
}

@Ignore
@Test public void noAckObeysLimit()
throws IOException
{
Expand All @@ -144,7 +142,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
drain(c2, 1);
}

@Ignore
@Test public void permutations()
throws IOException
{
Expand All @@ -162,7 +159,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
}
}

@Ignore
@Test public void fairness()
throws IOException
{
Expand Down Expand Up @@ -192,7 +188,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)

}

@Ignore
@Test public void singleChannelAndQueueFairness()
throws IOException
{
Expand Down Expand Up @@ -242,7 +237,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
assertTrue(counts.get("c2").intValue() > 0);
}

@Ignore
@Test public void consumerLifecycle()
throws IOException
{
Expand All @@ -264,7 +258,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
channel.queueDelete(queue);
}

@Ignore
@Test public void setLimitAfterConsume()
throws IOException
{
Expand All @@ -289,7 +282,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
drain(c, 1);
}

@Ignore
@Test public void limitDecrease()
throws IOException
{
Expand All @@ -310,7 +302,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
drain(c, 2);
}

@Ignore
@Test public void limitingMultipleChannels()
throws IOException
{
Expand Down Expand Up @@ -347,7 +338,6 @@ public static List<Delivery> drain(QueueingConsumer c, int n)
drain(c, 1);
}

@Ignore
@Test public void recoverReducesLimit() throws Exception {
channel.basicQos(2, true);
QueueingConsumer c = new QueueingConsumer(channel);
Expand Down

0 comments on commit 8c3504f

Please sign in to comment.