forked from googlemaps/google-maps-services-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_distance_matrix.py
150 lines (126 loc) · 6.78 KB
/
test_distance_matrix.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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#
# Copyright 2014 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 distance matrix module."""
from datetime import datetime
import time
import responses
import googlemaps
import googlemaps.test as _test
class DistanceMatrixTest(_test.TestCase):
def setUp(self):
self.key = 'AIzaasdf'
self.client = googlemaps.Client(self.key)
@responses.activate
def test_basic_params(self):
responses.add(responses.GET,
'https://maps.googleapis.com/maps/api/distancematrix/json',
body='{"status":"OK","rows":[]}',
status=200,
content_type='application/json')
origins = ["Perth, Australia", "Sydney, Australia",
"Melbourne, Australia", "Adelaide, Australia",
"Brisbane, Australia", "Darwin, Australia",
"Hobart, Australia", "Canberra, Australia"]
destinations = ["Uluru, Australia",
"Kakadu, Australia",
"Blue Mountains, Australia",
"Bungle Bungles, Australia",
"The Pinnacles, Australia"]
matrix = self.client.distance_matrix(origins, destinations)
self.assertEqual(1, len(responses.calls))
self.assertURLEqual('https://maps.googleapis.com/maps/api/distancematrix/json?'
'key=%s&origins=Perth%%2C+Australia%%7CSydney%%2C+'
'Australia%%7CMelbourne%%2C+Australia%%7CAdelaide%%2C+'
'Australia%%7CBrisbane%%2C+Australia%%7CDarwin%%2C+'
'Australia%%7CHobart%%2C+Australia%%7CCanberra%%2C+Australia&'
'destinations=Uluru%%2C+Australia%%7CKakadu%%2C+Australia%%7C'
'Blue+Mountains%%2C+Australia%%7CBungle+Bungles%%2C+Australia'
'%%7CThe+Pinnacles%%2C+Australia' % self.key,
responses.calls[0].request.url)
@responses.activate
def test_mixed_params(self):
responses.add(responses.GET,
'https://maps.googleapis.com/maps/api/distancematrix/json',
body='{"status":"OK","rows":[]}',
status=200,
content_type='application/json')
origins = ["Bobcaygeon ON", [41.43206, -81.38992]]
destinations = [(43.012486, -83.6964149),
{"lat": 42.8863855, "lng": -78.8781627}]
matrix = self.client.distance_matrix(origins, destinations)
self.assertEqual(1, len(responses.calls))
self.assertURLEqual('https://maps.googleapis.com/maps/api/distancematrix/json?'
'key=%s&origins=Bobcaygeon+ON%%7C41.43206%%2C-81.38992&'
'destinations=43.012486%%2C-83.696415%%7C42.886386%%2C'
'-78.878163' % self.key,
responses.calls[0].request.url)
@responses.activate
def test_all_params(self):
responses.add(responses.GET,
'https://maps.googleapis.com/maps/api/distancematrix/json',
body='{"status":"OK","rows":[]}',
status=200,
content_type='application/json')
origins = ["Perth, Australia", "Sydney, Australia",
"Melbourne, Australia", "Adelaide, Australia",
"Brisbane, Australia", "Darwin, Australia",
"Hobart, Australia", "Canberra, Australia"]
destinations = ["Uluru, Australia",
"Kakadu, Australia",
"Blue Mountains, Australia",
"Bungle Bungles, Australia",
"The Pinnacles, Australia"]
now = datetime.now()
matrix = self.client.distance_matrix(origins, destinations,
mode="driving",
language="en-AU",
avoid="tolls",
units="imperial",
departure_time=now,
traffic_model="optimistic")
self.assertEqual(1, len(responses.calls))
self.assertURLEqual('https://maps.googleapis.com/maps/api/distancematrix/json?'
'origins=Perth%%2C+Australia%%7CSydney%%2C+Australia%%7C'
'Melbourne%%2C+Australia%%7CAdelaide%%2C+Australia%%7C'
'Brisbane%%2C+Australia%%7CDarwin%%2C+Australia%%7CHobart%%2C+'
'Australia%%7CCanberra%%2C+Australia&language=en-AU&'
'avoid=tolls&mode=driving&key=%s&units=imperial&'
'destinations=Uluru%%2C+Australia%%7CKakadu%%2C+Australia%%7C'
'Blue+Mountains%%2C+Australia%%7CBungle+Bungles%%2C+Australia'
'%%7CThe+Pinnacles%%2C+Australia&departure_time=%d'
'&traffic_model=optimistic' %
(self.key, time.mktime(now.timetuple())),
responses.calls[0].request.url)
@responses.activate
def test_lang_param(self):
responses.add(responses.GET,
'https://maps.googleapis.com/maps/api/distancematrix/json',
body='{"status":"OK","rows":[]}',
status=200,
content_type='application/json')
origins = ["Vancouver BC", "Seattle"]
destinations = ["San Francisco", "Victoria BC"]
matrix = self.client.distance_matrix(origins, destinations,
language="fr-FR",
mode="bicycling")
self.assertEqual(1, len(responses.calls))
self.assertURLEqual('https://maps.googleapis.com/maps/api/distancematrix/json?'
'key=%s&language=fr-FR&mode=bicycling&'
'origins=Vancouver+BC%%7CSeattle&'
'destinations=San+Francisco%%7CVictoria+BC' %
self.key,
responses.calls[0].request.url)