|
17 | 17 | */
|
18 | 18 | package io.undertow.protocols.http2;
|
19 | 19 |
|
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 |
| - |
56 | 20 | import io.undertow.Undertow;
|
57 | 21 | import io.undertow.UndertowLogger;
|
58 | 22 | import io.undertow.UndertowOptions;
|
|
71 | 35 | import io.undertow.protocols.ssl.UndertowXnioSsl;
|
72 | 36 | import io.undertow.server.HttpServerExchange;
|
73 | 37 | import io.undertow.server.handlers.PathHandler;
|
74 |
| -import io.undertow.testutils.AjpIgnore; |
75 | 38 | import io.undertow.testutils.DefaultServer;
|
76 |
| -import io.undertow.testutils.ProxyIgnore; |
77 | 39 | import io.undertow.testutils.category.UnitTest;
|
78 | 40 | import io.undertow.util.AttachmentKey;
|
79 | 41 | import io.undertow.util.Headers;
|
80 | 42 | import io.undertow.util.Methods;
|
81 | 43 | import io.undertow.util.StatusCodes;
|
82 | 44 | 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; |
83 | 81 |
|
84 | 82 | /**
|
85 | 83 | * Test RST frames handling on push. This test mimics rapid refresh on client side, which will result in push requests from
|
|
88 | 86 | */
|
89 | 87 | @Category(UnitTest.class)
|
90 | 88 | @RunWith(DefaultServer.class)
|
91 |
| -@ProxyIgnore |
92 |
| -@AjpIgnore |
| 89 | +@Ignore |
93 | 90 | public class PushResourceRSTTestCase {
|
94 | 91 | private static final Logger log = Logger.getLogger(PushResourceRSTTestCase.class);
|
95 | 92 | private static final String PUSHER = "/pusher";
|
|
0 commit comments