port-ocean 0.18.7__py3-none-any.whl → 0.18.8__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- port_ocean/tests/core/handlers/port_app_config/test_base.py +8 -8
- port_ocean/tests/core/handlers/webhook/test_abstract_webhook_processor.py +1 -0
- port_ocean/tests/helpers/ocean_app.py +2 -0
- {port_ocean-0.18.7.dist-info → port_ocean-0.18.8.dist-info}/METADATA +1 -1
- {port_ocean-0.18.7.dist-info → port_ocean-0.18.8.dist-info}/RECORD +8 -8
- {port_ocean-0.18.7.dist-info → port_ocean-0.18.8.dist-info}/LICENSE.md +0 -0
- {port_ocean-0.18.7.dist-info → port_ocean-0.18.8.dist-info}/WHEEL +0 -0
- {port_ocean-0.18.7.dist-info → port_ocean-0.18.8.dist-info}/entry_points.txt +0 -0
@@ -10,7 +10,7 @@ from port_ocean.context.event import EventType, event_context
|
|
10
10
|
from port_ocean.exceptions.api import EmptyPortAppConfigError
|
11
11
|
|
12
12
|
|
13
|
-
class
|
13
|
+
class MockPortAppConfig(BasePortAppConfig):
|
14
14
|
mock_get_port_app_config: Any
|
15
15
|
|
16
16
|
async def _get_port_app_config(self) -> Dict[str, Any]:
|
@@ -25,15 +25,15 @@ def mock_context() -> PortOceanContext:
|
|
25
25
|
|
26
26
|
|
27
27
|
@pytest.fixture
|
28
|
-
def port_app_config_handler(mock_context: PortOceanContext) ->
|
29
|
-
handler =
|
28
|
+
def port_app_config_handler(mock_context: PortOceanContext) -> MockPortAppConfig:
|
29
|
+
handler = MockPortAppConfig(mock_context)
|
30
30
|
handler.mock_get_port_app_config = MagicMock()
|
31
31
|
return handler
|
32
32
|
|
33
33
|
|
34
34
|
@pytest.mark.asyncio
|
35
35
|
async def test_get_port_app_config_success(
|
36
|
-
port_app_config_handler:
|
36
|
+
port_app_config_handler: MockPortAppConfig,
|
37
37
|
) -> None:
|
38
38
|
# Arrange
|
39
39
|
valid_config = {
|
@@ -83,7 +83,7 @@ async def test_get_port_app_config_success(
|
|
83
83
|
|
84
84
|
@pytest.mark.asyncio
|
85
85
|
async def test_get_port_app_config_uses_cache(
|
86
|
-
port_app_config_handler:
|
86
|
+
port_app_config_handler: MockPortAppConfig,
|
87
87
|
) -> None:
|
88
88
|
# Arrange
|
89
89
|
valid_config = {
|
@@ -122,7 +122,7 @@ async def test_get_port_app_config_uses_cache(
|
|
122
122
|
|
123
123
|
@pytest.mark.asyncio
|
124
124
|
async def test_get_port_app_config_bypass_cache(
|
125
|
-
port_app_config_handler:
|
125
|
+
port_app_config_handler: MockPortAppConfig,
|
126
126
|
) -> None:
|
127
127
|
# Arrange
|
128
128
|
valid_config = {
|
@@ -163,7 +163,7 @@ async def test_get_port_app_config_bypass_cache(
|
|
163
163
|
|
164
164
|
@pytest.mark.asyncio
|
165
165
|
async def test_get_port_app_config_validation_error(
|
166
|
-
port_app_config_handler:
|
166
|
+
port_app_config_handler: MockPortAppConfig, monkeypatch: pytest.MonkeyPatch
|
167
167
|
) -> None:
|
168
168
|
# Arrange
|
169
169
|
invalid_config = {"invalid_field": "invalid_value"}
|
@@ -184,7 +184,7 @@ async def test_get_port_app_config_validation_error(
|
|
184
184
|
|
185
185
|
@pytest.mark.asyncio
|
186
186
|
async def test_get_port_app_config_fetch_error(
|
187
|
-
port_app_config_handler:
|
187
|
+
port_app_config_handler: MockPortAppConfig,
|
188
188
|
) -> None:
|
189
189
|
# Arrange
|
190
190
|
port_app_config_handler.mock_get_port_app_config.side_effect = (
|
@@ -11,6 +11,7 @@ from port_ocean.core.handlers.port_app_config.models import ResourceConfig
|
|
11
11
|
from port_ocean.core.ocean_types import RESYNC_RESULT
|
12
12
|
from port_ocean.ocean import Ocean
|
13
13
|
from port_ocean.utils.misc import get_spec_file, load_module
|
14
|
+
from port_ocean.utils.signal import init_signal_handler
|
14
15
|
|
15
16
|
|
16
17
|
def get_integration_ocean_app(
|
@@ -21,6 +22,7 @@ def get_integration_ocean_app(
|
|
21
22
|
if spec_file is not None:
|
22
23
|
config_factory = default_config_factory(spec_file.get("configurations", []))
|
23
24
|
|
25
|
+
init_signal_handler()
|
24
26
|
default_app = create_default_app(
|
25
27
|
integration_path,
|
26
28
|
config_factory,
|
@@ -146,9 +146,9 @@ port_ocean/tests/core/handlers/entities_state_applier/test_applier.py,sha256=R9b
|
|
146
146
|
port_ocean/tests/core/handlers/entity_processor/test_jq_entity_processor.py,sha256=FnEnaDjuoAbKvKyv6xJ46n3j0ZcaT70Sg2zc7oy7HAA,13596
|
147
147
|
port_ocean/tests/core/handlers/mixins/test_sync_raw.py,sha256=gxQ4e9hQuMS8-o5UbiUSt1I1uaK0DCO3yCFDVigpZvo,31740
|
148
148
|
port_ocean/tests/core/handlers/port_app_config/test_api.py,sha256=eJZ6SuFBLz71y4ca3DNqKag6d6HUjNJS0aqQPwiLMTI,1999
|
149
|
-
port_ocean/tests/core/handlers/port_app_config/test_base.py,sha256=
|
149
|
+
port_ocean/tests/core/handlers/port_app_config/test_base.py,sha256=tdjpFUnUZ6TNMxc3trKkzmMTGTb7oKIeu3rRXv_fV3g,6872
|
150
150
|
port_ocean/tests/core/handlers/queue/test_local_queue.py,sha256=9Ly0HzZXbs6Rbl_bstsIdInC3h2bgABU3roP9S_PnJM,2582
|
151
|
-
port_ocean/tests/core/handlers/webhook/test_abstract_webhook_processor.py,sha256=
|
151
|
+
port_ocean/tests/core/handlers/webhook/test_abstract_webhook_processor.py,sha256=JbwoC63098xlFPjcNaQEWYaA_SJzUt_x1GS65Yp_M3U,3953
|
152
152
|
port_ocean/tests/core/handlers/webhook/test_processor_manager.py,sha256=k7ZjegY4qSfkf5uRqdSpc_v8RhObE_20wd1AwrO08Q4,14976
|
153
153
|
port_ocean/tests/core/handlers/webhook/test_webhook_event.py,sha256=yfsXuJzwEe9WYzyhWwT2IOEwwD9dHtKp_ufREM5v_DI,2090
|
154
154
|
port_ocean/tests/core/test_utils.py,sha256=Z3kdhb5V7Svhcyy3EansdTpgHL36TL6erNtU-OPwAcI,2647
|
@@ -158,7 +158,7 @@ port_ocean/tests/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
158
158
|
port_ocean/tests/helpers/fake_port_api.py,sha256=9rtjC6iTQMfzWK6WipkDzzG0b1IIaRmvdJLOyV613vE,6479
|
159
159
|
port_ocean/tests/helpers/fixtures.py,sha256=IQEplbHhRgjrAsZlnXrgSYA5YQEn25I9HgO3_Fjibxg,1481
|
160
160
|
port_ocean/tests/helpers/integration.py,sha256=_RxS-RHpu11lrbhUXYPZp862HLWx8AoD7iZM6iXN8rs,1104
|
161
|
-
port_ocean/tests/helpers/ocean_app.py,sha256=
|
161
|
+
port_ocean/tests/helpers/ocean_app.py,sha256=N06vcNI1klqdcNFq-PXL5vm77u-hODsOSXnj9p8d1AI,2249
|
162
162
|
port_ocean/tests/helpers/port_client.py,sha256=5d6GNr8vNNSOkrz1AdOhxBUKuusr_-UPDP7AVpHasQw,599
|
163
163
|
port_ocean/tests/helpers/smoke_test.py,sha256=_9aJJFRfuGJEg2D2YQJVJRmpreS6gEPHHQq8Q01x4aQ,2697
|
164
164
|
port_ocean/tests/log/test_handlers.py,sha256=uxgYCEQLP9U5qf-zUN9SgWFogMbYdnBeOVzXZ7E_yFw,2119
|
@@ -175,8 +175,8 @@ port_ocean/utils/repeat.py,sha256=0EFWM9d8lLXAhZmAyczY20LAnijw6UbIECf5lpGbOas,32
|
|
175
175
|
port_ocean/utils/signal.py,sha256=mMVq-1Ab5YpNiqN4PkiyTGlV_G0wkUDMMjTZp5z3pb0,1514
|
176
176
|
port_ocean/utils/time.py,sha256=pufAOH5ZQI7gXvOvJoQXZXZJV-Dqktoj9Qp9eiRwmJ4,1939
|
177
177
|
port_ocean/version.py,sha256=UsuJdvdQlazzKGD3Hd5-U7N69STh8Dq9ggJzQFnu9fU,177
|
178
|
-
port_ocean-0.18.
|
179
|
-
port_ocean-0.18.
|
180
|
-
port_ocean-0.18.
|
181
|
-
port_ocean-0.18.
|
182
|
-
port_ocean-0.18.
|
178
|
+
port_ocean-0.18.8.dist-info/LICENSE.md,sha256=WNHhf_5RCaeuKWyq_K39vmp9F28LxKsB4SpomwSZ2L0,11357
|
179
|
+
port_ocean-0.18.8.dist-info/METADATA,sha256=_zFxUsljeCQq392DWaZNS5kE4DK4jwZyi1w3CGt1f7U,6669
|
180
|
+
port_ocean-0.18.8.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
181
|
+
port_ocean-0.18.8.dist-info/entry_points.txt,sha256=F_DNUmGZU2Kme-8NsWM5LLE8piGMafYZygRYhOVtcjA,54
|
182
|
+
port_ocean-0.18.8.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|