2018-03-17 20:00:58 +00:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
from django.db import connection
|
|
|
|
from django.test import TestCase
|
|
|
|
|
|
|
|
|
|
|
|
@unittest.skipUnless(connection.vendor == "mysql", "MySQL tests")
|
|
|
|
class SchemaEditorTests(TestCase):
|
|
|
|
def test_quote_value(self):
|
2018-12-05 18:47:40 +00:00
|
|
|
import MySQLdb
|
2022-02-03 19:24:19 +00:00
|
|
|
|
2018-03-17 20:00:58 +00:00
|
|
|
editor = connection.schema_editor()
|
|
|
|
tested_values = [
|
2018-02-09 15:04:00 +00:00
|
|
|
("string", "'string'"),
|
2021-03-27 11:01:49 +00:00
|
|
|
("¿Tú hablas inglés?", "'¿Tú hablas inglés?'"),
|
2021-03-29 08:10:19 +00:00
|
|
|
(b"bytes", b"'bytes'"),
|
2018-03-17 20:00:58 +00:00
|
|
|
(42, "42"),
|
2018-12-05 18:47:40 +00:00
|
|
|
(1.754, "1.754e0" if MySQLdb.version_info >= (1, 3, 14) else "1.754"),
|
2019-01-19 12:31:15 +00:00
|
|
|
(False, b"0" if MySQLdb.version_info >= (1, 4, 0) else "0"),
|
2018-03-17 20:00:58 +00:00
|
|
|
]
|
|
|
|
for value, expected in tested_values:
|
|
|
|
with self.subTest(value=value):
|
|
|
|
self.assertEqual(editor.quote_value(value), expected)
|