-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_invalid_geometries.py
30 lines (23 loc) · 1.01 KB
/
test_invalid_geometries.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
'''Test recovery from operation on invalid geometries
'''
from . import unittest
from shapely.geometry import Polygon
from shapely.topology import TopologicalError
class InvalidGeometriesTestCase(unittest.TestCase):
def test_invalid_intersection(self):
# Make a self-intersecting polygon
polygon_invalid = Polygon(((0, 0), (1, 1), (1, -1), (0, 1), (0, 0)))
self.assertFalse(polygon_invalid.is_valid)
# Intersect with a valid polygon
polygon = Polygon(((-.5, -.5), (-.5, .5), (.5, .5), (.5, -5)))
self.assertTrue(polygon.is_valid)
self.assertTrue(polygon_invalid.intersects(polygon))
self.assertRaises(TopologicalError,
polygon_invalid.intersection, polygon)
self.assertRaises(TopologicalError,
polygon.intersection, polygon_invalid)
return
def test_suite():
loader = unittest.TestLoader()
return unittest.TestSuite([
loader.loadTestsFromTestCase(InvalidGeometriesTestCase)])