mirror of
https://github.com/XiaoMi/ha_xiaomi_home.git
synced 2025-04-03 08:15:30 +08:00
test: check lang_integrity
This commit is contained in:
parent
c4a981a15d
commit
dabf277942
@ -4,6 +4,7 @@ import json
|
|||||||
from os import listdir, path
|
from os import listdir, path
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
import pytest
|
import pytest
|
||||||
|
import yaml
|
||||||
|
|
||||||
SOURCE_DIR: str = path.dirname(path.abspath(__file__))
|
SOURCE_DIR: str = path.dirname(path.abspath(__file__))
|
||||||
|
|
||||||
@ -20,6 +21,18 @@ def load_json_file(file_path: str) -> Optional[dict]:
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def load_yaml_file(file_path: str) -> Optional[dict]:
|
||||||
|
try:
|
||||||
|
with open(file_path, 'r', encoding='utf-8') as file:
|
||||||
|
return yaml.safe_load(file)
|
||||||
|
except FileNotFoundError:
|
||||||
|
print(file_path, 'is not found.')
|
||||||
|
return None
|
||||||
|
except yaml.YAMLError:
|
||||||
|
print(file_path, 'is not a valid YAML file.')
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
def dict_str_str(d: dict) -> bool:
|
def dict_str_str(d: dict) -> bool:
|
||||||
"""restricted format: dict[str, str]"""
|
"""restricted format: dict[str, str]"""
|
||||||
if not isinstance(d, dict):
|
if not isinstance(d, dict):
|
||||||
@ -86,6 +99,30 @@ def bool_trans(d: dict) -> bool:
|
|||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
def compare_dict_structure(dict1: dict, dict2: dict) -> bool:
|
||||||
|
if not isinstance(dict1, dict) or not isinstance(dict2, dict):
|
||||||
|
print('invalid type')
|
||||||
|
return False
|
||||||
|
if dict1.keys() != dict2.keys():
|
||||||
|
print('inconsistent key values, ', dict1.keys(), dict2.keys())
|
||||||
|
return False
|
||||||
|
for key in dict1:
|
||||||
|
if isinstance(dict1[key], dict) and isinstance(dict2[key], dict):
|
||||||
|
if not compare_dict_structure(dict1[key], dict2[key]):
|
||||||
|
print('inconsistent key values, dict, ', key)
|
||||||
|
return False
|
||||||
|
elif isinstance(dict1[key], list) and isinstance(dict2[key], list):
|
||||||
|
if not all(
|
||||||
|
isinstance(i, type(j))
|
||||||
|
for i, j in zip(dict1[key], dict2[key])):
|
||||||
|
print('inconsistent key values, list, ', key)
|
||||||
|
return False
|
||||||
|
elif not isinstance(dict1[key], type(dict2[key])):
|
||||||
|
print('inconsistent key values, type, ', key)
|
||||||
|
return False
|
||||||
|
return True
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.github
|
@pytest.mark.github
|
||||||
def test_bool_trans():
|
def test_bool_trans():
|
||||||
data: dict = load_json_file(
|
data: dict = load_json_file(
|
||||||
@ -125,3 +162,62 @@ def test_miot_i18n():
|
|||||||
data: dict = load_json_file(file_path)
|
data: dict = load_json_file(file_path)
|
||||||
assert data
|
assert data
|
||||||
assert nested_3_dict_str_str(data)
|
assert nested_3_dict_str_str(data)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.github
|
||||||
|
def test_translations():
|
||||||
|
i18n_path: str = path.join(
|
||||||
|
SOURCE_DIR, '../custom_components/xiaomi_home/translations')
|
||||||
|
for file_name in listdir(i18n_path):
|
||||||
|
file_path: str = path.join(i18n_path, file_name)
|
||||||
|
data: dict = load_json_file(file_path)
|
||||||
|
assert data
|
||||||
|
assert dict_str_dict(data)
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.mark.github
|
||||||
|
def test_miot_lang_integrity():
|
||||||
|
# pylint: disable=import-outside-toplevel
|
||||||
|
from miot.const import INTEGRATION_LANGUAGES
|
||||||
|
integration_lang_list: list[str] = [
|
||||||
|
f'{key}.json' for key in list(INTEGRATION_LANGUAGES.keys())]
|
||||||
|
translations_names: set[str] = set(listdir(
|
||||||
|
path.join(
|
||||||
|
SOURCE_DIR, '../custom_components/xiaomi_home/translations')))
|
||||||
|
assert len(translations_names) == len(integration_lang_list)
|
||||||
|
assert translations_names == set(integration_lang_list)
|
||||||
|
i18n_names: set[str] = set(listdir(
|
||||||
|
path.join(
|
||||||
|
SOURCE_DIR, '../custom_components/xiaomi_home/miot/i18n')))
|
||||||
|
assert len(i18n_names) == len(translations_names)
|
||||||
|
assert i18n_names == translations_names
|
||||||
|
# Check translation files structure
|
||||||
|
default_dict: dict = load_json_file(
|
||||||
|
path.join(
|
||||||
|
SOURCE_DIR,
|
||||||
|
'../custom_components/xiaomi_home/translations',
|
||||||
|
integration_lang_list[0]))
|
||||||
|
for name in list(integration_lang_list)[1:]:
|
||||||
|
compare_dict: dict = load_json_file(
|
||||||
|
path.join(
|
||||||
|
SOURCE_DIR,
|
||||||
|
'../custom_components/xiaomi_home/translations',
|
||||||
|
name))
|
||||||
|
if not compare_dict_structure(default_dict, compare_dict):
|
||||||
|
print('compare_dict_structure failed /translations, ', name)
|
||||||
|
assert False
|
||||||
|
# Check i18n files structure
|
||||||
|
default_dict = load_json_file(
|
||||||
|
path.join(
|
||||||
|
SOURCE_DIR,
|
||||||
|
'../custom_components/xiaomi_home/miot/i18n',
|
||||||
|
integration_lang_list[0]))
|
||||||
|
for name in list(integration_lang_list)[1:]:
|
||||||
|
compare_dict: dict = load_json_file(
|
||||||
|
path.join(
|
||||||
|
SOURCE_DIR,
|
||||||
|
'../custom_components/xiaomi_home/miot/i18n',
|
||||||
|
name))
|
||||||
|
if not compare_dict_structure(default_dict, compare_dict):
|
||||||
|
print('compare_dict_structure failed /miot/i18n, ', name)
|
||||||
|
assert False
|
||||||
|
Loading…
x
Reference in New Issue
Block a user