]> git.openstreetmap.org Git - rails.git/blob - test/javascripts/osm_test.js
Use search params without objectification
[rails.git] / test / javascripts / osm_test.js
1 //= require jquery
2 //= require js-cookie/dist/js.cookie
3 //= require osm
4 //= require leaflet/dist/leaflet-src
5 //= require leaflet.osm
6 //= require leaflet.map
7
8 describe("OSM", function () {
9   describe(".apiUrl", function () {
10     it("returns a URL for a way", function () {
11       expect(OSM.apiUrl({ type: "way", id: 10 })).to.eq("/api/0.6/way/10/full");
12     });
13
14     it("returns a URL for a node", function () {
15       expect(OSM.apiUrl({ type: "node", id: 10 })).to.eq("/api/0.6/node/10");
16     });
17
18     it("returns a URL for a specific version", function () {
19       expect(OSM.apiUrl({ type: "node", id: 10, version: 2 })).to.eq("/api/0.6/node/10/2");
20     });
21   });
22
23   describe(".mapParams", function () {
24     beforeEach(function () {
25       delete OSM.home;
26       delete OSM.location;
27       location.hash = "";
28       document.cookie = "_osm_location=; expires=Thu, 01 Jan 1970 00:00:00 GMT";
29
30       // Test with another cookie set.
31       document.cookie = "_osm_session=deadbeef";
32     });
33
34     it("parses marker params", function () {
35       const params = OSM.mapParams("?mlat=57.6247&mlon=-3.6845");
36       expect(params).to.have.property("mlat", 57.6247);
37       expect(params).to.have.property("mlon", -3.6845);
38       expect(params).to.have.property("marker", true);
39     });
40
41     it("parses object params", function () {
42       let params = OSM.mapParams("?node=1");
43       expect(params).to.have.property("object");
44       expect(params.object).to.eql({ type: "node", id: 1 });
45
46       params = OSM.mapParams("?way=1");
47       expect(params).to.have.property("object");
48       expect(params.object).to.eql({ type: "way", id: 1 });
49
50       params = OSM.mapParams("?relation=1");
51       expect(params).to.have.property("object");
52       expect(params.object).to.eql({ type: "relation", id: 1 });
53     });
54
55     it("parses bbox params", function () {
56       const expected = L.latLngBounds([57.6247, -3.6845], [57.7247, -3.7845]);
57       let params = OSM.mapParams("?bbox=-3.6845,57.6247,-3.7845,57.7247");
58       expect(params).to.have.property("bounds").deep.equal(expected);
59
60       params = OSM.mapParams("?minlon=-3.6845&minlat=57.6247&maxlon=-3.7845&maxlat=57.7247");
61       expect(params).to.have.property("bounds").deep.equal(expected);
62     });
63
64     it("parses mlat/mlon/zoom params", function () {
65       let params = OSM.mapParams("?mlat=57.6247&mlon=-3.6845");
66       expect(params).to.have.property("lat", 57.6247);
67       expect(params).to.have.property("lon", -3.6845);
68       expect(params).to.have.property("zoom", 12);
69
70       params = OSM.mapParams("?mlat=57.6247&mlon=-3.6845&zoom=16");
71       expect(params).to.have.property("lat", 57.6247);
72       expect(params).to.have.property("lon", -3.6845);
73       expect(params).to.have.property("zoom", 16);
74     });
75
76     it("parses lat/lon/zoom from the hash", function () {
77       location.hash = "#map=16/57.6247/-3.6845";
78       const params = OSM.mapParams("?");
79       expect(params).to.have.property("lat", 57.6247);
80       expect(params).to.have.property("lon", -3.6845);
81       expect(params).to.have.property("zoom", 16);
82     });
83
84     it("sets lat/lon from OSM.home", function () {
85       OSM.home = { lat: 57.6247, lon: -3.6845 };
86       const params = OSM.mapParams("?");
87       expect(params).to.have.property("lat", 57.6247);
88       expect(params).to.have.property("lon", -3.6845);
89     });
90
91     it("sets bbox from OSM.location", function () {
92       OSM.location = { minlon: -3.6845, minlat: 57.6247, maxlon: -3.7845, maxlat: 57.7247 };
93       const expected = L.latLngBounds([57.6247, -3.6845], [57.7247, -3.7845]);
94       const params = OSM.mapParams("?");
95       expect(params).to.have.property("bounds").deep.equal(expected);
96     });
97
98     it("parses params from the _osm_location cookie", function () {
99       document.cookie = "_osm_location=-3.6845|57.6247|5|M";
100       const params = OSM.mapParams("?");
101       expect(params).to.have.property("lat", 57.6247);
102       expect(params).to.have.property("lon", -3.6845);
103       expect(params).to.have.property("zoom", 5);
104       expect(params).to.have.property("layers", "M");
105     });
106
107     it("defaults lat/lon to London", function () {
108       let params = OSM.mapParams("?");
109       expect(params).to.have.property("lat", 51.5);
110       expect(params).to.have.property("lon", -0.1);
111       expect(params).to.have.property("zoom", 5);
112
113       params = OSM.mapParams("?zoom=10");
114       expect(params).to.have.property("lat", 51.5);
115       expect(params).to.have.property("lon", -0.1);
116       expect(params).to.have.property("zoom", 10);
117     });
118
119     it("parses layers param", function () {
120       let params = OSM.mapParams("?");
121       expect(params).to.have.property("layers", "");
122
123       document.cookie = "_osm_location=-3.6845|57.6247|5|C";
124       params = OSM.mapParams("?");
125       expect(params).to.have.property("layers", "C");
126
127       location.hash = "#map=5/57.6247/-3.6845&layers=M";
128       params = OSM.mapParams("?");
129       expect(params).to.have.property("layers", "M");
130     });
131   });
132
133   describe(".parseHash", function () {
134     it("parses lat/lon/zoom params", function () {
135       const args = OSM.parseHash("#map=5/57.6247/-3.6845&layers=M");
136       expect(args).to.have.property("center").deep.equal(L.latLng(57.6247, -3.6845));
137       expect(args).to.have.property("zoom", 5);
138     });
139
140     it("parses layers params", function () {
141       const args = OSM.parseHash("#map=5/57.6247/-3.6845&layers=M");
142       expect(args).to.have.property("layers", "M");
143     });
144   });
145
146   describe(".formatHash", function () {
147     it("formats lat/lon/zoom params", function () {
148       const args = { center: L.latLng(57.6247, -3.6845), zoom: 9 };
149       expect(OSM.formatHash(args)).to.eq("#map=9/57.625/-3.685");
150     });
151
152     it("respects zoomPrecision", function () {
153       let args = { center: L.latLng(57.6247, -3.6845), zoom: 5 };
154       expect(OSM.formatHash(args)).to.eq("#map=5/57.62/-3.68");
155
156
157       args = { center: L.latLng(57.6247, -3.6845), zoom: 9 };
158       expect(OSM.formatHash(args)).to.eq("#map=9/57.625/-3.685");
159
160
161       args = { center: L.latLng(57.6247, -3.6845), zoom: 12 };
162       expect(OSM.formatHash(args)).to.eq("#map=12/57.6247/-3.6845");
163     });
164
165     it("formats layers params", function () {
166       const args = { center: L.latLng(57.6247, -3.6845), zoom: 9, layers: "C" };
167       expect(OSM.formatHash(args)).to.eq("#map=9/57.625/-3.685&layers=C");
168     });
169
170     it("ignores default layers", function () {
171       const args = { center: L.latLng(57.6247, -3.6845), zoom: 9, layers: "M" };
172       expect(OSM.formatHash(args)).to.eq("#map=9/57.625/-3.685");
173     });
174   });
175
176
177   describe(".zoomPrecision", function () {
178     it("suggests 1 digit for z0-2", function () {
179       expect(OSM.zoomPrecision(0)).to.eq(1);
180       expect(OSM.zoomPrecision(1)).to.eq(1);
181       expect(OSM.zoomPrecision(2)).to.eq(1);
182     });
183
184     it("suggests 2 digits for z3-6", function () {
185       expect(OSM.zoomPrecision(3)).to.eq(2);
186       expect(OSM.zoomPrecision(4)).to.eq(2);
187       expect(OSM.zoomPrecision(5)).to.eq(2);
188       expect(OSM.zoomPrecision(6)).to.eq(2);
189     });
190
191     it("suggests 3 digits for z7-9", function () {
192       expect(OSM.zoomPrecision(7)).to.eq(3);
193       expect(OSM.zoomPrecision(8)).to.eq(3);
194       expect(OSM.zoomPrecision(9)).to.eq(3);
195     });
196
197     it("suggests 4 digits for z10-12", function () {
198       expect(OSM.zoomPrecision(10)).to.eq(4);
199       expect(OSM.zoomPrecision(11)).to.eq(4);
200       expect(OSM.zoomPrecision(12)).to.eq(4);
201     });
202
203     it("suggests 5 digits for z13-16", function () {
204       expect(OSM.zoomPrecision(13)).to.eq(5);
205       expect(OSM.zoomPrecision(14)).to.eq(5);
206       expect(OSM.zoomPrecision(15)).to.eq(5);
207       expect(OSM.zoomPrecision(16)).to.eq(5);
208     });
209
210     it("suggests 6 digits for z17-19", function () {
211       expect(OSM.zoomPrecision(17)).to.eq(6);
212       expect(OSM.zoomPrecision(18)).to.eq(6);
213       expect(OSM.zoomPrecision(19)).to.eq(6);
214     });
215
216     it("suggests 7 digits for z20", function () {
217       expect(OSM.zoomPrecision(20)).to.eq(7);
218     });
219   });
220
221   describe(".locationCookie", function () {
222     it("creates a location cookie value", function () {
223       $("body").html($("<div id='map'>"));
224       const map = new L.OSM.Map("map", { center: [57.6247, -3.6845], zoom: 9 });
225       map.updateLayers("");
226       expect(OSM.locationCookie(map)).to.eq("-3.685|57.625|9|M");
227     });
228
229     it("respects zoomPrecision", function () {
230       $("body").html($("<div id='map'>"));
231       const map = new L.OSM.Map("map", { center: [57.6247, -3.6845], zoom: 9 });
232       map.updateLayers("");
233       expect(OSM.locationCookie(map)).to.eq("-3.685|57.625|9|M");
234       // map.setZoom() doesn't update the zoom level for some reason
235       // using map._zoom here to update the zoom level manually
236       map._zoom = 5;
237       expect(OSM.locationCookie(map)).to.eq("-3.68|57.62|5|M");
238     });
239   });
240
241   describe(".distance", function () {
242     it("computes distance between points", function () {
243       const latlng1 = L.latLng(51.76712, -0.00484),
244             latlng2 = L.latLng(51.7675159, -0.0078329);
245
246       expect(OSM.distance(latlng1, latlng2)).to.be.closeTo(210.664, 0.005);
247       expect(OSM.distance(latlng2, latlng1)).to.be.closeTo(210.664, 0.005);
248     });
249   });
250 });