summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2024-03-10 20:59:36 +0100
committerGitHub <noreply@github.com>2024-03-10 20:59:36 +0100
commit894fa55da1ff05229391da6a2b3dfc2bb2876eb0 (patch)
tree81be78ee089a4b64aa86b1c66343f32ba93a6d64 /tests
parent4114179ca7e025c044b721953b90aa33e4c4e442 (diff)
Applied BoundingCircle test to only one country.
Looks like testing the second Country is much more computing-intensive and brings nothing to the test.
Diffstat (limited to 'tests')
-rw-r--r--tests/gis_tests/geoapp/test_functions.py31
1 files changed, 13 insertions, 18 deletions
diff --git a/tests/gis_tests/geoapp/test_functions.py b/tests/gis_tests/geoapp/test_functions.py
index 9edadc48c2..0be690347e 100644
--- a/tests/gis_tests/geoapp/test_functions.py
+++ b/tests/gis_tests/geoapp/test_functions.py
@@ -259,36 +259,31 @@ class GISFunctionsTests(FuncTestMixin, TestCase):
return (4 * num_seg) + 1
if connection.ops.postgis:
- expected_areas = (169, 136)
+ expected_area = 169
elif connection.ops.spatialite:
- expected_areas = (168, 135)
+ expected_area = 168
else: # Oracle.
- expected_areas = (171, 126)
- qs = Country.objects.annotate(
+ expected_area = 171
+ country = Country.objects.annotate(
circle=functions.BoundingCircle("mpoly")
- ).order_by("name")
- self.assertAlmostEqual(qs[0].circle.area, expected_areas[0], 0)
- self.assertAlmostEqual(qs[1].circle.area, expected_areas[1], 0)
+ ).order_by("name")[0]
+ self.assertAlmostEqual(country.circle.area, expected_area, 0)
if connection.ops.postgis:
# By default num_seg=48.
- self.assertEqual(qs[0].circle.num_points, circle_num_points(48))
- self.assertEqual(qs[1].circle.num_points, circle_num_points(48))
+ self.assertEqual(country.circle.num_points, circle_num_points(48))
tests = [12, Value(12, output_field=IntegerField())]
for num_seq in tests:
with self.subTest(num_seq=num_seq):
- qs = Country.objects.annotate(
+ country = Country.objects.annotate(
circle=functions.BoundingCircle("mpoly", num_seg=num_seq),
- ).order_by("name")
+ ).order_by("name")[0]
if connection.ops.postgis:
- self.assertGreater(qs[0].circle.area, 168.4, 0)
- self.assertLess(qs[0].circle.area, 169.5, 0)
- self.assertAlmostEqual(qs[1].circle.area, 136, 0)
- self.assertEqual(qs[0].circle.num_points, circle_num_points(12))
- self.assertEqual(qs[1].circle.num_points, circle_num_points(12))
+ self.assertGreater(country.circle.area, 168.4, 0)
+ self.assertLess(country.circle.area, 169.5, 0)
+ self.assertEqual(country.circle.num_points, circle_num_points(12))
else:
- self.assertAlmostEqual(qs[0].circle.area, expected_areas[0], 0)
- self.assertAlmostEqual(qs[1].circle.area, expected_areas[1], 0)
+ self.assertAlmostEqual(country.circle.area, expected_area, 0)
@skipUnlessDBFeature("has_Centroid_function")
def test_centroid(self):