Add new service 'snapshot' for camera (#10207)

* Add new service 'snapshot' for camera

* Fix lint

* fix arguments

* Add test and fix bugs

* Fix lint

* Fix typo
This commit is contained in:
Pascal Vizeli 2017-10-29 23:14:26 +01:00 committed by GitHub
parent 690760404b
commit 444b7c5ee7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 114 additions and 17 deletions

View file

@ -1,10 +1,10 @@
"""The tests for the camera component."""
import asyncio
from unittest.mock import patch
from unittest.mock import patch, mock_open
import pytest
from homeassistant.setup import setup_component
from homeassistant.setup import setup_component, async_setup_component
from homeassistant.const import ATTR_ENTITY_PICTURE
import homeassistant.components.camera as camera
import homeassistant.components.http as http
@ -15,6 +15,20 @@ from tests.common import (
get_test_home_assistant, get_test_instance_port, assert_setup_component)
@pytest.fixture
def mock_camera(hass):
"""Initialize a demo camera platform."""
assert hass.loop.run_until_complete(async_setup_component(hass, 'camera', {
camera.DOMAIN: {
'platform': 'demo'
}
}))
with patch('homeassistant.components.camera.demo.DemoCamera.camera_image',
return_value=b'Test'):
yield
class TestSetupCamera(object):
"""Test class for setup camera."""
@ -105,3 +119,20 @@ class TestGetImage(object):
self.hass, 'camera.demo_camera'), self.hass.loop).result()
assert len(aioclient_mock.mock_calls) == 1
@asyncio.coroutine
def test_snapshot_service(hass, mock_camera):
"""Test snapshot service."""
mopen = mock_open()
with patch('homeassistant.components.camera.open', mopen, create=True), \
patch.object(hass.config, 'is_allowed_path',
return_value=True):
hass.components.camera.async_snapshot('/tmp/bla')
yield from hass.async_block_till_done()
mock_write = mopen().write
assert len(mock_write.mock_calls) == 1
assert mock_write.mock_calls[0][1][0] == b'Test'