* Added camera service calls to arm/disarm the cameras. Entity id is optional so that with a single call we can arm all the cameras or specify a particular entity id to arm if applicable and possible in that camera type. * Added camera service calls to arm/disarm the cameras. Entity id is optional so that with a single call we can arm all the cameras or specify a particular entity id to arm if applicable and possible in that camera type. * Added camera service calls to arm/disarm the cameras. Entity id is optional so that with a single call we can arm all the cameras or specify a particular entity id to arm if applicable and possible in that camera type. * Fixed the spaces and indentation related issues that houndci found * Fixed the spaces and indentation related issues that houndci found * Missed the const file which has the macros defined. * Fixed the CI build error * Fixed the CI build error because of unused variable in exception case * Updating the arlo code based on comment from @balloob. Changed the arm and disarm to enable_motion_detection and disable_motion_detection respectively. Similarly fixed the AttributeError handling. Added dummy code to the demo camera also. Moved out the definitions in const.py into the camera __init__ file * Fixed the comments posted by houndci-bot * Fixed the comments posted by houndci-bot * Fixed the comments posted by houndci-bot * Fixed the comments posted by travis-ci integration bot * Fixed the comments posted by travis-ci integration bot * Fixed the comments posted by travis-ci integration bot for demo.py: expected 2 lines, found 1 * Updated code in camera __init__.py to use the get function instead of directly calling the member in the structure. * Updated code in camera __init__.py * Posting the updated code for PR based on @balloob's suggestions/recommendations * Removed the arlo reference from demo code. Copy-paste error * Removed the unused import found by hound bot * Expected 2 lines before function, but found only 1. * Based on @balloob's comments, moved these constants to the camera/arlo.py * Added test_demo.py to test the motion enabled and motion disabled in camera component * Fixing issues found by houndci-bot * Fixing issues found by houndci-bot * Fixing the code as per @balloob's suggestions * Fixing the code as per @balloob's suggestions * Fixing the test_demo failure. Tried to rewrite a base function to enable the motion in __init__.py and missed to add it to as a job. * Fixing the hound bot comment * Update arlo.py * Update arlo.py
27 lines
861 B
Python
27 lines
861 B
Python
"""The tests for local file camera component."""
|
|
import asyncio
|
|
from homeassistant.components import camera
|
|
from homeassistant.setup import async_setup_component
|
|
|
|
|
|
@asyncio.coroutine
|
|
def test_motion_detection(hass):
|
|
"""Test motion detection services."""
|
|
# Setup platform
|
|
yield from async_setup_component(hass, 'camera', {
|
|
'camera': {
|
|
'platform': 'demo'
|
|
}
|
|
})
|
|
|
|
# Fetch state and check motion detection attribute
|
|
state = hass.states.get('camera.demo_camera')
|
|
assert not state.attributes.get('motion_detection')
|
|
|
|
# Call service to turn on motion detection
|
|
camera.enable_motion_detection(hass, 'camera.demo_camera')
|
|
yield from hass.async_block_till_done()
|
|
|
|
# Check if state has been updated.
|
|
state = hass.states.get('camera.demo_camera')
|
|
assert state.attributes.get('motion_detection')
|