Skip to content

Commit

Permalink
Unmute Azure 3rd party tests (elastic#108336)
Browse files Browse the repository at this point in the history
Unmute Azure 3rd party tests (again) after re-generating credentials
following the updated guide.

Relates: elastic#107928
Fixes: elastic#107720
Fixes: elastic#107502
(cherry picked from commit eba6a84)

# Conflicts:
#	modules/repository-azure/src/internalClusterTest/java/org/elasticsearch/repositories/azure/AzureStorageCleanupThirdPartyTests.java
#	x-pack/plugin/snapshot-repo-test-kit/qa/azure/src/javaRestTest/java/org/elasticsearch/repositories/blobstore/testkit/AzureSnapshotRepoTestKitIT.java
  • Loading branch information
ywangd committed May 7, 2024
1 parent 61d1da7 commit d334d4c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,25 +50,21 @@ public class AzureStorageCleanupThirdPartyTests extends AbstractThirdPartyReposi
System.getProperty("test.azure.container")
);

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/107720")
@Override
public void testCreateSnapshot() {
super.testCreateSnapshot();
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/107720")
@Override
public void testIndexLatest() throws Exception {
super.testIndexLatest();
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/107720")
@Override
public void testListChildren() {
super.testListChildren();
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/107720")
@Override
public void testCleanup() throws Exception {
super.testCleanup();
Expand Down Expand Up @@ -156,7 +152,6 @@ private void ensureSasTokenPermissions() {
future.actionGet();
}

@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/107720")
public void testMultiBlockUpload() throws Exception {
final BlobStoreRepository repo = getRepository();
// The configured threshold for this test suite is 1mb
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,9 @@ protected Settings repositorySettings() {

return Settings.builder().put("client", "repository_test_kit").put("container", container).put("base_path", basePath).build();
}

@Override
public void testRepositoryAnalysis() throws Exception {
super.testRepositoryAnalysis();
}
}

0 comments on commit d334d4c

Please sign in to comment.