915b34391c
* chore: Added isort to pre-commit config * chore: Sort imports with isort * chore: Clean up imports with pycln * chore: Sort imports with isort * chore: Fix import issues * chore: Clean up sider issues * chore: Remove import errors from flake8 ignore list * chore: Clean up lint issues
22 lines
635 B
Python
22 lines
635 B
Python
from __future__ import unicode_literals
|
|
|
|
import unittest
|
|
|
|
import frappe
|
|
from frappe.contacts.address_and_contact import filter_dynamic_link_doctypes
|
|
|
|
|
|
class TestSearch(unittest.TestCase):
|
|
# Search for the word "cond", part of the word "conduire" (Lead) in french.
|
|
def test_contact_search_in_foreign_language(self):
|
|
try:
|
|
frappe.local.lang = 'fr'
|
|
output = filter_dynamic_link_doctypes("DocType", "cond", "name", 0, 20, {
|
|
'fieldtype': 'HTML',
|
|
'fieldname': 'contact_html'
|
|
})
|
|
result = [['found' for x in y if x=="Lead"] for y in output]
|
|
self.assertTrue(['found'] in result)
|
|
finally:
|
|
frappe.local.lang = 'en'
|