-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
807 additions
and
695 deletions.
There are no files selected for viewing
This file contains 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,5 @@ | ||
[flake8] | ||
ignore = E203, E266, E501, W503, F403, F401 | ||
max-line-length = 79 | ||
max-complexity = 18 | ||
select = B,C,E,F,W,T4,B9 |
This file contains 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,10 @@ | ||
repos: | ||
- repo: https://github.com/ambv/black | ||
rev: stable | ||
hooks: | ||
- id: black | ||
language_version: python3.9 | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v1.2.3 | ||
hooks: | ||
- id: flake8 |
This file contains 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 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 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 |
---|---|---|
@@ -1,148 +1,151 @@ | ||
import unittest | ||
|
||
from wideq.client import ( | ||
BitValue, EnumValue, ModelInfo, RangeValue, ReferenceValue, StringValue) | ||
BitValue, | ||
EnumValue, | ||
ModelInfo, | ||
RangeValue, | ||
ReferenceValue, | ||
StringValue, | ||
) | ||
|
||
|
||
DATA = { | ||
'Value': { | ||
'AntiBacterial': { | ||
'default': '0', | ||
'label': '@WM_DRY27_BUTTON_ANTI_BACTERIAL_W', | ||
'option': { | ||
'0': '@CP_OFF_EN_W', | ||
'1': '@CP_ON_EN_W' | ||
}, | ||
'type': 'Enum' | ||
"Value": { | ||
"AntiBacterial": { | ||
"default": "0", | ||
"label": "@WM_DRY27_BUTTON_ANTI_BACTERIAL_W", | ||
"option": {"0": "@CP_OFF_EN_W", "1": "@CP_ON_EN_W"}, | ||
"type": "Enum", | ||
}, | ||
'Course': { | ||
'option': ['Course'], | ||
'type': 'Reference', | ||
"Course": { | ||
"option": ["Course"], | ||
"type": "Reference", | ||
}, | ||
'Initial_Time_H': { | ||
'default': 0, | ||
'option': {'max': 24, 'min': 0}, | ||
'type': 'Range' | ||
"Initial_Time_H": { | ||
"default": 0, | ||
"option": {"max": 24, "min": 0}, | ||
"type": "Range", | ||
}, | ||
'Option1': { | ||
'default': '0', | ||
'option': [ | ||
"Option1": { | ||
"default": "0", | ||
"option": [ | ||
{ | ||
'default': '0', | ||
'length': 1, | ||
'startbit': 0, | ||
'value': 'ChildLock' | ||
"default": "0", | ||
"length": 1, | ||
"startbit": 0, | ||
"value": "ChildLock", | ||
}, | ||
{ | ||
'default': '0', | ||
'length': 1, | ||
'startbit': 1, | ||
'value': 'ReduceStatic' | ||
"default": "0", | ||
"length": 1, | ||
"startbit": 1, | ||
"value": "ReduceStatic", | ||
}, | ||
{ | ||
'default': '0', | ||
'length': 1, | ||
'startbit': 2, | ||
'value': 'EasyIron' | ||
"default": "0", | ||
"length": 1, | ||
"startbit": 2, | ||
"value": "EasyIron", | ||
}, | ||
{ | ||
'default': '0', | ||
'length': 1, | ||
'startbit': 3, | ||
'value': 'DampDrySingal' | ||
"default": "0", | ||
"length": 1, | ||
"startbit": 3, | ||
"value": "DampDrySingal", | ||
}, | ||
{ | ||
'default': '0', | ||
'length': 1, | ||
'startbit': 4, | ||
'value': 'WrinkleCare' | ||
"default": "0", | ||
"length": 1, | ||
"startbit": 4, | ||
"value": "WrinkleCare", | ||
}, | ||
{ | ||
'default': '0', | ||
'length': 1, | ||
'startbit': 7, | ||
'value': 'AntiBacterial' | ||
} | ||
"default": "0", | ||
"length": 1, | ||
"startbit": 7, | ||
"value": "AntiBacterial", | ||
}, | ||
], | ||
'type': 'Bit' | ||
}, | ||
'TimeBsOn': { | ||
'_comment': | ||
'오전 12시 30분은 0030, 오후12시30분은 1230 ,오후 4시30분은 1630 off는 0 ', | ||
'type': 'String' | ||
"type": "Bit", | ||
}, | ||
'Unexpected': {'type': 'Unexpected'}, | ||
'Unexpected2': { | ||
'type': 'Unexpected', | ||
'option': 'some option' | ||
"TimeBsOn": { | ||
"_comment": "오전 12시 30분은 0030, 오후12시30분은 1230 ,오후 4시30분은 1630 off는 0 ", | ||
"type": "String", | ||
}, | ||
"Unexpected": {"type": "Unexpected"}, | ||
"Unexpected2": {"type": "Unexpected", "option": "some option"}, | ||
}, | ||
'Course': { | ||
"Course": { | ||
"3": { | ||
"_comment": "Normal", | ||
"courseType": "Course", | ||
"id": 3, | ||
"name": "@WM_DRY27_COURSE_NORMAL_W", | ||
"script": "", | ||
"controlEnable": True, | ||
"freshcareEnable": True, | ||
"imgIndex": 61, | ||
"_comment": "Normal", | ||
"courseType": "Course", | ||
"id": 3, | ||
"name": "@WM_DRY27_COURSE_NORMAL_W", | ||
"script": "", | ||
"controlEnable": True, | ||
"freshcareEnable": True, | ||
"imgIndex": 61, | ||
}, | ||
}, | ||
} | ||
|
||
|
||
class ModelInfoTest(unittest.TestCase): | ||
|
||
def setUp(self): | ||
super().setUp() | ||
self.model_info = ModelInfo(DATA) | ||
|
||
def test_value_enum(self): | ||
actual = self.model_info.value('AntiBacterial') | ||
expected = EnumValue({'0': '@CP_OFF_EN_W', '1': '@CP_ON_EN_W'}) | ||
actual = self.model_info.value("AntiBacterial") | ||
expected = EnumValue({"0": "@CP_OFF_EN_W", "1": "@CP_ON_EN_W"}) | ||
self.assertEqual(expected, actual) | ||
|
||
def test_value_range(self): | ||
actual = self.model_info.value('Initial_Time_H') | ||
actual = self.model_info.value("Initial_Time_H") | ||
expected = RangeValue(min=0, max=24, step=1) | ||
self.assertEqual(expected, actual) | ||
|
||
def test_value_bit(self): | ||
actual = self.model_info.value('Option1') | ||
expected = BitValue({ | ||
0: 'ChildLock', | ||
1: 'ReduceStatic', | ||
2: 'EasyIron', | ||
3: 'DampDrySingal', | ||
4: 'WrinkleCare', | ||
7: 'AntiBacterial', | ||
}) | ||
actual = self.model_info.value("Option1") | ||
expected = BitValue( | ||
{ | ||
0: "ChildLock", | ||
1: "ReduceStatic", | ||
2: "EasyIron", | ||
3: "DampDrySingal", | ||
4: "WrinkleCare", | ||
7: "AntiBacterial", | ||
} | ||
) | ||
self.assertEqual(expected, actual) | ||
|
||
def test_value_reference(self): | ||
actual = self.model_info.value('Course') | ||
expected = ReferenceValue(DATA['Course']) | ||
actual = self.model_info.value("Course") | ||
expected = ReferenceValue(DATA["Course"]) | ||
self.assertEqual(expected, actual) | ||
|
||
def test_string(self): | ||
actual = self.model_info.value('TimeBsOn') | ||
actual = self.model_info.value("TimeBsOn") | ||
expected = StringValue( | ||
"오전 12시 30분은 0030, 오후12시30분은 1230 ,오후 4시30분은 1630 off는 0 ") | ||
"오전 12시 30분은 0030, 오후12시30분은 1230 ,오후 4시30분은 1630 off는 0 " | ||
) | ||
self.assertEqual(expected, actual) | ||
|
||
def test_value_unsupported(self): | ||
data = "{'type': 'Unexpected'}" | ||
with self.assertRaisesRegex( | ||
ValueError, | ||
f"unsupported value name: 'Unexpected' type: 'Unexpected' " | ||
f"data: '{data}'"): | ||
self.model_info.value('Unexpected') | ||
ValueError, | ||
f"unsupported value name: 'Unexpected' type: 'Unexpected' " | ||
f"data: '{data}'", | ||
): | ||
self.model_info.value("Unexpected") | ||
|
||
def test_value_unsupported_but_data_available(self): | ||
data = "{'type': 'Unexpected', 'option': 'some option'}" | ||
with self.assertRaisesRegex( | ||
ValueError, | ||
f"unsupported value name: 'Unexpected2'" | ||
f" type: 'Unexpected' data: '{data}"): | ||
self.model_info.value('Unexpected2') | ||
ValueError, | ||
f"unsupported value name: 'Unexpected2'" | ||
f" type: 'Unexpected' data: '{data}", | ||
): | ||
self.model_info.value("Unexpected2") |
This file contains 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
Oops, something went wrong.