HADOOP-14111 cut some obsolete, ignored s3 tests in TestS3Credentials.

Contributed by Yuanbo Liu
This commit is contained in:
Steve Loughran 2017-03-10 17:43:22 +00:00
parent 4478273e5f
commit 092ec39fb9
No known key found for this signature in database
GPG Key ID: 950CC3E032B79CA2
1 changed files with 0 additions and 18 deletions

View File

@ -28,7 +28,6 @@
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;
@ -127,21 +126,4 @@ public void testCredentialProvider() throws Exception {
s3Credentials.getSecretAccessKey());
}
@Test(expected=IllegalArgumentException.class)
@Ignore
public void noSecretShouldThrow() throws Exception {
S3Credentials s3Credentials = new S3Credentials();
Configuration conf = new Configuration();
conf.set(S3_NATIVE_AWS_ACCESS_KEY_ID, EXAMPLE_ID);
s3Credentials.initialize(new URI("s3n://foobar"), conf);
}
@Test(expected=IllegalArgumentException.class)
@Ignore
public void noAccessIdShouldThrow() throws Exception {
S3Credentials s3Credentials = new S3Credentials();
Configuration conf = new Configuration();
conf.set(S3_NATIVE_AWS_SECRET_ACCESS_KEY, EXAMPLE_KEY);
s3Credentials.initialize(new URI("s3n://foobar"), conf);
}
}