Skip to content

Commit b7bb304

Browse files
committed
add more precise tests for new functionality
1 parent 7ee1ddb commit b7bb304

File tree

2 files changed

+51
-0
lines changed

2 files changed

+51
-0
lines changed

tests/unit/conftest.py

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
from corva.configuration import SETTINGS
55
from corva.testing import TestClient
6+
from corva.validate_app_init import read_manifest
67

78

89
@pytest.fixture(scope='function', autouse=True)
@@ -16,6 +17,13 @@ def clean_redis():
1617
redis_client.flushall()
1718

1819

20+
@pytest.fixture(scope='function', autouse=True)
21+
def clean_read_manifest_lru_cache():
22+
read_manifest.cache_clear()
23+
yield
24+
read_manifest.cache_clear()
25+
26+
1927
@pytest.fixture(scope='function')
2028
def context():
2129
return TestClient._context

tests/unit/test_apps_event_types.py

+43
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import json
12
from unittest import mock
23

34
import pytest
@@ -15,6 +16,7 @@
1516
StreamTimeRecord,
1617
)
1718
from corva.models.task import RawTaskEvent
19+
from corva.validate_app_init import read_manifest, validate_app_type_context
1820

1921
raw_scheduled_natural_time_event = RawScheduledNaturalTimeEvent(
2022
asset_id=1,
@@ -114,3 +116,44 @@ def lambda_handler(_event, _api):
114116
{},
115117
context,
116118
)
119+
120+
121+
def test__validate_app_type_with_missed_app_type_at_manifested__does_not_fails(context):
122+
mocked_manifest = {"application": {"type": None}}
123+
124+
with mock.patch(
125+
"corva.validate_app_init.read_manifest", return_value=mocked_manifest
126+
):
127+
validate_app_type_context(aws_event="mocked", app_decorator_type="mocked")
128+
129+
130+
def test__read_correct_manifest_file__success(context):
131+
"""Test when manifest.json exists and contains valid JSON."""
132+
manifest_payload = {"application": {"type": "stream"}}
133+
manifest_payload_json = json.dumps(manifest_payload)
134+
135+
with (
136+
mock.patch("os.path.exists", return_value=True),
137+
mock.patch("builtins.open", mock.mock_open(read_data=manifest_payload_json)),
138+
):
139+
result = read_manifest()
140+
assert result == manifest_payload
141+
142+
143+
def test__read_invalid_json_manifest_file__error(context):
144+
"""Test when manifest.json contains invalid JSON."""
145+
manifest_invalid_json = "{invalid: json}"
146+
147+
with (
148+
mock.patch("os.path.exists", return_value=True),
149+
mock.patch("builtins.open", mock.mock_open(read_data=manifest_invalid_json)),
150+
):
151+
with pytest.raises(json.JSONDecodeError):
152+
read_manifest()
153+
154+
155+
def test__manifest_file_not_exists__success(context):
156+
"""Test when manifest.json contains invalid JSON."""
157+
with mock.patch("os.path.exists", return_value=False):
158+
result = read_manifest()
159+
assert result is None

0 commit comments

Comments
 (0)