|
| 1 | +import json |
1 | 2 | from unittest import mock
|
2 | 3 |
|
3 | 4 | import pytest
|
|
15 | 16 | StreamTimeRecord,
|
16 | 17 | )
|
17 | 18 | from corva.models.task import RawTaskEvent
|
| 19 | +from corva.validate_app_init import read_manifest, validate_app_type_context |
18 | 20 |
|
19 | 21 | raw_scheduled_natural_time_event = RawScheduledNaturalTimeEvent(
|
20 | 22 | asset_id=1,
|
@@ -114,3 +116,44 @@ def lambda_handler(_event, _api):
|
114 | 116 | {},
|
115 | 117 | context,
|
116 | 118 | )
|
| 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