diff --git a/.github/workflows/full_pr_e2e_test.yml b/.github/workflows/full_pr_e2e_test.yml index aab80a6d1..d7fea7a5d 100644 --- a/.github/workflows/full_pr_e2e_test.yml +++ b/.github/workflows/full_pr_e2e_test.yml @@ -15,7 +15,7 @@ permissions: contents: read # to fetch code (actions/checkout) jobs: - rfs-e2e-aws-test: + full-es68-e2e-aws-test: runs-on: ubuntu-latest steps: - name: Sanitize branch and repo names diff --git a/TrafficCapture/dockerSolution/src/main/docker/migrationConsole/lib/integ_test/integ_test/full_tests.py b/TrafficCapture/dockerSolution/src/main/docker/migrationConsole/lib/integ_test/integ_test/full_tests.py index f7ef92c75..fa591c297 100644 --- a/TrafficCapture/dockerSolution/src/main/docker/migrationConsole/lib/integ_test/integ_test/full_tests.py +++ b/TrafficCapture/dockerSolution/src/main/docker/migrationConsole/lib/integ_test/integ_test/full_tests.py @@ -99,10 +99,15 @@ def test_e2e_0001_default(self): status_result: CommandResult = snapshot.status() if status_result.success: snapshot.delete() - snapshot.create(wait=True) - metadata.migrate() - backfill.start() - backfill.scale(units=2) + snapshot_result: CommandResult = snapshot.create(wait=True) + assert snapshot_result.success + metadata_result: CommandResult = metadata.migrate() + assert metadata_result.success + backfill_start_result: CommandResult = backfill.start() + assert backfill_start_result.success + # small enough to allow containers to be reused, big enough to test scaling out + backfill_scale_result: CommandResult = backfill.scale(units=2) + assert backfill_scale_result.success # This document was created after snapshot and should not be included in Backfill but expected in Replay create_document(cluster=source_cluster, index_name=index_name, doc_id=doc_id_base + "_2", expected_status_code=HTTPStatus.CREATED, test_case=self)