mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 01:02:58 +00:00
99 lines
4.1 KiB
JavaScript
99 lines
4.1 KiB
JavaScript
describe("iD.countryCode", function() {
|
|
var server, countryCode;
|
|
|
|
beforeEach(function() {
|
|
server = sinon.fakeServer.create();
|
|
iD.countryCode.cache = null;
|
|
countryCode = iD.countryCode();
|
|
});
|
|
|
|
afterEach(function() {
|
|
server.restore();
|
|
});
|
|
|
|
function query(url) {
|
|
return iD.util.stringQs(url.substring(url.indexOf('?') + 1));
|
|
}
|
|
|
|
describe("#search", function() {
|
|
it("calls the given callback with the results of the search query", function() {
|
|
var callback = sinon.spy();
|
|
countryCode.search([16, 48], callback);
|
|
|
|
server.respondWith("GET", "https://nominatim.openstreetmap.org/reverse?addressdetails=1&format=json&lat=48&lon=16",
|
|
[200, { "Content-Type": "application/json" },
|
|
'{"address":{"country_code":"at"}}']);
|
|
server.respond();
|
|
|
|
expect(query(server.requests[0].url)).to.eql(
|
|
{format: "json", addressdetails: "1", lat: "48", lon: "16"});
|
|
expect(callback).to.have.been.calledWith(null, "at");
|
|
});
|
|
it("should not cache the first search result", function() {
|
|
var callback = sinon.spy();
|
|
countryCode.search([16, 48], callback);
|
|
|
|
server.respondWith("GET", "https://nominatim.openstreetmap.org/reverse?addressdetails=1&format=json&lat=48&lon=16",
|
|
[200, { "Content-Type": "application/json" },
|
|
'{"address":{"country_code":"at"}}']);
|
|
server.respond();
|
|
|
|
expect(query(server.requests[0].url)).to.eql(
|
|
{format: "json", addressdetails: "1", lat: "48", lon: "16"});
|
|
expect(callback).to.have.been.calledWith(null, "at");
|
|
|
|
server.restore();
|
|
server = sinon.fakeServer.create();
|
|
|
|
countryCode.search([17, 49], callback);
|
|
|
|
server.respondWith("GET", "https://nominatim.openstreetmap.org/reverse?addressdetails=1&format=json&lat=49&lon=17",
|
|
[200, { "Content-Type": "application/json" },
|
|
'{"address":{"country_code":"cz"}}']);
|
|
server.respond();
|
|
|
|
expect(query(server.requests[0].url)).to.eql(
|
|
{format: "json", addressdetails: "1", lat: "49", lon: "17"});
|
|
expect(callback).to.have.been.calledWith(null, "cz");
|
|
});
|
|
it("should cache the first search result", function() {
|
|
var callback = sinon.spy();
|
|
countryCode.search([16, 48], callback);
|
|
|
|
server.respondWith("GET", "https://nominatim.openstreetmap.org/reverse?addressdetails=1&format=json&lat=48&lon=16",
|
|
[200, { "Content-Type": "application/json" },
|
|
'{"address":{"country_code":"at"}}']);
|
|
server.respond();
|
|
|
|
expect(query(server.requests[0].url)).to.eql(
|
|
{format: "json", addressdetails: "1", lat: "48", lon: "16"});
|
|
expect(callback).to.have.been.calledWith(null, "at");
|
|
|
|
server.restore();
|
|
server = sinon.fakeServer.create();
|
|
|
|
countryCode.search([16.01, 48.01], callback);
|
|
|
|
server.respondWith("GET", "https://nominatim.openstreetmap.org/reverse?addressdetails=1&format=json&lat=48.01&lon=16.01",
|
|
[200, { "Content-Type": "application/json" },
|
|
'{"address":{"country_code":"cz"}}']);
|
|
server.respond();
|
|
|
|
expect(callback).to.have.been.calledWith(null, "at");
|
|
});
|
|
it("calls the given callback with an error", function() {
|
|
var callback = sinon.spy();
|
|
countryCode.search([1000, 1000], callback);
|
|
|
|
server.respondWith("GET", "https://nominatim.openstreetmap.org/reverse?addressdetails=1&format=json&lat=1000&lon=1000",
|
|
[200, { "Content-Type": "application/json" },
|
|
'{"error":"Unable to geocode"}']);
|
|
server.respond();
|
|
|
|
expect(query(server.requests[0].url)).to.eql(
|
|
{format: "json", addressdetails: "1", lat: "1000", lon: "1000"});
|
|
expect(callback).to.have.been.calledWith("Unable to geocode");
|
|
});
|
|
});
|
|
});
|