demarches-normaliennes/spec/services/geojson_service_spec.rb

32 lines
1 KiB
Ruby
Raw Normal View History

2015-11-23 18:41:48 +01:00
describe GeojsonService do
let(:good_coordinates) {
[
2018-01-15 18:54:57 +01:00
[5.93536376953125, 48.91888968903368],
[5.93536376953125, 49.26780455063753],
[7.094421386718749, 49.26780455063753],
[7.094421386718749, 48.91888968903368],
[5.93536376953125, 48.91888968903368]
]
}
describe '.toGeoJsonPolygonForCadastre' do
subject { JSON.parse(described_class.to_json_polygon_for_cadastre coordinates) }
describe 'coordinates are empty' do
let(:coordinates) { '' }
it { expect(subject['geom']['type']).to eq('Feature') }
it { expect(subject['geom']['geometry']['type']).to eq('Polygon') }
2016-01-15 13:15:50 +01:00
it { expect(subject['geom']['geometry']['coordinates']).to eq([coordinates]) }
end
describe 'coordinates are informed' do
let(:coordinates) { good_coordinates }
it { expect(subject['geom']['type']).to eq('Feature') }
it { expect(subject['geom']['geometry']['type']).to eq('Polygon') }
2016-01-15 13:15:50 +01:00
it { expect(subject['geom']['geometry']['coordinates']).to eq([coordinates]) }
end
end
2015-11-23 18:41:48 +01:00
end