Skip to content
This repository was archived by the owner on May 9, 2024. It is now read-only.

Commit f384098

Browse files
committed
Added fallback detection to the SmartThingsManager.
1 parent 7d5243e commit f384098

File tree

5 files changed

+28
-3
lines changed

5 files changed

+28
-3
lines changed

pysmartapp/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Define the pysmartapp package."""
22

33
__title__ = "pysmartapp"
4-
__version__ = "0.2.0"
4+
__version__ = "0.2.1"

pysmartapp/consts.py

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
LIFECYCLE_UNINSTALL = 'UNINSTALL'
1212
EVENT_TYPE_DEVICE = 'DEVICE_EVENT'
1313
EVENT_TYPE_TIMER = 'TIMER_EVENT'
14+
SETTINGS_APP_ID = 'appId'

pysmartapp/smartapp.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import logging
44
from typing import Dict, Sequence
55

6-
from .consts import LIFECYCLE_PING
6+
from .consts import LIFECYCLE_PING, SETTINGS_APP_ID
77
from .errors import SmartAppNotRegisteredError
88
from .eventhook import EventHook
99
from .utilities import create_request
@@ -124,6 +124,9 @@ def handle_request(self, data: dict, headers: dict = None,
124124
resp = req.process(self, headers, validate_signature)
125125
else:
126126
smartapp = self._installed_apps.get(req.installed_app_id)
127+
if not smartapp and SETTINGS_APP_ID in req.settings:
128+
# try finding using fallback...
129+
smartapp = self._smartapps.get(req.settings[SETTINGS_APP_ID])
127130
if not smartapp:
128131
raise SmartAppNotRegisteredError(req.installed_app_id)
129132
resp = req.process(smartapp, headers, validate_signature)

tests/fixtures/config_init_request.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
}
1414
},
1515
"settings": {
16-
16+
"appId": "f6c071aa-6ae7-463f-b0ad-8620ac23140f"
1717
}
1818
}

tests/test_smartapp.py

+21
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,27 @@ def test_handle_request_not_registered():
352352
# Assert
353353
assert e_info.value.installed_app_id == INSTALLED_APP_ID
354354

355+
@staticmethod
356+
def test_handle_request_fallback():
357+
"""Tests processing a request when no SmartApp has been registered."""
358+
# Arrange
359+
request = get_fixture("config_init_request")
360+
manager = SmartAppManager()
361+
smartapp = SmartApp("Test Name", "Test Description", [])
362+
smartapp.app_id = APP_ID
363+
manager.register(smartapp)
364+
fired = False
365+
366+
def handler(req, resp, app):
367+
nonlocal fired
368+
fired = True
369+
assert app == smartapp
370+
manager.on_config += handler
371+
# Act
372+
manager.handle_request(request, None, False)
373+
# Assert
374+
assert fired
375+
355376
@staticmethod
356377
def test_register():
357378
"""Test register"""

0 commit comments

Comments
 (0)