Made runtests.py run gis_tests only when using a GIS database backend.
This facilitates other changes like refs #28160.
This commit is contained in:
parent
ec05ff086c
commit
890537253c
|
@ -8,7 +8,6 @@ class NamedModel(models.Model):
|
|||
|
||||
class Meta:
|
||||
abstract = True
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
|
|
@ -14,7 +14,6 @@ from .models import (
|
|||
)
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class DistanceTest(TestCase):
|
||||
fixtures = ['initial']
|
||||
|
||||
|
@ -238,7 +237,6 @@ Perimeter(geom1) | OK | :-(
|
|||
''' # NOQA
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class DistanceFunctionsTests(TestCase):
|
||||
fixtures = ['initial']
|
||||
|
||||
|
|
|
@ -6,7 +6,6 @@ class NamedModel(models.Model):
|
|||
|
||||
class Meta:
|
||||
abstract = True
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
@ -45,7 +44,6 @@ class SimpleModel(models.Model):
|
|||
|
||||
class Meta:
|
||||
abstract = True
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
class Point2D(SimpleModel):
|
||||
|
|
|
@ -93,7 +93,7 @@ class Geo3DLoadingHelper:
|
|||
Polygon3D.objects.create(name='3D BBox', poly=bbox_3d)
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled", "supports_3d_storage")
|
||||
@skipUnlessDBFeature("supports_3d_storage")
|
||||
class Geo3DTest(Geo3DLoadingHelper, TestCase):
|
||||
"""
|
||||
Only a subset of the PostGIS routines are 3D-enabled, and this TestCase
|
||||
|
@ -204,7 +204,7 @@ class Geo3DTest(Geo3DLoadingHelper, TestCase):
|
|||
self.assertIsNone(City3D.objects.none().aggregate(Extent3D('point'))['point__extent3d'])
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled", "supports_3d_functions")
|
||||
@skipUnlessDBFeature("supports_3d_functions")
|
||||
class Geo3DFunctionsTests(Geo3DLoadingHelper, TestCase):
|
||||
def test_kml(self):
|
||||
"""
|
||||
|
|
|
@ -9,7 +9,6 @@ class City(models.Model):
|
|||
|
||||
class Meta:
|
||||
app_label = 'geoadmin'
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
from django.contrib.gis import admin
|
||||
from django.contrib.gis.geos import Point
|
||||
from django.test import TestCase, override_settings, skipUnlessDBFeature
|
||||
from django.test import TestCase, override_settings
|
||||
from django.test.utils import patch_logger
|
||||
|
||||
from .admin import UnmodifiableAdmin
|
||||
from .models import City, site
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
@override_settings(ROOT_URLCONF='django.contrib.gis.tests.geoadmin.urls')
|
||||
class GeoAdminTest(TestCase):
|
||||
|
||||
|
|
|
@ -8,7 +8,6 @@ class NamedModel(models.Model):
|
|||
|
||||
class Meta:
|
||||
abstract = True
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
@ -27,7 +26,6 @@ class City(NamedModel):
|
|||
|
||||
class Meta:
|
||||
app_label = 'geoapp'
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
# This is an inherited model from City
|
||||
|
@ -37,7 +35,6 @@ class PennsylvaniaCity(City):
|
|||
|
||||
class Meta:
|
||||
app_label = 'geoapp'
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
class State(NamedModel):
|
||||
|
@ -45,7 +42,6 @@ class State(NamedModel):
|
|||
|
||||
class Meta:
|
||||
app_label = 'geoapp'
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
class Track(NamedModel):
|
||||
|
@ -57,9 +53,6 @@ class MultiFields(NamedModel):
|
|||
point = models.PointField()
|
||||
poly = models.PolygonField()
|
||||
|
||||
class Meta:
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
class UniqueTogetherModel(models.Model):
|
||||
city = models.CharField(max_length=30)
|
||||
|
@ -67,15 +60,12 @@ class UniqueTogetherModel(models.Model):
|
|||
|
||||
class Meta:
|
||||
unique_together = ('city', 'point')
|
||||
required_db_features = ['gis_enabled', 'supports_geometry_field_unique_index']
|
||||
required_db_features = ['supports_geometry_field_unique_index']
|
||||
|
||||
|
||||
class Truth(models.Model):
|
||||
val = models.BooleanField(default=False)
|
||||
|
||||
class Meta:
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
class Feature(NamedModel):
|
||||
geom = models.GeometryField()
|
||||
|
@ -84,9 +74,6 @@ class Feature(NamedModel):
|
|||
class MinusOneSRID(models.Model):
|
||||
geom = models.PointField(srid=-1) # Minus one SRID.
|
||||
|
||||
class Meta:
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
class NonConcreteField(models.IntegerField):
|
||||
|
||||
|
|
|
@ -9,7 +9,6 @@ from ..utils import postgis
|
|||
from .models import City, ManyPointModel
|
||||
|
||||
|
||||
@skipUnlessDBFeature('gis_enabled')
|
||||
class GeoExpressionsTests(TestCase):
|
||||
fixtures = ['initial']
|
||||
|
||||
|
|
|
@ -2,16 +2,13 @@ from xml.dom import minidom
|
|||
|
||||
from django.conf import settings
|
||||
from django.contrib.sites.models import Site
|
||||
from django.test import (
|
||||
TestCase, modify_settings, override_settings, skipUnlessDBFeature,
|
||||
)
|
||||
from django.test import TestCase, modify_settings, override_settings
|
||||
|
||||
from .models import City
|
||||
|
||||
|
||||
@modify_settings(INSTALLED_APPS={'append': 'django.contrib.sites'})
|
||||
@override_settings(ROOT_URLCONF='gis_tests.geoapp.urls')
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GeoFeedTest(TestCase):
|
||||
fixtures = ['initial']
|
||||
|
||||
|
|
|
@ -16,7 +16,6 @@ from ..utils import mysql, oracle, postgis, spatialite
|
|||
from .models import City, Country, CountryWebMercator, State, Track
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GISFunctionsTests(TestCase):
|
||||
"""
|
||||
Testing functions from django/contrib/gis/db/models/functions.py.
|
||||
|
|
|
@ -9,7 +9,6 @@ from ..utils import no_oracle
|
|||
from .models import City, PennsylvaniaCity, State, Truth
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GeoRegressionTests(TestCase):
|
||||
fixtures = ['initial']
|
||||
|
||||
|
|
|
@ -2,12 +2,11 @@ import json
|
|||
|
||||
from django.contrib.gis.geos import LinearRing, Point, Polygon
|
||||
from django.core import serializers
|
||||
from django.test import TestCase, skipUnlessDBFeature
|
||||
from django.test import TestCase
|
||||
|
||||
from .models import City, MultiFields, PennsylvaniaCity
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GeoJSONSerializerTests(TestCase):
|
||||
fixtures = ['initial']
|
||||
|
||||
|
|
|
@ -4,16 +4,13 @@ from xml.dom import minidom
|
|||
|
||||
from django.conf import settings
|
||||
from django.contrib.sites.models import Site
|
||||
from django.test import (
|
||||
TestCase, modify_settings, override_settings, skipUnlessDBFeature,
|
||||
)
|
||||
from django.test import TestCase, modify_settings, override_settings
|
||||
|
||||
from .models import City, Country
|
||||
|
||||
|
||||
@modify_settings(INSTALLED_APPS={'append': ['django.contrib.sites', 'django.contrib.sitemaps']})
|
||||
@override_settings(ROOT_URLCONF='gis_tests.geoapp.urls')
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GeoSitemapTest(TestCase):
|
||||
|
||||
def setUp(self):
|
||||
|
|
|
@ -20,7 +20,6 @@ from .models import (
|
|||
)
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GeoModelTest(TestCase):
|
||||
fixtures = ['initial']
|
||||
|
||||
|
@ -224,7 +223,6 @@ class GeoModelTest(TestCase):
|
|||
self.assertEqual(feature.geom.srid, g.srid)
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GeoLookupTest(TestCase):
|
||||
fixtures = ['initial']
|
||||
|
||||
|
@ -452,7 +450,6 @@ class GeoLookupTest(TestCase):
|
|||
self.assertEqual('Lawrence', City.objects.get(point__relate=(ks.poly, intersects_mask)).name)
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GeoQuerySetTest(TestCase):
|
||||
# TODO: GeoQuerySet is removed, organize these test better.
|
||||
fixtures = ['initial']
|
||||
|
|
|
@ -6,7 +6,6 @@ class NamedModel(models.Model):
|
|||
|
||||
class Meta:
|
||||
abstract = True
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
@ -17,7 +16,6 @@ class City(NamedModel):
|
|||
|
||||
class Meta:
|
||||
app_label = 'geogapp'
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
class Zipcode(NamedModel):
|
||||
|
@ -31,7 +29,6 @@ class County(NamedModel):
|
|||
|
||||
class Meta:
|
||||
app_label = 'geogapp'
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
def __str__(self):
|
||||
return ' County, '.join([self.name, self.state])
|
||||
|
|
|
@ -15,7 +15,6 @@ from ..utils import oracle, postgis, spatialite
|
|||
from .models import City, County, Zipcode
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GeographyTest(TestCase):
|
||||
fixtures = ['initial']
|
||||
|
||||
|
@ -87,7 +86,6 @@ class GeographyTest(TestCase):
|
|||
self.assertEqual(state, c.state)
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GeographyFunctionTests(TestCase):
|
||||
fixtures = ['initial']
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@ ops = [
|
|||
('geom', models.MultiPolygonField(srid=4326)),
|
||||
],
|
||||
options={
|
||||
'required_db_features': ['gis_enabled'],
|
||||
},
|
||||
bases=(models.Model,),
|
||||
),
|
||||
|
@ -29,7 +28,6 @@ ops = [
|
|||
('geom', models.PointField(srid=4326, geography=True)),
|
||||
],
|
||||
options={
|
||||
'required_db_features': ['gis_enabled'],
|
||||
},
|
||||
bases=(models.Model,),
|
||||
),
|
||||
|
@ -51,7 +49,7 @@ ops = [
|
|||
)
|
||||
]
|
||||
|
||||
if connection.features.gis_enabled and connection.features.supports_raster:
|
||||
if connection.features.supports_raster:
|
||||
ops += [
|
||||
migrations.CreateModel(
|
||||
name='Heatmap',
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
from django.core.management import call_command
|
||||
from django.db import connection
|
||||
from django.test import TransactionTestCase, skipUnlessDBFeature
|
||||
from django.test import TransactionTestCase
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class MigrateTests(TransactionTestCase):
|
||||
"""
|
||||
Tests running the migrate command in Geodjango.
|
||||
|
|
|
@ -12,15 +12,13 @@ from django.test import (
|
|||
|
||||
from ..utils import mysql, spatialite
|
||||
|
||||
if connection.features.gis_enabled:
|
||||
try:
|
||||
try:
|
||||
GeometryColumns = connection.ops.geometry_columns()
|
||||
HAS_GEOMETRY_COLUMNS = True
|
||||
except NotImplementedError:
|
||||
except NotImplementedError:
|
||||
HAS_GEOMETRY_COLUMNS = False
|
||||
|
||||
|
||||
@skipUnlessDBFeature('gis_enabled')
|
||||
class OperationTestCase(TransactionTestCase):
|
||||
available_apps = ['gis_tests.gis_migrations']
|
||||
|
||||
|
|
|
@ -13,15 +13,9 @@ class AllOGRFields(models.Model):
|
|||
geom = models.PolygonField()
|
||||
point = models.PointField()
|
||||
|
||||
class Meta:
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
class Fields3D(models.Model):
|
||||
point = models.PointField(dim=3)
|
||||
pointg = models.PointField(dim=3, geography=True)
|
||||
line = models.LineStringField(dim=3)
|
||||
poly = models.PolygonField(dim=3)
|
||||
|
||||
class Meta:
|
||||
required_db_features = ['gis_enabled']
|
||||
|
|
|
@ -18,7 +18,6 @@ if HAS_GDAL:
|
|||
from .models import AllOGRFields
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class InspectDbTests(TestCase):
|
||||
def test_geom_columns(self):
|
||||
"""
|
||||
|
@ -61,7 +60,6 @@ class InspectDbTests(TestCase):
|
|||
self.assertIn('poly = models.GeometryField(', output)
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
@modify_settings(
|
||||
INSTALLED_APPS={'append': 'django.contrib.gis'},
|
||||
)
|
||||
|
|
|
@ -6,7 +6,6 @@ class NamedModel(models.Model):
|
|||
|
||||
class Meta:
|
||||
abstract = True
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
@ -35,7 +34,6 @@ class City(NamedModel):
|
|||
|
||||
class Meta:
|
||||
app_label = 'layermap'
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
class Interstate(NamedModel):
|
||||
|
@ -44,7 +42,6 @@ class Interstate(NamedModel):
|
|||
|
||||
class Meta:
|
||||
app_label = 'layermap'
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
# Same as `City` above, but for testing model inheritance.
|
||||
|
@ -71,9 +68,6 @@ class ICity2(ICity1):
|
|||
class Invalid(models.Model):
|
||||
point = models.PointField()
|
||||
|
||||
class Meta:
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
# Mapping dictionaries for the models above.
|
||||
co_mapping = {
|
||||
|
|
|
@ -7,7 +7,7 @@ from django.conf import settings
|
|||
from django.contrib.gis.gdal import HAS_GDAL
|
||||
from django.contrib.gis.geos import HAS_GEOS
|
||||
from django.db import connection
|
||||
from django.test import TestCase, override_settings, skipUnlessDBFeature
|
||||
from django.test import TestCase, override_settings
|
||||
|
||||
if HAS_GEOS and HAS_GDAL:
|
||||
from django.contrib.gis.utils.layermapping import (
|
||||
|
@ -34,7 +34,6 @@ NUMS = [1, 2, 1, 19, 1] # Number of polygons for each.
|
|||
STATES = ['Texas', 'Texas', 'Texas', 'Hawaii', 'Colorado']
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class LayerMapTest(TestCase):
|
||||
|
||||
def test_init(self):
|
||||
|
@ -331,7 +330,6 @@ class OtherRouter:
|
|||
return True
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
@override_settings(DATABASE_ROUTERS=[OtherRouter()])
|
||||
class LayerMapRouterTest(TestCase):
|
||||
multi_db = True
|
||||
|
|
|
@ -4,7 +4,6 @@ from django.contrib.gis.db import models
|
|||
class SimpleModel(models.Model):
|
||||
class Meta:
|
||||
abstract = True
|
||||
required_db_features = ['gis_enabled']
|
||||
|
||||
|
||||
class Location(SimpleModel):
|
||||
|
|
|
@ -12,7 +12,6 @@ from .models import (
|
|||
)
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class RelatedGeoModelTest(TestCase):
|
||||
fixtures = ['initial']
|
||||
|
||||
|
|
|
@ -4,12 +4,11 @@ from django.contrib.gis import forms
|
|||
from django.contrib.gis.forms import BaseGeometryWidget
|
||||
from django.contrib.gis.geos import GEOSGeometry
|
||||
from django.forms import ValidationError
|
||||
from django.test import SimpleTestCase, override_settings, skipUnlessDBFeature
|
||||
from django.test import SimpleTestCase, override_settings
|
||||
from django.test.utils import patch_logger
|
||||
from django.utils.html import escape
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GeometryFieldTest(SimpleTestCase):
|
||||
|
||||
def test_init(self):
|
||||
|
@ -138,7 +137,6 @@ class GeometryFieldTest(SimpleTestCase):
|
|||
)
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class SpecializedFieldTest(SimpleTestCase):
|
||||
def setUp(self):
|
||||
self.geometries = {
|
||||
|
@ -310,7 +308,6 @@ class SpecializedFieldTest(SimpleTestCase):
|
|||
self.assertFalse(GeometryForm(data={'g': invalid.wkt}).is_valid())
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class OSMWidgetTest(SimpleTestCase):
|
||||
def setUp(self):
|
||||
self.geometries = {
|
||||
|
@ -351,7 +348,6 @@ class OSMWidgetTest(SimpleTestCase):
|
|||
rendered)
|
||||
|
||||
|
||||
@skipUnlessDBFeature("gis_enabled")
|
||||
class GeometryWidgetTests(SimpleTestCase):
|
||||
|
||||
def test_get_context_attrs(self):
|
||||
|
|
|
@ -80,11 +80,12 @@ CONTRIB_TESTS_TO_APPS = {
|
|||
|
||||
def get_test_modules():
|
||||
modules = []
|
||||
discovery_paths = [
|
||||
(None, RUNTESTS_DIR),
|
||||
discovery_paths = [(None, RUNTESTS_DIR)]
|
||||
if connection.features.gis_enabled:
|
||||
# GIS tests are in nested apps
|
||||
('gis_tests', os.path.join(RUNTESTS_DIR, 'gis_tests')),
|
||||
]
|
||||
discovery_paths.append(('gis_tests', os.path.join(RUNTESTS_DIR, 'gis_tests')))
|
||||
else:
|
||||
SUBDIRS_TO_SKIP.append('gis_tests')
|
||||
|
||||
for modpath, dirpath in discovery_paths:
|
||||
for f in os.listdir(dirpath):
|
||||
|
@ -102,6 +103,16 @@ def get_installed():
|
|||
|
||||
|
||||
def setup(verbosity, test_labels, parallel):
|
||||
# Reduce the given test labels to just the app module path.
|
||||
test_labels_set = set()
|
||||
for label in test_labels:
|
||||
bits = label.split('.')[:1]
|
||||
test_labels_set.add('.'.join(bits))
|
||||
|
||||
if 'gis_tests' in test_labels_set and not connection.features.gis_enabled:
|
||||
print('Aborting: A GIS database backend is required to run gis_tests.')
|
||||
sys.exit(1)
|
||||
|
||||
if verbosity >= 1:
|
||||
msg = "Testing against Django installed in '%s'" % os.path.dirname(django.__file__)
|
||||
max_parallel = default_test_processes() if parallel == 0 else parallel
|
||||
|
@ -169,12 +180,6 @@ def setup(verbosity, test_labels, parallel):
|
|||
# Load all the test model apps.
|
||||
test_modules = get_test_modules()
|
||||
|
||||
# Reduce given test labels to just the app module path
|
||||
test_labels_set = set()
|
||||
for label in test_labels:
|
||||
bits = label.split('.')[:1]
|
||||
test_labels_set.add('.'.join(bits))
|
||||
|
||||
installed_app_names = set(get_installed())
|
||||
for modpath, module_name in test_modules:
|
||||
if modpath:
|
||||
|
|
Loading…
Reference in New Issue