-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1722 from soul2zimate/ELY-2354-1.x
ELY-2354 remove IBM related changes due to unavailable security provi…
- Loading branch information
Showing
11 changed files
with
30 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,6 @@ | |
* @author Hynek Švábek <[email protected]> | ||
*/ | ||
public class CredentialStoreCommandTest extends AbstractCommandTest { | ||
private static final boolean IS_IBM = System.getProperty("java.vendor").contains("IBM"); | ||
public static final String RSA_ALGORITHM = "RSA"; | ||
public static final String DSA_ALGORITHM = "DSA"; | ||
public static final String EC_ALGORITHM = "EC"; | ||
|
@@ -357,7 +356,6 @@ public void testGenerateKeyPairDSA() throws CredentialStoreException { | |
|
||
@Test | ||
public void testGenerateKeyPairECDSA() throws CredentialStoreException { | ||
Assume.assumeFalse(IS_IBM); //Don't run if using IBM JDK https://issues.redhat.com/browse/ELY-2214 | ||
String storageLocation = getStoragePathForNewFile(); | ||
String storagePassword = "cspassword"; | ||
String aliasName = "testalias"; | ||
|
@@ -395,7 +393,6 @@ public void testExportPublicKey() { | |
|
||
@Test | ||
public void testImportOpenSSHKeyPairFromFile() throws CredentialStoreException { | ||
Assume.assumeFalse(IS_IBM); //Don't run if using IBM JDK https://issues.redhat.com/browse/ELY-2214 | ||
String storageLocation = getStoragePathForNewFile(); | ||
String storagePassword = "cspassword"; | ||
String aliasName = "testalias"; | ||
|
@@ -417,7 +414,6 @@ public void testImportOpenSSHKeyPairFromFile() throws CredentialStoreException { | |
} | ||
@Test | ||
public void testImportPKCSKeyPairFromFile() throws CredentialStoreException { | ||
Assume.assumeFalse(IS_IBM); //Don't run if using IBM JDK https://issues.redhat.com/browse/ELY-2214 | ||
String storageLocation = getStoragePathForNewFile(); | ||
String storagePassword = "cspassword"; | ||
String aliasName = "testalias"; | ||
|
@@ -442,7 +438,6 @@ public void testImportPKCSKeyPairFromFile() throws CredentialStoreException { | |
|
||
@Test | ||
public void testImportOpenSSHKeyPairFromString() throws CredentialStoreException { | ||
Assume.assumeFalse(IS_IBM); //Don't run if using IBM JDK https://issues.redhat.com/browse/ELY-2214 | ||
String storageLocation = getStoragePathForNewFile(); | ||
String storagePassword = "cspassword"; | ||
String aliasName = "testalias"; | ||
|
@@ -473,7 +468,6 @@ public void testImportOpenSSHKeyPairFromString() throws CredentialStoreException | |
|
||
@Test | ||
public void testImportPKCSKeyPairFromString() throws CredentialStoreException { | ||
Assume.assumeFalse(IS_IBM); //Don't run if using IBM JDK https://issues.redhat.com/browse/ELY-2214 | ||
String storageLocation = getStoragePathForNewFile(); | ||
String storagePassword = "cspassword"; | ||
String aliasName = "testalias"; | ||
|
Oops, something went wrong.