2015-04-04 16:10:26 +00:00
|
|
|
import unittest
|
|
|
|
|
2017-04-29 23:00:21 +00:00
|
|
|
from forms_tests.widget_tests.base import WidgetTest
|
|
|
|
|
2015-04-04 16:10:26 +00:00
|
|
|
from django.db import connection
|
2018-11-26 19:05:02 +00:00
|
|
|
from django.test import SimpleTestCase, TestCase, modify_settings
|
2022-12-03 15:40:45 +00:00
|
|
|
from django.utils.functional import cached_property
|
2018-11-26 19:05:02 +00:00
|
|
|
|
|
|
|
|
2022-02-03 19:24:19 +00:00
|
|
|
@unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL specific tests")
|
2022-12-01 08:39:46 +00:00
|
|
|
# To register type handlers and locate the widget's template.
|
|
|
|
@modify_settings(INSTALLED_APPS={"append": "django.contrib.postgres"})
|
2018-11-26 19:05:02 +00:00
|
|
|
class PostgreSQLSimpleTestCase(SimpleTestCase):
|
|
|
|
pass
|
2015-04-04 16:10:26 +00:00
|
|
|
|
|
|
|
|
2022-02-03 19:24:19 +00:00
|
|
|
@unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL specific tests")
|
2022-12-01 08:39:46 +00:00
|
|
|
# To register type handlers and locate the widget's template.
|
|
|
|
@modify_settings(INSTALLED_APPS={"append": "django.contrib.postgres"})
|
2015-05-30 21:18:01 +00:00
|
|
|
class PostgreSQLTestCase(TestCase):
|
2022-12-03 15:40:45 +00:00
|
|
|
@cached_property
|
|
|
|
def default_text_search_config(self):
|
|
|
|
with connection.cursor() as cursor:
|
|
|
|
cursor.execute("SHOW default_text_search_config")
|
|
|
|
row = cursor.fetchone()
|
|
|
|
return row[0] if row else None
|
|
|
|
|
|
|
|
def check_default_text_search_config(self):
|
|
|
|
if self.default_text_search_config != "pg_catalog.english":
|
|
|
|
self.skipTest("The default text search config is not 'english'.")
|
2017-04-29 23:00:21 +00:00
|
|
|
|
|
|
|
|
2022-02-03 19:24:19 +00:00
|
|
|
@unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL specific tests")
|
2017-04-29 23:00:21 +00:00
|
|
|
# To locate the widget's template.
|
2022-02-03 19:24:19 +00:00
|
|
|
@modify_settings(INSTALLED_APPS={"append": "django.contrib.postgres"})
|
2018-11-26 19:05:02 +00:00
|
|
|
class PostgreSQLWidgetTestCase(WidgetTest, PostgreSQLSimpleTestCase):
|
2017-04-29 23:00:21 +00:00
|
|
|
pass
|