| |
|
|
| """Tests for `deep_translator` package.""" |
|
|
| import pytest |
|
|
| from deep_translator import MyMemoryTranslator, exceptions |
|
|
|
|
| @pytest.fixture |
| def mymemory(): |
| return MyMemoryTranslator(source="en-GB", target="fr-FR") |
|
|
|
|
| def test_content(mymemory): |
| """Sample pytest test function with the pytest fixture as an argument.""" |
| |
| |
| assert mymemory.translate(text="good") is not None |
|
|
|
|
| def test_inputs(): |
| with pytest.raises(exceptions.InvalidSourceOrTargetLanguage): |
| MyMemoryTranslator(source="", target="") |
|
|
| with pytest.raises(exceptions.InvalidSourceOrTargetLanguage): |
| MyMemoryTranslator(source="auto", target="") |
|
|
| with pytest.raises(exceptions.InvalidSourceOrTargetLanguage): |
| MyMemoryTranslator(source="", target="en-GB") |
|
|
| m1 = MyMemoryTranslator("en-GB", "fr-FR") |
| m2 = MyMemoryTranslator("english", "french") |
| assert m1._source == m2._source |
| assert m1._target == m2._target |
|
|
|
|
| def test_payload(mymemory): |
| with pytest.raises(exceptions.NotValidPayload): |
| mymemory.translate(text={}) |
|
|
| with pytest.raises(exceptions.NotValidPayload): |
| mymemory.translate(text=[]) |
|
|
| with pytest.raises(exceptions.NotValidLength): |
| mymemory.translate(text="a" * 501) |
|
|