Mute the keystore-cli failing tests. (#469)
The opensearch-keystore tool is currently failing to load and update older versions keystores created using the elasticsearch-keystore tool. This results in couple of failing tests for bwc and upgrade of the older versions of keystore files. This commit mutes these two tests until we make a decision on the minimum supported version. Signed-off-by: Rabi Panda <adnapibar@gmail.com>
This commit is contained in:
parent
fd4c3968ab
commit
ffc561d7ef
|
@ -454,6 +454,7 @@ public class KeyStoreWrapperTests extends OpenSearchTestCase {
|
|||
assertThat(toByteArray(afterSave.getFile("file_setting")), equalTo("file_value".getBytes(StandardCharsets.UTF_8)));
|
||||
}
|
||||
|
||||
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/468")
|
||||
public void testLegacyV3() throws GeneralSecurityException, IOException {
|
||||
final Path configDir = createTempDir();
|
||||
final Path keystore = configDir.resolve("opensearch.keystore");
|
||||
|
|
|
@ -48,6 +48,7 @@ public class UpgradeKeyStoreCommandTests extends KeyStoreCommandTestCase {
|
|||
};
|
||||
}
|
||||
|
||||
@AwaitsFix(bugUrl = "https://github.com/opensearch-project/OpenSearch/issues/468")
|
||||
public void testKeystoreUpgrade() throws Exception {
|
||||
final Path keystore = KeyStoreWrapper.keystorePath(env.configFile());
|
||||
try (
|
||||
|
|
Loading…
Reference in New Issue