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.
49 lines
1.3 KiB
49 lines
1.3 KiB
4 years ago
|
#!/usr/bin/env python
|
||
|
|
||
|
"""Tests for `deep_translator` package."""
|
||
|
|
||
|
import pytest
|
||
|
from deep_translator import exceptions, PonsTranslator
|
||
|
|
||
|
|
||
|
@pytest.fixture
|
||
|
def pons():
|
||
|
return PonsTranslator(source="english", target='french')
|
||
|
|
||
|
|
||
|
def test_content(pons):
|
||
|
"""Sample pytest test function with the pytest fixture as an argument."""
|
||
|
# from bs4 import BeautifulSoup
|
||
|
# assert 'GitHub' in BeautifulSoup(response.content).title.string
|
||
|
assert pons.translate(word='good') is not None
|
||
|
|
||
|
|
||
|
def test_inputs():
|
||
|
with pytest.raises(exceptions.LanguageNotSupportedException):
|
||
|
PonsTranslator(source="", target="")
|
||
|
|
||
|
with pytest.raises(exceptions.LanguageNotSupportedException):
|
||
|
PonsTranslator(source="auto", target="nothing")
|
||
|
l1 = PonsTranslator("en", "fr")
|
||
|
l2 = PonsTranslator("english", "french")
|
||
|
assert l1._source == l2._source
|
||
|
assert l1._target == l2._target
|
||
|
|
||
|
|
||
|
def test_payload(pons):
|
||
|
|
||
|
with pytest.raises(exceptions.NotValidPayload):
|
||
|
pons.translate("")
|
||
|
|
||
|
with pytest.raises(exceptions.NotValidPayload):
|
||
|
pons.translate(123)
|
||
|
|
||
|
with pytest.raises(exceptions.NotValidPayload):
|
||
|
pons.translate({})
|
||
|
|
||
|
with pytest.raises(exceptions.NotValidPayload):
|
||
|
pons.translate([])
|
||
|
|
||
|
with pytest.raises(exceptions.NotValidLength):
|
||
|
pons.translate("a" * 51)
|