You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PaddleSpeech/third_party/python-pinyin/tests/test_style.py

49 lines
1.2 KiB

from copy import deepcopy
from pypinyin import pinyin, Style
from pypinyin.style import register, convert
def test_custom_style_with_decorator():
style_value = 'test_custom_style_with_decorator'
@register(style_value)
def func(pinyin, **kwargs):
return pinyin + str(len(pinyin))
hans = '北京'
origin_pinyin_s = pinyin(hans)
expected_pinyin_s = deepcopy(origin_pinyin_s)
for pinyin_s in expected_pinyin_s:
for index, py in enumerate(pinyin_s):
pinyin_s[index] = func(py)
assert pinyin(hans, style=style_value) == expected_pinyin_s
def test_custom_style_with_call():
style_value = 'test_custom_style_with_call'
def func(pinyin, **kwargs):
return str(len(pinyin))
register(style_value, func=func)
hans = '北京'
origin_pinyin_s = pinyin(hans)
expected_pinyin_s = deepcopy(origin_pinyin_s)
for pinyin_s in expected_pinyin_s:
for index, py in enumerate(pinyin_s):
pinyin_s[index] = func(py)
assert pinyin(hans, style=style_value) == expected_pinyin_s
def test_finals_tone3_no_final():
assert convert('ń', Style.FINALS_TONE3, True, None) == 'n2'
if __name__ == '__main__':
import pytest
pytest.cmdline.main()