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.
58 lines
1.6 KiB
58 lines
1.6 KiB
#!/usr/bin/env python
|
|
|
|
"""Tests for `deep_translator` package."""
|
|
|
|
import pytest
|
|
from deep_translator import exceptions, GoogleTranslator
|
|
|
|
|
|
@pytest.fixture
|
|
def google_translator():
|
|
"""Sample pytest fixture.
|
|
|
|
See more at: http://doc.pytest.org/en/latest/fixture.html
|
|
"""
|
|
return GoogleTranslator(target='en')
|
|
|
|
|
|
def test_content(google_translator):
|
|
"""Sample pytest test function with the pytest fixture as an argument."""
|
|
# from bs4 import BeautifulSoup
|
|
# assert 'GitHub' in BeautifulSoup(response.content).title.string
|
|
assert google_translator.translate(text='좋은') == "good"
|
|
|
|
|
|
def test_inputs():
|
|
with pytest.raises(exceptions.LanguageNotSupportedException):
|
|
GoogleTranslator(source="", target="")
|
|
|
|
with pytest.raises(exceptions.LanguageNotSupportedException):
|
|
GoogleTranslator(source="auto", target="nothing")
|
|
|
|
# test abbreviations and languages
|
|
g1 = GoogleTranslator("en", "fr")
|
|
g2 = GoogleTranslator("english", "french")
|
|
assert g1._source == g2._source
|
|
assert g1._target == g2._target
|
|
|
|
|
|
def test_payload(google_translator):
|
|
|
|
with pytest.raises(exceptions.NotValidPayload):
|
|
google_translator.translate(text="")
|
|
|
|
with pytest.raises(exceptions.NotValidPayload):
|
|
google_translator.translate(text=123)
|
|
|
|
with pytest.raises(exceptions.NotValidPayload):
|
|
google_translator.translate(text={})
|
|
|
|
with pytest.raises(exceptions.NotValidPayload):
|
|
google_translator.translate(text=[])
|
|
|
|
with pytest.raises(exceptions.NotValidLength):
|
|
google_translator.translate("a"*5001)
|
|
|
|
#for _ in range(1):
|
|
#assert google_translator.translate(text='좋은') == "good"
|