Commit 5475da1c authored by Ian Kelly's avatar Ian Kelly
Browse files

Added a regression test for r14781. Also fixed a bug where connection.vendor...

Added a regression test for r14781.  Also fixed a bug where connection.vendor was effectively always 'unknown', causing all vendor-specific tests to be skipped.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@14783 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent cbf9d6e0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -11,6 +11,7 @@ class BaseDatabaseWrapper(local):
    Represents a database connection.
    """
    ops = None
    vendor = 'unknown'

    def __init__(self, settings_dict, alias=DEFAULT_DB_ALIAS):
        # `settings_dict` should be a dictionary containing keys such as
@@ -20,7 +21,6 @@ class BaseDatabaseWrapper(local):
        self.queries = []
        self.settings_dict = settings_dict
        self.alias = alias
        self.vendor = 'unknown'
        self.use_debug_cursor = None

    def __eq__(self, other):
+9 −0
Original line number Diff line number Diff line
@@ -47,6 +47,15 @@ class OracleChecks(unittest.TestCase):
        self.assertEqual(long_str, row[0].read())
        c.execute('DROP TABLE ltext')

    @unittest.skipUnless(connection.vendor == 'oracle',
                         "No need to check Oracle connection semantics")
    def test_client_encoding(self):
        # If the backend is Oracle, test that the client encoding is set
        # correctly.  This was broken under Cygwin prior to r14781.
        c = connection.cursor()  # Ensure the connection is initialized.
        self.assertEqual(connection.connection.encoding, "UTF-8")
        self.assertEqual(connection.connection.nencoding, "UTF-8")

class DateQuotingTest(TestCase):

    def test_django_date_trunc(self):