|
17 | 17 |
|
18 | 18 | import com.ning.http.client.AsyncHttpClient;
|
19 | 19 | import com.ning.http.client.AsyncHttpClientConfig;
|
20 |
| -import com.ning.http.client.Response; |
21 | 20 | import com.ning.http.client.async.ProviderUtil;
|
22 | 21 | import com.ning.http.client.async.ProxyTest;
|
23 | 22 | import org.testng.annotations.Test;
|
24 | 23 |
|
25 | 24 | import java.io.IOException;
|
26 |
| -import java.util.Properties; |
27 | 25 | import java.util.concurrent.ExecutionException;
|
28 |
| -import java.util.concurrent.Future; |
29 |
| -import java.util.concurrent.TimeUnit; |
30 | 26 | import java.util.concurrent.TimeoutException;
|
31 | 27 |
|
32 |
| -import static org.testng.Assert.fail; |
33 |
| - |
34 | 28 | public class JDKProxyTest extends ProxyTest {
|
35 | 29 | @Override
|
36 | 30 | public AsyncHttpClient getAsyncHttpClient(AsyncHttpClientConfig config) {
|
37 | 31 | return ProviderUtil.jdkProvider(config);
|
38 | 32 | }
|
39 | 33 |
|
| 34 | + @Test(groups = {"standalone", "default_provider"}, enabled = false) |
| 35 | + public void testRequestLevelProxy() throws IOException, ExecutionException, TimeoutException, InterruptedException { |
| 36 | + } |
| 37 | + |
| 38 | + @Test(groups = {"standalone", "default_provider"}, enabled = false) |
| 39 | + public void testGlobalProxy() throws IOException, ExecutionException, TimeoutException, InterruptedException { |
| 40 | + } |
| 41 | + |
| 42 | + @Test(groups = {"standalone", "default_provider"}, enabled = false) |
| 43 | + public void testBothProxies() throws IOException, ExecutionException, TimeoutException, InterruptedException { |
| 44 | + } |
| 45 | + |
| 46 | + |
40 | 47 | @Test(groups = {"standalone", "default_provider"}, enabled = false)
|
41 | 48 | public void testNonProxyHosts() throws IOException, ExecutionException, TimeoutException, InterruptedException {
|
42 | 49 | }
|
43 | 50 |
|
| 51 | + @Test(groups = {"standalone", "default_provider"}, enabled = false) |
| 52 | + public void testProxyProperties() throws IOException, ExecutionException, TimeoutException, InterruptedException { |
| 53 | + } |
| 54 | + |
44 | 55 | @Test(groups = {"standalone", "default_provider"}, enabled = false)
|
45 | 56 | public void testIgnoreProxyPropertiesByDefault() throws IOException, ExecutionException, TimeoutException, InterruptedException {
|
46 | 57 | }
|
| 58 | + |
| 59 | + @Test(groups = {"standalone", "default_provider"}, enabled = false) |
| 60 | + public void testProxyActivationProperty() throws IOException, ExecutionException, TimeoutException, InterruptedException { |
| 61 | + } |
47 | 62 | }
|
0 commit comments