2013-07-30 01:19:04 +08:00
|
|
|
from __future__ import unicode_literals
|
2011-10-18 02:45:22 +08:00
|
|
|
|
2011-09-18 03:54:52 +08:00
|
|
|
import os
|
2014-08-22 00:47:57 +08:00
|
|
|
import re
|
2011-10-18 02:45:22 +08:00
|
|
|
|
2015-01-28 20:35:27 +08:00
|
|
|
from django.contrib.gis.gdal import HAS_GDAL
|
2013-09-12 16:30:45 +08:00
|
|
|
from django.core.management import call_command
|
2014-09-18 05:58:20 +08:00
|
|
|
from django.db import connection, connections
|
2014-08-18 01:06:25 +08:00
|
|
|
from django.test import TestCase, skipUnlessDBFeature
|
2015-05-06 02:11:02 +08:00
|
|
|
from django.test.utils import modify_settings
|
2013-09-12 16:30:45 +08:00
|
|
|
from django.utils.six import StringIO
|
2011-10-18 02:45:22 +08:00
|
|
|
|
2015-02-10 23:07:44 +08:00
|
|
|
from ..test_data import TEST_DATA
|
2016-06-19 00:08:53 +08:00
|
|
|
from ..utils import postgis
|
2015-02-10 23:07:44 +08:00
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
if HAS_GDAL:
|
2015-06-20 17:31:22 +08:00
|
|
|
from django.contrib.gis.gdal import Driver, GDALException, GDAL_VERSION
|
2013-05-11 11:08:45 +08:00
|
|
|
from django.contrib.gis.utils.ogrinspect import ogrinspect
|
2011-09-18 03:54:52 +08:00
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
from .models import AllOGRFields
|
2011-09-18 03:54:52 +08:00
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
|
2016-06-14 22:18:33 +08:00
|
|
|
@skipUnlessDBFeature("gis_enabled")
|
2013-09-12 16:30:45 +08:00
|
|
|
class InspectDbTests(TestCase):
|
|
|
|
def test_geom_columns(self):
|
|
|
|
"""
|
|
|
|
Test the geo-enabled inspectdb command.
|
|
|
|
"""
|
|
|
|
out = StringIO()
|
2014-11-04 05:03:59 +08:00
|
|
|
call_command(
|
|
|
|
'inspectdb',
|
|
|
|
table_name_filter=lambda tn: tn == 'inspectapp_allogrfields',
|
|
|
|
stdout=out
|
|
|
|
)
|
2013-09-12 16:30:45 +08:00
|
|
|
output = out.getvalue()
|
2014-09-18 05:58:20 +08:00
|
|
|
if connection.features.supports_geometry_field_introspection:
|
|
|
|
self.assertIn('geom = models.PolygonField()', output)
|
|
|
|
self.assertIn('point = models.PointField()', output)
|
|
|
|
else:
|
|
|
|
self.assertIn('geom = models.GeometryField(', output)
|
|
|
|
self.assertIn('point = models.GeometryField(', output)
|
2013-09-12 16:30:45 +08:00
|
|
|
|
2014-11-04 05:03:59 +08:00
|
|
|
@skipUnlessDBFeature("supports_3d_storage")
|
|
|
|
def test_3d_columns(self):
|
|
|
|
out = StringIO()
|
|
|
|
call_command(
|
|
|
|
'inspectdb',
|
|
|
|
table_name_filter=lambda tn: tn == 'inspectapp_fields3d',
|
|
|
|
stdout=out
|
|
|
|
)
|
|
|
|
output = out.getvalue()
|
|
|
|
if connection.features.supports_geometry_field_introspection:
|
|
|
|
self.assertIn('point = models.PointField(dim=3)', output)
|
2016-06-19 00:08:53 +08:00
|
|
|
if postgis:
|
|
|
|
# Geography type is specific to PostGIS
|
|
|
|
self.assertIn('pointg = models.PointField(geography=True, dim=3)', output)
|
2014-11-04 05:03:59 +08:00
|
|
|
self.assertIn('line = models.LineStringField(dim=3)', output)
|
|
|
|
self.assertIn('poly = models.PolygonField(dim=3)', output)
|
|
|
|
else:
|
|
|
|
self.assertIn('point = models.GeometryField(', output)
|
2016-06-19 00:08:53 +08:00
|
|
|
self.assertIn('pointg = models.GeometryField(', output)
|
2014-11-04 05:03:59 +08:00
|
|
|
self.assertIn('line = models.GeometryField(', output)
|
|
|
|
self.assertIn('poly = models.GeometryField(', output)
|
|
|
|
|
2013-09-12 16:30:45 +08:00
|
|
|
|
2016-06-14 22:18:33 +08:00
|
|
|
@skipUnlessDBFeature("gis_enabled")
|
2015-05-06 02:11:02 +08:00
|
|
|
@modify_settings(
|
|
|
|
INSTALLED_APPS={'append': 'django.contrib.gis'},
|
|
|
|
)
|
2011-09-18 03:54:52 +08:00
|
|
|
class OGRInspectTest(TestCase):
|
2013-02-01 16:34:39 +08:00
|
|
|
maxDiff = 1024
|
|
|
|
|
2011-09-18 03:54:52 +08:00
|
|
|
def test_poly(self):
|
|
|
|
shp_file = os.path.join(TEST_DATA, 'test_poly', 'test_poly.shp')
|
|
|
|
model_def = ogrinspect(shp_file, 'MyModel')
|
|
|
|
|
|
|
|
expected = [
|
|
|
|
'# This is an auto-generated Django model module created by ogrinspect.',
|
|
|
|
'from django.contrib.gis.db import models',
|
|
|
|
'',
|
|
|
|
'class MyModel(models.Model):',
|
|
|
|
' float = models.FloatField()',
|
2015-06-20 17:31:22 +08:00
|
|
|
' int = models.{}()'.format('BigIntegerField' if GDAL_VERSION >= (2, 0) else 'FloatField'),
|
2011-09-18 03:54:52 +08:00
|
|
|
' str = models.CharField(max_length=80)',
|
|
|
|
' geom = models.PolygonField(srid=-1)',
|
|
|
|
]
|
|
|
|
|
|
|
|
self.assertEqual(model_def, '\n'.join(expected))
|
|
|
|
|
2015-05-06 02:11:02 +08:00
|
|
|
def test_poly_multi(self):
|
|
|
|
shp_file = os.path.join(TEST_DATA, 'test_poly', 'test_poly.shp')
|
|
|
|
model_def = ogrinspect(shp_file, 'MyModel', multi_geom=True)
|
|
|
|
self.assertIn('geom = models.MultiPolygonField(srid=-1)', model_def)
|
2015-05-06 17:57:43 +08:00
|
|
|
# Same test with a 25D-type geometry field
|
|
|
|
shp_file = os.path.join(TEST_DATA, 'gas_lines', 'gas_leitung.shp')
|
|
|
|
model_def = ogrinspect(shp_file, 'MyModel', multi_geom=True)
|
|
|
|
self.assertIn('geom = models.MultiLineStringField(srid=-1)', model_def)
|
2015-05-06 02:11:02 +08:00
|
|
|
|
2011-09-18 03:54:52 +08:00
|
|
|
def test_date_field(self):
|
|
|
|
shp_file = os.path.join(TEST_DATA, 'cities', 'cities.shp')
|
|
|
|
model_def = ogrinspect(shp_file, 'City')
|
|
|
|
|
|
|
|
expected = [
|
|
|
|
'# This is an auto-generated Django model module created by ogrinspect.',
|
|
|
|
'from django.contrib.gis.db import models',
|
|
|
|
'',
|
|
|
|
'class City(models.Model):',
|
|
|
|
' name = models.CharField(max_length=80)',
|
2015-06-20 17:31:22 +08:00
|
|
|
' population = models.{}()'.format('BigIntegerField' if GDAL_VERSION >= (2, 0) else 'FloatField'),
|
2011-09-18 03:54:52 +08:00
|
|
|
' density = models.FloatField()',
|
|
|
|
' created = models.DateField()',
|
|
|
|
' geom = models.PointField(srid=-1)',
|
|
|
|
]
|
|
|
|
|
|
|
|
self.assertEqual(model_def, '\n'.join(expected))
|
|
|
|
|
|
|
|
def test_time_field(self):
|
|
|
|
# Getting the database identifier used by OGR, if None returned
|
|
|
|
# GDAL does not have the support compiled in.
|
|
|
|
ogr_db = get_ogr_db_string()
|
|
|
|
if not ogr_db:
|
2014-08-22 00:47:57 +08:00
|
|
|
self.skipTest("Unable to setup an OGR connection to your database")
|
2011-09-18 03:54:52 +08:00
|
|
|
|
2014-08-22 00:47:57 +08:00
|
|
|
try:
|
|
|
|
# Writing shapefiles via GDAL currently does not support writing OGRTime
|
|
|
|
# fields, so we need to actually use a database
|
|
|
|
model_def = ogrinspect(ogr_db, 'Measurement',
|
|
|
|
layer_key=AllOGRFields._meta.db_table,
|
|
|
|
decimal=['f_decimal'])
|
2014-12-18 05:00:05 +08:00
|
|
|
except GDALException:
|
2014-08-22 00:47:57 +08:00
|
|
|
self.skipTest("Unable to setup an OGR connection to your database")
|
2011-09-18 03:54:52 +08:00
|
|
|
|
2013-02-02 21:00:38 +08:00
|
|
|
self.assertTrue(model_def.startswith(
|
|
|
|
'# This is an auto-generated Django model module created by ogrinspect.\n'
|
|
|
|
'from django.contrib.gis.db import models\n'
|
|
|
|
'\n'
|
|
|
|
'class Measurement(models.Model):\n'
|
|
|
|
))
|
|
|
|
|
|
|
|
# The ordering of model fields might vary depending on several factors (version of GDAL, etc.)
|
|
|
|
self.assertIn(' f_decimal = models.DecimalField(max_digits=0, decimal_places=0)', model_def)
|
|
|
|
self.assertIn(' f_int = models.IntegerField()', model_def)
|
|
|
|
self.assertIn(' f_datetime = models.DateTimeField()', model_def)
|
|
|
|
self.assertIn(' f_time = models.TimeField()', model_def)
|
|
|
|
self.assertIn(' f_float = models.FloatField()', model_def)
|
|
|
|
self.assertIn(' f_char = models.CharField(max_length=10)', model_def)
|
|
|
|
self.assertIn(' f_date = models.DateField()', model_def)
|
|
|
|
|
2015-08-10 20:03:08 +08:00
|
|
|
# Some backends may have srid=-1
|
|
|
|
self.assertIsNotNone(re.search(r' geom = models.PolygonField\(([^\)])*\)', model_def))
|
2011-09-18 03:54:52 +08:00
|
|
|
|
2013-12-31 21:36:45 +08:00
|
|
|
def test_management_command(self):
|
|
|
|
shp_file = os.path.join(TEST_DATA, 'cities', 'cities.shp')
|
|
|
|
out = StringIO()
|
|
|
|
call_command('ogrinspect', shp_file, 'City', stdout=out)
|
|
|
|
output = out.getvalue()
|
|
|
|
self.assertIn('class City(models.Model):', output)
|
|
|
|
|
2011-09-18 03:54:52 +08:00
|
|
|
|
|
|
|
def get_ogr_db_string():
|
2013-04-16 02:27:58 +08:00
|
|
|
"""
|
|
|
|
Construct the DB string that GDAL will use to inspect the database.
|
|
|
|
GDAL will create its own connection to the database, so we re-use the
|
|
|
|
connection settings from the Django test.
|
|
|
|
"""
|
2011-09-18 03:54:52 +08:00
|
|
|
db = connections.databases['default']
|
|
|
|
|
|
|
|
# Map from the django backend into the OGR driver name and database identifier
|
|
|
|
# http://www.gdal.org/ogr/ogr_formats.html
|
|
|
|
#
|
2013-04-16 02:27:58 +08:00
|
|
|
# TODO: Support Oracle (OCI).
|
2011-09-18 03:54:52 +08:00
|
|
|
drivers = {
|
2013-04-16 02:27:58 +08:00
|
|
|
'django.contrib.gis.db.backends.postgis': ('PostgreSQL', "PG:dbname='%(db_name)s'", ' '),
|
|
|
|
'django.contrib.gis.db.backends.mysql': ('MySQL', 'MYSQL:"%(db_name)s"', ','),
|
|
|
|
'django.contrib.gis.db.backends.spatialite': ('SQLite', '%(db_name)s', '')
|
2011-09-18 03:54:52 +08:00
|
|
|
}
|
|
|
|
|
2014-09-18 05:34:28 +08:00
|
|
|
db_engine = db['ENGINE']
|
|
|
|
if db_engine not in drivers:
|
|
|
|
return None
|
|
|
|
|
|
|
|
drv_name, db_str, param_sep = drivers[db_engine]
|
2011-09-18 03:54:52 +08:00
|
|
|
|
|
|
|
# Ensure that GDAL library has driver support for the database.
|
|
|
|
try:
|
|
|
|
Driver(drv_name)
|
2015-11-16 02:52:47 +08:00
|
|
|
except GDALException:
|
2011-09-18 03:54:52 +08:00
|
|
|
return None
|
|
|
|
|
2016-08-10 00:46:14 +08:00
|
|
|
# SQLite/SpatiaLite in-memory databases
|
2013-04-16 02:27:58 +08:00
|
|
|
if db['NAME'] == ":memory:":
|
|
|
|
return None
|
|
|
|
|
2011-09-18 03:54:52 +08:00
|
|
|
# Build the params of the OGR database connection string
|
2013-04-16 02:27:58 +08:00
|
|
|
params = [db_str % {'db_name': db['NAME']}]
|
2013-10-22 18:21:07 +08:00
|
|
|
|
2011-09-18 03:54:52 +08:00
|
|
|
def add(key, template):
|
|
|
|
value = db.get(key, None)
|
|
|
|
# Don't add the parameter if it is not in django's settings
|
|
|
|
if value:
|
|
|
|
params.append(template % value)
|
|
|
|
add('HOST', "host='%s'")
|
|
|
|
add('PORT', "port='%s'")
|
|
|
|
add('USER', "user='%s'")
|
|
|
|
add('PASSWORD', "password='%s'")
|
|
|
|
|
2013-04-16 02:27:58 +08:00
|
|
|
return param_sep.join(params)
|