-
-
Notifications
You must be signed in to change notification settings - Fork 239
Add transition support for SmartDimmer #69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
rytilahti
merged 1 commit into
python-kasa:master
from
connorproctor:feature/hs220-transition-support
Jun 14, 2020
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,134 @@ | ||
| import pytest | ||
|
|
||
| from kasa import SmartDimmer | ||
|
|
||
| from .conftest import dimmer, handle_turn_on, turn_on | ||
|
|
||
|
|
||
| @dimmer | ||
| @turn_on | ||
| async def test_set_brightness(dev, turn_on): | ||
| await handle_turn_on(dev, turn_on) | ||
|
|
||
| await dev.set_brightness(99) | ||
| assert dev.brightness == 99 | ||
| assert dev.is_on == turn_on | ||
|
|
||
| await dev.set_brightness(0) | ||
| assert dev.brightness == 1 | ||
| assert dev.is_on == turn_on | ||
|
|
||
|
|
||
| @dimmer | ||
| @turn_on | ||
| async def test_set_brightness_transition(dev, turn_on, mocker): | ||
| await handle_turn_on(dev, turn_on) | ||
| query_helper = mocker.spy(SmartDimmer, "_query_helper") | ||
|
|
||
| await dev.set_brightness(99, transition=1000) | ||
|
|
||
| assert dev.brightness == 99 | ||
| assert dev.is_on | ||
| query_helper.assert_called_with( | ||
| mocker.ANY, | ||
| "smartlife.iot.dimmer", | ||
| "set_dimmer_transition", | ||
| {"brightness": 99, "duration": 1000}, | ||
| ) | ||
|
|
||
| await dev.set_brightness(0, transition=1000) | ||
| assert dev.brightness == 1 | ||
|
|
||
|
|
||
| @dimmer | ||
| async def test_set_brightness_invalid(dev): | ||
| for invalid_brightness in [-1, 101, 0.5]: | ||
| with pytest.raises(ValueError): | ||
| await dev.set_brightness(invalid_brightness) | ||
|
|
||
| for invalid_transition in [-1, 0, 0.5]: | ||
| with pytest.raises(ValueError): | ||
| await dev.set_brightness(1, transition=invalid_transition) | ||
|
|
||
|
|
||
| @dimmer | ||
| async def test_turn_on_transition(dev, mocker): | ||
| query_helper = mocker.spy(SmartDimmer, "_query_helper") | ||
| original_brightness = dev.brightness | ||
|
|
||
| await dev.turn_on(transition=1000) | ||
|
|
||
| assert dev.is_on | ||
| assert dev.brightness == original_brightness | ||
| query_helper.assert_called_with( | ||
| mocker.ANY, | ||
| "smartlife.iot.dimmer", | ||
| "set_dimmer_transition", | ||
| {"brightness": original_brightness, "duration": 1000}, | ||
| ) | ||
|
|
||
|
|
||
| @dimmer | ||
| async def test_turn_off_transition(dev, mocker): | ||
| await handle_turn_on(dev, True) | ||
| query_helper = mocker.spy(SmartDimmer, "_query_helper") | ||
| original_brightness = dev.brightness | ||
|
|
||
| await dev.turn_off(transition=1000) | ||
|
|
||
| assert dev.is_off | ||
| assert dev.brightness == original_brightness | ||
connorproctor marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| query_helper.assert_called_with( | ||
| mocker.ANY, | ||
| "smartlife.iot.dimmer", | ||
| "set_dimmer_transition", | ||
| {"brightness": 0, "duration": 1000}, | ||
| ) | ||
|
|
||
|
|
||
| @dimmer | ||
| @turn_on | ||
| async def test_set_dimmer_transition(dev, turn_on, mocker): | ||
| await handle_turn_on(dev, turn_on) | ||
| query_helper = mocker.spy(SmartDimmer, "_query_helper") | ||
|
|
||
| await dev.set_dimmer_transition(99, 1000) | ||
|
|
||
| assert dev.is_on | ||
| assert dev.brightness == 99 | ||
| query_helper.assert_called_with( | ||
| mocker.ANY, | ||
| "smartlife.iot.dimmer", | ||
| "set_dimmer_transition", | ||
| {"brightness": 99, "duration": 1000}, | ||
| ) | ||
|
|
||
|
|
||
| @dimmer | ||
| @turn_on | ||
| async def test_set_dimmer_transition_to_off(dev, turn_on, mocker): | ||
| await handle_turn_on(dev, turn_on) | ||
| original_brightness = dev.brightness | ||
| query_helper = mocker.spy(SmartDimmer, "_query_helper") | ||
|
|
||
| await dev.set_dimmer_transition(0, 1000) | ||
|
|
||
| assert dev.is_off | ||
| assert dev.brightness == original_brightness | ||
| query_helper.assert_called_with( | ||
| mocker.ANY, | ||
| "smartlife.iot.dimmer", | ||
| "set_dimmer_transition", | ||
| {"brightness": 0, "duration": 1000}, | ||
| ) | ||
|
|
||
|
|
||
| @dimmer | ||
| async def test_set_dimmer_transition_invalid(dev): | ||
| for invalid_brightness in [-1, 101, 0.5]: | ||
| with pytest.raises(ValueError): | ||
| await dev.set_dimmer_transition(invalid_brightness, 1000) | ||
|
|
||
| for invalid_transition in [-1, 0, 0.5]: | ||
| with pytest.raises(ValueError): | ||
| await dev.set_dimmer_transition(1, invalid_transition) | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.