Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions smoke-test/tests/managed-ingestion/managed_ingestion_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
import pytest
import tenacity

from tests.utils import (get_frontend_url, get_sleep_info,
wait_for_healthcheck_util)
from tests.utils import get_frontend_url, get_sleep_info, wait_for_healthcheck_util

sleep_sec, sleep_times = get_sleep_info()

Expand Down Expand Up @@ -507,7 +506,7 @@ def test_create_list_get_ingestion_execution_request(frontend_session):

# Verify input
assert execution_request["input"]["task"] == "RUN_INGEST"
assert len(execution_request["input"]["arguments"]) == 2
assert len(execution_request["input"]["arguments"]) == 3
assert execution_request["input"]["arguments"][0]["key"] == "recipe"
assert (
json.loads(execution_request["input"]["arguments"][0]["value"])["source"]
Expand All @@ -517,6 +516,10 @@ def test_create_list_get_ingestion_execution_request(frontend_session):
)
assert execution_request["input"]["arguments"][1]["key"] == "version"
assert execution_request["input"]["arguments"][1]["value"] == "0.8.18"
assert execution_request["input"]["arguments"][2] == {
"key": "debug_mode",
"value": "false",
}

# Verify no result
assert execution_request["result"] is None
Expand Down