2014-02-03 18:46:17 +08:00
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
|
|
from unittest import skipUnless
|
|
|
|
|
|
2014-02-06 04:15:47 +08:00
|
|
|
|
from django.contrib.gis.geos import HAS_GEOS
|
2015-04-18 05:38:20 +08:00
|
|
|
|
from django.test import SimpleTestCase
|
2015-02-10 23:07:44 +08:00
|
|
|
|
from django.test.utils import modify_settings, override_settings
|
2015-03-19 04:42:59 +08:00
|
|
|
|
from django.utils.encoding import force_text
|
2014-02-03 18:46:17 +08:00
|
|
|
|
|
|
|
|
|
GOOGLE_MAPS_API_KEY = 'XXXX'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@skipUnless(HAS_GEOS, 'Geos is required.')
|
2015-02-10 23:07:44 +08:00
|
|
|
|
@modify_settings(
|
|
|
|
|
INSTALLED_APPS={'append': 'django.contrib.gis'},
|
|
|
|
|
)
|
2015-04-18 05:38:20 +08:00
|
|
|
|
class GoogleMapsTest(SimpleTestCase):
|
2014-02-03 18:46:17 +08:00
|
|
|
|
|
2014-02-03 23:22:10 +08:00
|
|
|
|
@override_settings(GOOGLE_MAPS_API_KEY=GOOGLE_MAPS_API_KEY)
|
|
|
|
|
def test_google_map_scripts(self):
|
|
|
|
|
"""
|
|
|
|
|
Testing GoogleMap.scripts() output. See #20773.
|
|
|
|
|
"""
|
|
|
|
|
from django.contrib.gis.maps.google.gmap import GoogleMap
|
|
|
|
|
|
|
|
|
|
google_map = GoogleMap()
|
|
|
|
|
scripts = google_map.scripts
|
|
|
|
|
self.assertIn(GOOGLE_MAPS_API_KEY, scripts)
|
|
|
|
|
self.assertIn("new GMap2", scripts)
|
|
|
|
|
|
2014-02-03 18:46:17 +08:00
|
|
|
|
@override_settings(GOOGLE_MAPS_API_KEY=GOOGLE_MAPS_API_KEY)
|
|
|
|
|
def test_unicode_in_google_maps(self):
|
|
|
|
|
"""
|
2014-03-02 22:25:53 +08:00
|
|
|
|
Test that GoogleMap doesn't crash with non-ASCII content.
|
2014-02-03 18:46:17 +08:00
|
|
|
|
"""
|
2014-02-06 04:15:47 +08:00
|
|
|
|
from django.contrib.gis.geos import Point
|
2014-02-03 18:46:17 +08:00
|
|
|
|
from django.contrib.gis.maps.google.gmap import GoogleMap, GMarker
|
|
|
|
|
|
|
|
|
|
center = Point(6.146805, 46.227574)
|
|
|
|
|
marker = GMarker(center,
|
|
|
|
|
title='En français !')
|
|
|
|
|
google_map = GoogleMap(center=center, zoom=18, markers=[marker])
|
|
|
|
|
self.assertIn("En français", google_map.scripts)
|
2015-03-19 04:42:59 +08:00
|
|
|
|
|
|
|
|
|
def test_gevent_html_safe(self):
|
2015-03-28 21:39:09 +08:00
|
|
|
|
from django.contrib.gis.maps.google.overlays import GEvent
|
2015-03-19 04:42:59 +08:00
|
|
|
|
event = GEvent('click', 'function() {location.href = "http://www.google.com"}')
|
|
|
|
|
self.assertTrue(hasattr(GEvent, '__html__'))
|
|
|
|
|
self.assertEqual(force_text(event), event.__html__())
|
|
|
|
|
|
|
|
|
|
def test_goverlay_html_safe(self):
|
2015-03-28 21:39:09 +08:00
|
|
|
|
from django.contrib.gis.maps.google.overlays import GOverlayBase
|
2015-03-19 04:42:59 +08:00
|
|
|
|
overlay = GOverlayBase()
|
|
|
|
|
overlay.js_params = '"foo", "bar"'
|
|
|
|
|
self.assertTrue(hasattr(GOverlayBase, '__html__'))
|
|
|
|
|
self.assertEqual(force_text(overlay), overlay.__html__())
|