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.io.File;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
|
|
||||||
import org.junit.Before;
|
import org.junit.Before;
|
||||||
import org.junit.Ignore;
|
|
||||||
import org.junit.Rule;
|
import org.junit.Rule;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.rules.TemporaryFolder;
|
import org.junit.rules.TemporaryFolder;
|
||||||
|
@ -127,21 +126,4 @@ public class TestS3Credentials {
|
||||||
s3Credentials.getSecretAccessKey());
|
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