HADOOP-14111 cut some obsolete, ignored s3 tests in TestS3Credentials.
Contributed by Yuanbo Liu
This commit is contained in:
parent
4478273e5f
commit
092ec39fb9
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user