Skip to content

Commit

Permalink
Make ITs more robust with longer timeouts (#306)
Browse files Browse the repository at this point in the history
Comment-out incompleted implementation and extend timeouts

Signed-off-by: Daniel Widdis <[email protected]>
  • Loading branch information
dbwiddis authored Dec 20, 2023
1 parent 7986cbf commit 2b10621
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,7 @@ public void setUpSettings() throws Exception {
assertEquals(200, response.getStatusLine().getStatusCode());

// Ensure .plugins-ml-config is created before proceeding with integration tests
assertBusy(() -> { assertTrue(indexExistsWithAdminClient(".plugins-ml-config")); });

assertBusy(() -> { assertTrue(indexExistsWithAdminClient(".plugins-ml-config")); }, 30, TimeUnit.SECONDS);
}

}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,9 @@
import org.opensearch.flowframework.model.WorkflowEdge;
import org.opensearch.flowframework.model.WorkflowNode;

import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

import static org.opensearch.flowframework.common.CommonValue.CREDENTIAL_FIELD;
import static org.opensearch.flowframework.common.CommonValue.PROVISION_WORKFLOW;
Expand Down Expand Up @@ -65,6 +63,8 @@ public void testSearchWorkflows() throws Exception {
}

public void testCreateAndProvisionLocalModelWorkflow() throws Exception {
/*- Local model registration is not yet fully complete. Commenting this test out until it is.
* https://github.com/opensearch-project/flow-framework/issues/305
// Using a 3 step template to create a model group, register a remote model and deploy model
Template template = TestHelpers.createTemplateFromFile("registerlocalmodel-deploymodel.json");
Expand Down Expand Up @@ -117,14 +117,12 @@ public void testCreateAndProvisionLocalModelWorkflow() throws Exception {
assertEquals(RestStatus.OK, TestHelpers.restStatus(response));
getAndAssertWorkflowStatus(workflowId, State.PROVISIONING, ProvisioningProgress.IN_PROGRESS);
// TODO: This provisioning isn't completing, probably due to incorrect task vs. model ID in RetryableWorkflowStep
// May be fixed by https://github.com/opensearch-project/flow-framework/pull/298
// Wait until provisioning has completed successfully before attempting to retrieve created resources
// List<ResourceCreated> resourcesCreated = getResourcesCreated(workflowId, 100);
List<ResourceCreated> resourcesCreated = getResourcesCreated(workflowId, 100);
// TODO: This template should create 2 resources, registered_model_id and deployed model_id
// But RegisterLocalModelStep does not yet update state index so might be 1
// assertEquals(0, resourcesCreated.size());
assertEquals(0, resourcesCreated.size());
*/
}

public void testCreateAndProvisionRemoteModelWorkflow() throws Exception {
Expand Down Expand Up @@ -168,7 +166,7 @@ public void testCreateAndProvisionRemoteModelWorkflow() throws Exception {
getAndAssertWorkflowStatus(workflowId, State.PROVISIONING, ProvisioningProgress.IN_PROGRESS);

// Wait until provisioning has completed successfully before attempting to retrieve created resources
List<ResourceCreated> resourcesCreated = getResourcesCreated(workflowId, 10);
List<ResourceCreated> resourcesCreated = getResourcesCreated(workflowId, 30);

// This template should create 3 resources, connector_id, regestered model_id and deployed model_id
assertEquals(3, resourcesCreated.size());
Expand Down

0 comments on commit 2b10621

Please sign in to comment.