Revert "HADOOP-16321: ITestS3ASSL+TestOpenSSLSocketFactory failing with java.lang.UnsatisfiedLinkErrors"
This reverts commit 5906268f0d
.
This commit is contained in:
parent
42cd861be0
commit
7724d8031b
|
@ -35,10 +35,7 @@ public class TestOpenSSLSocketFactory {
|
|||
|
||||
@Test
|
||||
public void testOpenSSL() throws IOException {
|
||||
assumeTrue("Unable to load native libraries",
|
||||
NativeCodeLoader.isNativeCodeLoaded());
|
||||
assumeTrue("Build was not compiled with support for OpenSSL",
|
||||
NativeCodeLoader.buildSupportsOpenssl());
|
||||
assumeTrue(NativeCodeLoader.buildSupportsOpenssl());
|
||||
OpenSSLSocketFactory.initializeDefaultFactory(
|
||||
OpenSSLSocketFactory.SSLChannelMode.OpenSSL);
|
||||
assertThat(OpenSSLSocketFactory.getDefaultFactory()
|
||||
|
@ -47,8 +44,7 @@ public class TestOpenSSLSocketFactory {
|
|||
|
||||
@Test
|
||||
public void testJSEEJava8() throws IOException {
|
||||
assumeTrue("Not running on Java 8",
|
||||
System.getProperty("java.version").startsWith("1.8"));
|
||||
assumeTrue(System.getProperty("java.version").startsWith("1.8"));
|
||||
OpenSSLSocketFactory.initializeDefaultFactory(
|
||||
OpenSSLSocketFactory.SSLChannelMode.Default_JSSE);
|
||||
assertThat(Arrays.stream(OpenSSLSocketFactory.getDefaultFactory()
|
||||
|
|
|
@ -40,10 +40,7 @@ public class ITestS3ASSL extends AbstractS3ATestBase {
|
|||
|
||||
@Test
|
||||
public void testOpenSSL() throws IOException {
|
||||
assumeTrue("Unable to load native libraries",
|
||||
NativeCodeLoader.isNativeCodeLoaded());
|
||||
assumeTrue("Build was not compiled with support for OpenSSL",
|
||||
NativeCodeLoader.buildSupportsOpenssl());
|
||||
assumeTrue(NativeCodeLoader.buildSupportsOpenssl());
|
||||
Configuration conf = new Configuration(getConfiguration());
|
||||
conf.setEnum(Constants.SSL_CHANNEL_MODE,
|
||||
OpenSSLSocketFactory.SSLChannelMode.OpenSSL);
|
||||
|
|
Loading…
Reference in New Issue