HADOOP-12753 S3A JUnit tests failing if using HTTP proxy. (Zoran Rajic via stevel)
This commit is contained in:
parent
6791221572
commit
ce5b4812f0
|
@ -123,6 +123,7 @@ public class TestS3AConfiguration {
|
|||
@Test
|
||||
public void testProxyPortWithoutHost() throws Exception {
|
||||
conf = new Configuration();
|
||||
conf.unset(Constants.PROXY_HOST);
|
||||
conf.setInt(Constants.MAX_ERROR_RETRIES, 2);
|
||||
conf.setInt(Constants.PROXY_PORT, 1);
|
||||
try {
|
||||
|
@ -140,6 +141,7 @@ public class TestS3AConfiguration {
|
|||
@Test
|
||||
public void testAutomaticProxyPortSelection() throws Exception {
|
||||
conf = new Configuration();
|
||||
conf.unset(Constants.PROXY_PORT);
|
||||
conf.setInt(Constants.MAX_ERROR_RETRIES, 2);
|
||||
conf.set(Constants.PROXY_HOST, "127.0.0.1");
|
||||
conf.set(Constants.SECURE_CONNECTIONS, "true");
|
||||
|
|
|
@ -44,6 +44,15 @@ public class TestS3ADeleteManyFiles extends S3AScaleTestBase {
|
|||
@Rule
|
||||
public Timeout testTimeout = new Timeout(30 * 60 * 1000);
|
||||
|
||||
/**
|
||||
* CAUTION: If this test starts failing, please make sure that the
|
||||
* {@link org.apache.hadoop.fs.s3a.Constants#MAX_THREADS} configuration is not
|
||||
* set too low. Alternatively, consider reducing the
|
||||
* <code>scale.test.operation.count</code> parameter in
|
||||
* <code>getOperationCount()</code>.
|
||||
*
|
||||
* @see #getOperationCount()
|
||||
*/
|
||||
@Test
|
||||
public void testBulkRenameAndDelete() throws Throwable {
|
||||
final Path scaleTestDir = getTestPath();
|
||||
|
|
Loading…
Reference in New Issue