Skip to content

Commit 0ef8d7c

Browse files
committed
[UNDERTOW-2449] Disable PushResourceRSTTestCase. We are still seeing failures in CI.
Signed-off-by: Flavia Rainone <[email protected]>
1 parent 1d1371f commit 0ef8d7c

File tree

1 file changed

+37
-40
lines changed

1 file changed

+37
-40
lines changed

core/src/test/java/io/undertow/protocols/http2/PushResourceRSTTestCase.java

Lines changed: 37 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -17,42 +17,6 @@
1717
*/
1818
package io.undertow.protocols.http2;
1919

20-
import static io.undertow.server.protocol.http2.Http2OpenListener.HTTP2;
21-
import static io.undertow.testutils.StopServerWithExternalWorkerUtils.stopWorker;
22-
import static java.security.AccessController.doPrivileged;
23-
24-
import java.io.IOException;
25-
import java.net.InetSocketAddress;
26-
import java.net.URI;
27-
import java.security.PrivilegedAction;
28-
import java.util.List;
29-
import java.util.ServiceLoader;
30-
import java.util.concurrent.CopyOnWriteArrayList;
31-
import java.util.concurrent.CountDownLatch;
32-
import java.util.concurrent.TimeUnit;
33-
import java.util.concurrent.atomic.AtomicInteger;
34-
35-
import org.jboss.logging.Logger;
36-
import org.junit.AfterClass;
37-
import org.junit.Assert;
38-
import org.junit.Assume;
39-
import org.junit.BeforeClass;
40-
import org.junit.Test;
41-
import org.junit.experimental.categories.Category;
42-
import org.junit.runner.RunWith;
43-
import org.xnio.ChannelListener;
44-
import org.xnio.ChannelListeners;
45-
import org.xnio.FutureResult;
46-
import org.xnio.IoFuture;
47-
import org.xnio.IoUtils;
48-
import org.xnio.OptionMap;
49-
import org.xnio.Options;
50-
import org.xnio.StreamConnection;
51-
import org.xnio.Xnio;
52-
import org.xnio.XnioWorker;
53-
import org.xnio.channels.StreamSinkChannel;
54-
import org.xnio.ssl.SslConnection;
55-
5620
import io.undertow.Undertow;
5721
import io.undertow.UndertowLogger;
5822
import io.undertow.UndertowOptions;
@@ -71,15 +35,49 @@
7135
import io.undertow.protocols.ssl.UndertowXnioSsl;
7236
import io.undertow.server.HttpServerExchange;
7337
import io.undertow.server.handlers.PathHandler;
74-
import io.undertow.testutils.AjpIgnore;
7538
import io.undertow.testutils.DefaultServer;
76-
import io.undertow.testutils.ProxyIgnore;
7739
import io.undertow.testutils.category.UnitTest;
7840
import io.undertow.util.AttachmentKey;
7941
import io.undertow.util.Headers;
8042
import io.undertow.util.Methods;
8143
import io.undertow.util.StatusCodes;
8244
import io.undertow.util.StringReadChannelListener;
45+
import org.jboss.logging.Logger;
46+
import org.junit.AfterClass;
47+
import org.junit.Assert;
48+
import org.junit.Assume;
49+
import org.junit.BeforeClass;
50+
import org.junit.Ignore;
51+
import org.junit.Test;
52+
import org.junit.experimental.categories.Category;
53+
import org.junit.runner.RunWith;
54+
import org.xnio.ChannelListener;
55+
import org.xnio.ChannelListeners;
56+
import org.xnio.FutureResult;
57+
import org.xnio.IoFuture;
58+
import org.xnio.IoUtils;
59+
import org.xnio.OptionMap;
60+
import org.xnio.Options;
61+
import org.xnio.StreamConnection;
62+
import org.xnio.Xnio;
63+
import org.xnio.XnioWorker;
64+
import org.xnio.channels.StreamSinkChannel;
65+
import org.xnio.ssl.SslConnection;
66+
67+
import java.io.IOException;
68+
import java.net.InetSocketAddress;
69+
import java.net.URI;
70+
import java.security.PrivilegedAction;
71+
import java.util.List;
72+
import java.util.ServiceLoader;
73+
import java.util.concurrent.CopyOnWriteArrayList;
74+
import java.util.concurrent.CountDownLatch;
75+
import java.util.concurrent.TimeUnit;
76+
import java.util.concurrent.atomic.AtomicInteger;
77+
78+
import static io.undertow.server.protocol.http2.Http2OpenListener.HTTP2;
79+
import static io.undertow.testutils.StopServerWithExternalWorkerUtils.stopWorker;
80+
import static java.security.AccessController.doPrivileged;
8381

8482
/**
8583
* Test RST frames handling on push. This test mimics rapid refresh on client side, which will result in push requests from
@@ -88,8 +86,7 @@
8886
*/
8987
@Category(UnitTest.class)
9088
@RunWith(DefaultServer.class)
91-
@ProxyIgnore
92-
@AjpIgnore
89+
@Ignore
9390
public class PushResourceRSTTestCase {
9491
private static final Logger log = Logger.getLogger(PushResourceRSTTestCase.class);
9592
private static final String PUSHER = "/pusher";

0 commit comments

Comments
 (0)