goog.provide('ol.test.format.OSMXML'); describe('ol.format.OSMXML', function() { var format; beforeEach(function() { format = new ol.format.OSMXML(); }); describe('#readProjection', function() { it('returns the default projection from document', function() { var projection = format.readProjectionFromDocument(); expect(projection).to.eql(ol.proj.get('EPSG:4326')); }); it('returns the default projection from node', function() { var projection = format.readProjectionFromNode(); expect(projection).to.eql(ol.proj.get('EPSG:4326')); }); }); describe('#readFeatures', function() { it('can read an empty document', function() { var text = '' + '' + ''; var fs = format.readFeatures(text); expect(fs).to.have.length(0); }); it('can read nodes', function() { var text = '' + '' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ''; var fs = format.readFeatures(text); expect(fs).to.have.length(2); var f = fs[0]; expect(f).to.be.an(ol.Feature); var g = f.getGeometry(); expect(g).to.be.an(ol.geom.Point); expect(g.getCoordinates()).to.eql([2, 1]); }); it('can read nodes and ways', function() { var text = '' + '' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ''; var fs = format.readFeatures(text); expect(fs).to.have.length(3); var point = fs[0]; expect(point).to.be.an(ol.Feature); var g = point.getGeometry(); expect(g).to.be.an(ol.geom.Point); expect(g.getCoordinates()).to.eql([2, 1]); var line = fs[2]; expect(line).to.be.an(ol.Feature); g = line.getGeometry(); expect(g).to.be.an(ol.geom.LineString); expect(g.getCoordinates()).to.eql([[2, 1], [4, 3]]); }); it('can transform and read nodes', function() { var text = '' + '' + ' ' + ' ' + ' ' + ' ' + ' ' + ' ' + ''; var fs = format.readFeatures(text, { featureProjection: 'EPSG:3857' }); expect(fs).to.have.length(2); var f = fs[0]; expect(f).to.be.an(ol.Feature); var g = f.getGeometry(); expect(g).to.be.an(ol.geom.Point); expect(g.getCoordinates()).to.eql( ol.proj.transform([2, 1], 'EPSG:4326', 'EPSG:3857')); }); }); }); goog.require('ol.Feature'); goog.require('ol.format.OSMXML'); goog.require('ol.geom.Point'); goog.require('ol.geom.LineString'); goog.require('ol.proj');