2015-04-05 00:10:26 +08:00
|
|
|
import unittest
|
|
|
|
|
2017-04-30 07:00:21 +08:00
|
|
|
from forms_tests.widget_tests.base import WidgetTest
|
|
|
|
|
2015-04-05 00:10:26 +08:00
|
|
|
from django.db import connection
|
2018-11-27 03:05:02 +08:00
|
|
|
from django.test import SimpleTestCase, TestCase, modify_settings
|
2022-12-03 23:40:45 +08:00
|
|
|
from django.utils.functional import cached_property
|
2018-11-27 03:05:02 +08:00
|
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL specific tests")
|
2022-12-01 16:39:46 +08:00
|
|
|
# To register type handlers and locate the widget's template.
|
|
|
|
@modify_settings(INSTALLED_APPS={"append": "django.contrib.postgres"})
|
2018-11-27 03:05:02 +08:00
|
|
|
class PostgreSQLSimpleTestCase(SimpleTestCase):
|
|
|
|
pass
|
2015-04-05 00:10:26 +08:00
|
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL specific tests")
|
2022-12-01 16:39:46 +08:00
|
|
|
# To register type handlers and locate the widget's template.
|
|
|
|
@modify_settings(INSTALLED_APPS={"append": "django.contrib.postgres"})
|
2015-05-31 05:18:01 +08:00
|
|
|
class PostgreSQLTestCase(TestCase):
|
2022-12-03 23:40:45 +08: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-30 07:00:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(connection.vendor == "postgresql", "PostgreSQL specific tests")
|
|
|
|
# To locate the widget's template.
|
|
|
|
@modify_settings(INSTALLED_APPS={"append": "django.contrib.postgres"})
|
2018-11-27 03:05:02 +08:00
|
|
|
class PostgreSQLWidgetTestCase(WidgetTest, PostgreSQLSimpleTestCase):
|
2017-04-30 07:00:21 +08:00
|
|
|
pass
|