2013-04-02 01:51:53 +08:00
|
|
|
# -*- encoding: utf-8 -*-
|
2012-08-24 03:07:56 +08:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-02-01 03:34:36 +08:00
|
|
|
import re
|
2013-07-01 20:22:27 +08:00
|
|
|
from unittest import expectedFailure
|
2013-02-01 03:34:36 +08:00
|
|
|
|
2011-01-24 22:58:05 +08:00
|
|
|
from django.core.management import call_command
|
2012-10-27 09:51:14 +08:00
|
|
|
from django.db import connection
|
2011-02-01 22:42:52 +08:00
|
|
|
from django.test import TestCase, skipUnlessDBFeature
|
2013-04-02 01:51:53 +08:00
|
|
|
from django.utils.six import PY3, StringIO
|
2011-01-24 22:58:05 +08:00
|
|
|
|
2013-02-23 04:02:45 +08:00
|
|
|
if connection.vendor == 'oracle':
|
|
|
|
expectedFailureOnOracle = expectedFailure
|
|
|
|
else:
|
|
|
|
expectedFailureOnOracle = lambda f: f
|
2011-01-24 23:18:56 +08:00
|
|
|
|
2011-01-24 22:58:05 +08:00
|
|
|
class InspectDBTestCase(TestCase):
|
2011-02-01 22:42:52 +08:00
|
|
|
|
2012-06-02 07:58:53 +08:00
|
|
|
def test_stealth_table_name_filter_option(self):
|
|
|
|
out = StringIO()
|
|
|
|
# Lets limit the introspection to tables created for models of this
|
|
|
|
# application
|
|
|
|
call_command('inspectdb',
|
|
|
|
table_name_filter=lambda tn:tn.startswith('inspectdb_'),
|
|
|
|
stdout=out)
|
|
|
|
error_message = "inspectdb has examined a table that should have been filtered out."
|
|
|
|
# contrib.contenttypes is one of the apps always installed when running
|
|
|
|
# the Django test suite, check that one of its tables hasn't been
|
|
|
|
# inspected
|
|
|
|
self.assertNotIn("class DjangoContentType(models.Model):", out.getvalue(), msg=error_message)
|
|
|
|
|
2013-02-23 04:02:45 +08:00
|
|
|
# Inspecting oracle DB doesn't produce correct results, see #19884
|
|
|
|
@expectedFailureOnOracle
|
2013-02-01 03:34:36 +08:00
|
|
|
def test_field_types(self):
|
|
|
|
"""Test introspection of various Django field types"""
|
|
|
|
out = StringIO()
|
|
|
|
call_command('inspectdb',
|
|
|
|
table_name_filter=lambda tn:tn.startswith('inspectdb_columntypes'),
|
|
|
|
stdout=out)
|
|
|
|
output = out.getvalue()
|
|
|
|
def assertFieldType(name, definition):
|
|
|
|
out_def = re.search(r'^\s*%s = (models.*)$' % name, output, re.MULTILINE).groups()[0]
|
|
|
|
self.assertEqual(definition, out_def)
|
|
|
|
|
|
|
|
assertFieldType('id', "models.IntegerField(primary_key=True)")
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('big_int_field', "models.BigIntegerField()")
|
2013-02-01 03:34:36 +08:00
|
|
|
if connection.vendor == 'mysql':
|
|
|
|
# No native boolean type on MySQL
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('bool_field', "models.IntegerField()")
|
|
|
|
assertFieldType('null_bool_field', "models.IntegerField(blank=True, null=True)")
|
2013-02-01 03:34:36 +08:00
|
|
|
else:
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('bool_field', "models.BooleanField()")
|
|
|
|
assertFieldType('null_bool_field', "models.NullBooleanField()")
|
|
|
|
assertFieldType('char_field', "models.CharField(max_length=10)")
|
|
|
|
assertFieldType('comma_separated_int_field', "models.CharField(max_length=99)")
|
|
|
|
assertFieldType('date_field', "models.DateField()")
|
|
|
|
assertFieldType('date_time_field', "models.DateTimeField()")
|
2013-02-01 03:34:36 +08:00
|
|
|
if connection.vendor == 'sqlite':
|
2013-04-02 00:32:57 +08:00
|
|
|
# Guessed arguments, see #5014
|
|
|
|
assertFieldType('decimal_field', "models.DecimalField(max_digits=10, decimal_places=5) "
|
|
|
|
"# max_digits and decimal_places have been guessed, as this database handles decimal fields as float")
|
2013-02-01 03:34:36 +08:00
|
|
|
else:
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('decimal_field', "models.DecimalField(max_digits=6, decimal_places=1)")
|
|
|
|
assertFieldType('email_field', "models.CharField(max_length=75)")
|
|
|
|
assertFieldType('file_field', "models.CharField(max_length=100)")
|
|
|
|
assertFieldType('file_path_field', "models.CharField(max_length=100)")
|
|
|
|
assertFieldType('float_field', "models.FloatField()")
|
|
|
|
assertFieldType('int_field', "models.IntegerField()")
|
2013-02-01 03:34:36 +08:00
|
|
|
if connection.vendor == 'postgresql':
|
|
|
|
# Only PostgreSQL has a specific type
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('ip_address_field', "models.GenericIPAddressField()")
|
|
|
|
assertFieldType('gen_ip_adress_field', "models.GenericIPAddressField()")
|
2013-02-01 03:34:36 +08:00
|
|
|
else:
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('ip_address_field', "models.CharField(max_length=15)")
|
|
|
|
assertFieldType('gen_ip_adress_field', "models.CharField(max_length=39)")
|
2013-02-01 03:34:36 +08:00
|
|
|
if connection.vendor == 'sqlite':
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('pos_int_field', "models.PositiveIntegerField()")
|
|
|
|
assertFieldType('pos_small_int_field', "models.PositiveSmallIntegerField()")
|
2013-02-01 03:34:36 +08:00
|
|
|
else:
|
|
|
|
# 'unsigned' property undetected on other backends
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('pos_int_field', "models.IntegerField()")
|
2013-02-01 03:34:36 +08:00
|
|
|
if connection.vendor == 'postgresql':
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('pos_small_int_field', "models.SmallIntegerField()")
|
2013-02-01 03:34:36 +08:00
|
|
|
else:
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('pos_small_int_field', "models.IntegerField()")
|
|
|
|
assertFieldType('slug_field', "models.CharField(max_length=50)")
|
2013-02-01 03:34:36 +08:00
|
|
|
if connection.vendor in ('sqlite', 'postgresql'):
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('small_int_field', "models.SmallIntegerField()")
|
2013-02-01 03:34:36 +08:00
|
|
|
else:
|
2013-02-01 09:00:25 +08:00
|
|
|
assertFieldType('small_int_field', "models.IntegerField()")
|
|
|
|
assertFieldType('text_field', "models.TextField()")
|
|
|
|
assertFieldType('time_field', "models.TimeField()")
|
|
|
|
assertFieldType('url_field', "models.CharField(max_length=200)")
|
2013-02-01 03:34:36 +08:00
|
|
|
|
2011-02-01 22:42:52 +08:00
|
|
|
@skipUnlessDBFeature('can_introspect_foreign_keys')
|
2011-01-24 22:58:05 +08:00
|
|
|
def test_attribute_name_not_python_keyword(self):
|
|
|
|
out = StringIO()
|
2012-06-02 07:58:53 +08:00
|
|
|
# Lets limit the introspection to tables created for models of this
|
|
|
|
# application
|
|
|
|
call_command('inspectdb',
|
|
|
|
table_name_filter=lambda tn:tn.startswith('inspectdb_'),
|
|
|
|
stdout=out)
|
2012-08-24 03:07:56 +08:00
|
|
|
output = out.getvalue()
|
2011-01-24 22:58:05 +08:00
|
|
|
error_message = "inspectdb generated an attribute name which is a python keyword"
|
2013-01-28 17:21:07 +08:00
|
|
|
# Recursive foreign keys should be set to 'self'
|
|
|
|
self.assertIn("parent = models.ForeignKey('self')", output)
|
2012-08-24 03:07:56 +08:00
|
|
|
self.assertNotIn("from = models.ForeignKey(InspectdbPeople)", output, msg=error_message)
|
2012-04-27 14:56:31 +08:00
|
|
|
# As InspectdbPeople model is defined after InspectdbMessage, it should be quoted
|
2012-08-24 03:07:56 +08:00
|
|
|
self.assertIn("from_field = models.ForeignKey('InspectdbPeople', db_column='from_id')",
|
|
|
|
output)
|
2012-02-05 15:51:37 +08:00
|
|
|
self.assertIn("people_pk = models.ForeignKey(InspectdbPeople, primary_key=True)",
|
2012-08-24 03:07:56 +08:00
|
|
|
output)
|
2012-02-05 15:51:37 +08:00
|
|
|
self.assertIn("people_unique = models.ForeignKey(InspectdbPeople, unique=True)",
|
2012-08-24 03:07:56 +08:00
|
|
|
output)
|
2012-02-12 04:53:48 +08:00
|
|
|
|
|
|
|
def test_digits_column_name_introspection(self):
|
|
|
|
"""Introspection of column names consist/start with digits (#16536/#17676)"""
|
|
|
|
out = StringIO()
|
2012-06-02 07:58:53 +08:00
|
|
|
# Lets limit the introspection to tables created for models of this
|
|
|
|
# application
|
|
|
|
call_command('inspectdb',
|
|
|
|
table_name_filter=lambda tn:tn.startswith('inspectdb_'),
|
|
|
|
stdout=out)
|
2012-08-24 03:07:56 +08:00
|
|
|
output = out.getvalue()
|
2012-02-12 04:53:48 +08:00
|
|
|
error_message = "inspectdb generated a model field name which is a number"
|
2012-08-24 03:07:56 +08:00
|
|
|
self.assertNotIn(" 123 = models.CharField", output, msg=error_message)
|
|
|
|
self.assertIn("number_123 = models.CharField", output)
|
2012-02-12 04:53:48 +08:00
|
|
|
|
|
|
|
error_message = "inspectdb generated a model field name which starts with a digit"
|
2012-08-24 03:07:56 +08:00
|
|
|
self.assertNotIn(" 4extra = models.CharField", output, msg=error_message)
|
|
|
|
self.assertIn("number_4extra = models.CharField", output)
|
|
|
|
|
|
|
|
self.assertNotIn(" 45extra = models.CharField", output, msg=error_message)
|
|
|
|
self.assertIn("number_45extra = models.CharField", output)
|
2012-02-12 04:53:48 +08:00
|
|
|
|
2012-08-24 04:50:25 +08:00
|
|
|
def test_special_column_name_introspection(self):
|
2012-10-27 09:51:14 +08:00
|
|
|
"""
|
|
|
|
Introspection of column names containing special characters,
|
|
|
|
unsuitable for Python identifiers
|
2012-08-24 04:50:25 +08:00
|
|
|
"""
|
2012-08-24 03:07:56 +08:00
|
|
|
out = StringIO()
|
|
|
|
call_command('inspectdb', stdout=out)
|
|
|
|
output = out.getvalue()
|
2012-10-27 09:51:14 +08:00
|
|
|
base_name = 'Field' if connection.vendor != 'oracle' else 'field'
|
2012-08-24 03:07:56 +08:00
|
|
|
self.assertIn("field = models.IntegerField()", output)
|
2012-10-27 09:51:14 +08:00
|
|
|
self.assertIn("field_field = models.IntegerField(db_column='%s_')" % base_name, output)
|
|
|
|
self.assertIn("field_field_0 = models.IntegerField(db_column='%s__')" % base_name, output)
|
2012-08-24 03:07:56 +08:00
|
|
|
self.assertIn("field_field_1 = models.IntegerField(db_column='__field')", output)
|
2012-08-24 04:50:25 +08:00
|
|
|
self.assertIn("prc_x = models.IntegerField(db_column='prc(%) x')", output)
|
2013-04-02 01:51:53 +08:00
|
|
|
if PY3:
|
|
|
|
# Python 3 allows non-ascii identifiers
|
|
|
|
self.assertIn("tamaño = models.IntegerField()", output)
|
|
|
|
else:
|
|
|
|
self.assertIn("tama_o = models.IntegerField(db_column='tama\\xf1o')", output)
|
2013-02-03 08:08:45 +08:00
|
|
|
|
|
|
|
def test_managed_models(self):
|
|
|
|
"""Test that by default the command generates models with `Meta.managed = False` (#14305)"""
|
|
|
|
out = StringIO()
|
|
|
|
call_command('inspectdb',
|
|
|
|
table_name_filter=lambda tn:tn.startswith('inspectdb_columntypes'),
|
|
|
|
stdout=out)
|
|
|
|
output = out.getvalue()
|
|
|
|
self.longMessage = False
|
|
|
|
self.assertIn(" managed = False", output, msg='inspectdb should generate unmanaged models.')
|