2012-09-24 01:59:27 +08:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2011-07-13 17:35:51 +08:00
|
|
|
import binascii
|
2013-07-01 20:22:27 +08:00
|
|
|
from unittest import skipUnless
|
2012-09-24 01:55:52 +08:00
|
|
|
|
2015-04-24 23:24:07 +08:00
|
|
|
from django.contrib.gis.geos import (
|
2015-12-05 22:05:52 +08:00
|
|
|
HAS_GEOS, GEOSGeometry, Point, WKBReader, WKBWriter, WKTReader, WKTWriter,
|
2015-04-24 23:24:07 +08:00
|
|
|
)
|
2015-12-05 22:05:52 +08:00
|
|
|
from django.test import SimpleTestCase
|
2014-05-28 15:22:53 +08:00
|
|
|
from django.utils.six import memoryview
|
2009-03-29 00:36:48 +08:00
|
|
|
|
2013-05-11 11:08:45 +08:00
|
|
|
|
|
|
|
@skipUnless(HAS_GEOS, "Geos is required.")
|
2015-12-05 22:05:52 +08:00
|
|
|
class GEOSIOTest(SimpleTestCase):
|
2009-03-29 00:36:48 +08:00
|
|
|
|
|
|
|
def test01_wktreader(self):
|
|
|
|
# Creating a WKTReader instance
|
|
|
|
wkt_r = WKTReader()
|
|
|
|
wkt = 'POINT (5 23)'
|
|
|
|
|
|
|
|
# read() should return a GEOSGeometry
|
|
|
|
ref = GEOSGeometry(wkt)
|
2012-09-24 01:59:27 +08:00
|
|
|
g1 = wkt_r.read(wkt.encode())
|
|
|
|
g2 = wkt_r.read(wkt)
|
2009-03-29 00:36:48 +08:00
|
|
|
|
|
|
|
for geom in (g1, g2):
|
|
|
|
self.assertEqual(ref, geom)
|
|
|
|
|
2012-07-20 20:22:00 +08:00
|
|
|
# Should only accept six.string_types objects.
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
wkt_r.read(1)
|
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
wkt_r.read(memoryview(b'foo'))
|
2009-03-29 00:36:48 +08:00
|
|
|
|
|
|
|
def test02_wktwriter(self):
|
|
|
|
# Creating a WKTWriter instance, testing its ptr property.
|
|
|
|
wkt_w = WKTWriter()
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
wkt_w._set_ptr(WKTReader.ptr_type())
|
2009-03-29 00:36:48 +08:00
|
|
|
|
|
|
|
ref = GEOSGeometry('POINT (5 23)')
|
|
|
|
ref_wkt = 'POINT (5.0000000000000000 23.0000000000000000)'
|
2012-09-24 01:55:52 +08:00
|
|
|
self.assertEqual(ref_wkt, wkt_w.write(ref).decode())
|
2009-03-29 00:36:48 +08:00
|
|
|
|
|
|
|
def test03_wkbreader(self):
|
|
|
|
# Creating a WKBReader instance
|
|
|
|
wkb_r = WKBReader()
|
|
|
|
|
2012-09-24 01:55:52 +08:00
|
|
|
hex = b'000000000140140000000000004037000000000000'
|
|
|
|
wkb = memoryview(binascii.a2b_hex(hex))
|
2009-03-29 00:36:48 +08:00
|
|
|
ref = GEOSGeometry(hex)
|
|
|
|
|
|
|
|
# read() should return a GEOSGeometry on either a hex string or
|
|
|
|
# a WKB buffer.
|
|
|
|
g1 = wkb_r.read(wkb)
|
|
|
|
g2 = wkb_r.read(hex)
|
|
|
|
for geom in (g1, g2):
|
|
|
|
self.assertEqual(ref, geom)
|
|
|
|
|
|
|
|
bad_input = (1, 5.23, None, False)
|
|
|
|
for bad_wkb in bad_input:
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
wkb_r.read(bad_wkb)
|
2012-07-20 20:22:00 +08:00
|
|
|
|
2009-03-29 00:36:48 +08:00
|
|
|
def test04_wkbwriter(self):
|
|
|
|
wkb_w = WKBWriter()
|
|
|
|
|
|
|
|
# Representations of 'POINT (5 23)' in hex -- one normal and
|
|
|
|
# the other with the byte order changed.
|
|
|
|
g = GEOSGeometry('POINT (5 23)')
|
2012-09-24 01:55:52 +08:00
|
|
|
hex1 = b'010100000000000000000014400000000000003740'
|
|
|
|
wkb1 = memoryview(binascii.a2b_hex(hex1))
|
|
|
|
hex2 = b'000000000140140000000000004037000000000000'
|
|
|
|
wkb2 = memoryview(binascii.a2b_hex(hex2))
|
2009-03-29 00:36:48 +08:00
|
|
|
|
|
|
|
self.assertEqual(hex1, wkb_w.write_hex(g))
|
|
|
|
self.assertEqual(wkb1, wkb_w.write(g))
|
|
|
|
|
|
|
|
# Ensuring bad byteorders are not accepted.
|
|
|
|
for bad_byteorder in (-1, 2, 523, 'foo', None):
|
|
|
|
# Equivalent of `wkb_w.byteorder = bad_byteorder`
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(ValueError):
|
|
|
|
wkb_w._set_byteorder(bad_byteorder)
|
2012-07-20 20:22:00 +08:00
|
|
|
|
2009-03-29 00:36:48 +08:00
|
|
|
# Setting the byteorder to 0 (for Big Endian)
|
|
|
|
wkb_w.byteorder = 0
|
|
|
|
self.assertEqual(hex2, wkb_w.write_hex(g))
|
|
|
|
self.assertEqual(wkb2, wkb_w.write(g))
|
|
|
|
|
|
|
|
# Back to Little Endian
|
|
|
|
wkb_w.byteorder = 1
|
|
|
|
|
|
|
|
# Now, trying out the 3D and SRID flags.
|
|
|
|
g = GEOSGeometry('POINT (5 23 17)')
|
|
|
|
g.srid = 4326
|
2012-07-20 20:22:00 +08:00
|
|
|
|
2012-09-24 01:55:52 +08:00
|
|
|
hex3d = b'0101000080000000000000144000000000000037400000000000003140'
|
|
|
|
wkb3d = memoryview(binascii.a2b_hex(hex3d))
|
|
|
|
hex3d_srid = b'01010000A0E6100000000000000000144000000000000037400000000000003140'
|
|
|
|
wkb3d_srid = memoryview(binascii.a2b_hex(hex3d_srid))
|
2009-03-29 00:36:48 +08:00
|
|
|
|
|
|
|
# Ensuring bad output dimensions are not accepted
|
|
|
|
for bad_outdim in (-1, 0, 1, 4, 423, 'foo', None):
|
|
|
|
# Equivalent of `wkb_w.outdim = bad_outdim`
|
2016-01-17 19:26:39 +08:00
|
|
|
with self.assertRaises(ValueError):
|
|
|
|
wkb_w._set_outdim(bad_outdim)
|
2009-03-29 00:36:48 +08:00
|
|
|
|
2014-03-28 05:53:04 +08:00
|
|
|
# Now setting the output dimensions to be 3
|
|
|
|
wkb_w.outdim = 3
|
|
|
|
|
|
|
|
self.assertEqual(hex3d, wkb_w.write_hex(g))
|
|
|
|
self.assertEqual(wkb3d, wkb_w.write(g))
|
|
|
|
|
|
|
|
# Telling the WKBWriter to include the srid in the representation.
|
|
|
|
wkb_w.srid = True
|
|
|
|
self.assertEqual(hex3d_srid, wkb_w.write_hex(g))
|
|
|
|
self.assertEqual(wkb3d_srid, wkb_w.write(g))
|
2015-12-05 22:05:52 +08:00
|
|
|
|
|
|
|
def test_wkt_writer_trim(self):
|
|
|
|
wkt_w = WKTWriter()
|
|
|
|
self.assertFalse(wkt_w.trim)
|
|
|
|
self.assertEqual(wkt_w.write(Point(1, 1)), b'POINT (1.0000000000000000 1.0000000000000000)')
|
|
|
|
|
|
|
|
wkt_w.trim = True
|
|
|
|
self.assertTrue(wkt_w.trim)
|
|
|
|
self.assertEqual(wkt_w.write(Point(1, 1)), b'POINT (1 1)')
|
|
|
|
self.assertEqual(wkt_w.write(Point(1.1, 1)), b'POINT (1.1 1)')
|
|
|
|
self.assertEqual(wkt_w.write(Point(1. / 3, 1)), b'POINT (0.3333333333333333 1)')
|
|
|
|
|
|
|
|
wkt_w.trim = False
|
|
|
|
self.assertFalse(wkt_w.trim)
|
|
|
|
self.assertEqual(wkt_w.write(Point(1, 1)), b'POINT (1.0000000000000000 1.0000000000000000)')
|
|
|
|
|
|
|
|
def test_wkt_writer_precision(self):
|
|
|
|
wkt_w = WKTWriter()
|
|
|
|
self.assertEqual(wkt_w.precision, None)
|
|
|
|
self.assertEqual(wkt_w.write(Point(1. / 3, 2. / 3)), b'POINT (0.3333333333333333 0.6666666666666666)')
|
|
|
|
|
|
|
|
wkt_w.precision = 1
|
|
|
|
self.assertEqual(wkt_w.precision, 1)
|
|
|
|
self.assertEqual(wkt_w.write(Point(1. / 3, 2. / 3)), b'POINT (0.3 0.7)')
|
|
|
|
|
|
|
|
wkt_w.precision = 0
|
|
|
|
self.assertEqual(wkt_w.precision, 0)
|
|
|
|
self.assertEqual(wkt_w.write(Point(1. / 3, 2. / 3)), b'POINT (0 1)')
|
|
|
|
|
|
|
|
wkt_w.precision = None
|
|
|
|
self.assertEqual(wkt_w.precision, None)
|
|
|
|
self.assertEqual(wkt_w.write(Point(1. / 3, 2. / 3)), b'POINT (0.3333333333333333 0.6666666666666666)')
|
|
|
|
|
|
|
|
with self.assertRaisesMessage(AttributeError, 'WKT output rounding precision must be '):
|
|
|
|
wkt_w.precision = 'potato'
|