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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
#
# Copyright 2020 Google Inc. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
#
"""Tests for the maps module."""
from types import GeneratorType
import responses
import googlemaps
from . import TestCase
from googlemaps.maps import StaticMapMarker
from googlemaps.maps import StaticMapPath
class MapsTest(TestCase):
def setUp(self):
self.key = "AIzaasdf"
self.client = googlemaps.Client(self.key)
@responses.activate
def test_static_map_marker(self):
marker = StaticMapMarker(
locations=[{"lat": -33.867486, "lng": 151.206990}, "Sydney"],
size="small",
color="blue",
label="S",
)
self.assertEqual(
"size:small|color:blue|label:S|" "-33.867486,151.20699|Sydney", str(marker)
)
with self.assertRaises(ValueError):
StaticMapMarker(locations=["Sydney"], label="XS")
self.assertEqual("label:1|Sydney", str(StaticMapMarker(locations=["Sydney"], label="1")))
@responses.activate
def test_static_map_path(self):
path = StaticMapPath(
points=[{"lat": -33.867486, "lng": 151.206990}, "Sydney"],
weight=5,
color="red",
geodesic=True,
fillcolor="Red",
)
self.assertEqual(
"weight:5|color:red|fillcolor:Red|"
"geodesic:True|"
"-33.867486,151.20699|Sydney",
str(path),
)
@responses.activate
def test_download(self):
url = "https://maps.googleapis.com/maps/api/staticmap"
responses.add(responses.GET, url, status=200)
path = StaticMapPath(
points=[(62.107733, -145.541936), "Delta+Junction,AK"],
weight=5,
color="red",
)
m1 = StaticMapMarker(
locations=[(62.107733, -145.541936)], color="blue", label="S"
)
m2 = StaticMapMarker(
locations=["Delta+Junction,AK"], size="tiny", color="green"
)
m3 = StaticMapMarker(
locations=["Tok,AK"], size="mid", color="0xFFFF00", label="C"
)
response = self.client.static_map(
size=(400, 400),
zoom=6,
center=(63.259591, -144.667969),
maptype="hybrid",
format="png",
scale=2,
visible=["Tok,AK"],
path=path,
markers=[m1, m2, m3],
)
self.assertTrue(isinstance(response, GeneratorType))
self.assertEqual(1, len(responses.calls))
self.assertURLEqual(
"%s?center=63.259591%%2C-144.667969&format=png&maptype=hybrid&"
"markers=color%%3Ablue%%7Clabel%%3AS%%7C62.107733%%2C-145.541936&"
"markers=size%%3Atiny%%7Ccolor%%3Agreen%%7CDelta%%2BJunction%%2CAK&"
"markers=size%%3Amid%%7Ccolor%%3A0xFFFF00%%7Clabel%%3AC%%7CTok%%2CAK&"
"path=weight%%3A5%%7Ccolor%%3Ared%%7C62.107733%%2C-145.541936%%7CDelta%%2BJunction%%2CAK&"
"scale=2&size=400x400&visible=Tok%%2CAK&zoom=6&key=%s" % (url, self.key),
responses.calls[0].request.url,
)
with self.assertRaises(ValueError):
self.client.static_map(size=(400, 400))
with self.assertRaises(ValueError):
self.client.static_map(
size=(400, 400), center=(63.259591, -144.667969), zoom=6, format="test"
)
with self.assertRaises(ValueError):
self.client.static_map(
size=(400, 400), center=(63.259591, -144.667969), zoom=6, maptype="test"
)
|