HADOOP-12801. Suppress obsolete S3FileSystem tests. Contributed by Chris Nauroth.

(cherry picked from commit d3dbfa7feee7922ddcd0b2e97898adf4e0c37de3)
(cherry picked from commit ba48834431)
This commit is contained in:
Chris Nauroth 2016-05-10 15:14:31 -07:00
parent 235caef236
commit bbd463b3b2
3 changed files with 27 additions and 0 deletions

View File

@ -22,6 +22,9 @@
import org.apache.hadoop.fs.contract.AbstractContractRootDirectoryTest;
import org.apache.hadoop.fs.contract.AbstractFSContract;
import org.junit.Ignore;
import org.junit.Test;
/**
* root dir operations against an S3 bucket
*/
@ -31,4 +34,16 @@ public class TestS3ContractRootDir extends AbstractContractRootDirectoryTest {
protected AbstractFSContract createContract(Configuration conf) {
return new S3Contract(conf);
}
@Override
@Test
@Ignore
public void testRmEmptyRootDirNonRecursive() {
}
@Override
@Test
@Ignore
public void testRmRootRecursive() {
}
}

View File

@ -23,10 +23,19 @@
import org.apache.hadoop.fs.contract.AbstractFSContract;
import org.apache.hadoop.fs.contract.ContractTestUtils;
import org.junit.Ignore;
import org.junit.Test;
public class TestS3ContractSeek extends AbstractContractSeekTest {
@Override
protected AbstractFSContract createContract(Configuration conf) {
return new S3Contract(conf);
}
@Override
@Test
@Ignore
public void testReadFullyZeroByteFile() {
}
}

View File

@ -28,6 +28,7 @@
import java.net.URI;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
@ -120,6 +121,7 @@ public void testCredentialProvider() throws Exception {
}
@Test(expected=IllegalArgumentException.class)
@Ignore
public void noSecretShouldThrow() throws Exception {
S3Credentials s3Credentials = new S3Credentials();
Configuration conf = new Configuration();
@ -128,6 +130,7 @@ public void noSecretShouldThrow() throws Exception {
}
@Test(expected=IllegalArgumentException.class)
@Ignore
public void noAccessIdShouldThrow() throws Exception {
S3Credentials s3Credentials = new S3Credentials();
Configuration conf = new Configuration();