2015-11-23 18:41:48 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe GeojsonService do
|
|
|
|
describe '.toGeoJsonPolygon' do
|
2015-11-30 17:12:32 +01:00
|
|
|
subject { JSON.parse(described_class.to_json_polygon coordinates) }
|
2015-11-23 18:41:48 +01:00
|
|
|
|
|
|
|
describe 'coordinates are empty' do
|
|
|
|
let(:coordinates) { '' }
|
|
|
|
|
2015-11-30 17:12:32 +01:00
|
|
|
it { expect(subject['geo']['type']).to eq('Polygon') }
|
|
|
|
it { expect(subject['geo']['coordinates']).to eq([coordinates]) }
|
2015-11-23 18:41:48 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'coordinates are informed' do
|
|
|
|
let(:coordinates) {
|
|
|
|
[
|
|
|
|
[5.93536376953125,
|
|
|
|
48.91888968903368],
|
|
|
|
[5.93536376953125,
|
|
|
|
49.26780455063753],
|
|
|
|
[7.094421386718749,
|
|
|
|
49.26780455063753],
|
|
|
|
[7.094421386718749,
|
|
|
|
48.91888968903368],
|
|
|
|
[5.93536376953125,
|
|
|
|
48.91888968903368]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2015-11-30 17:12:32 +01:00
|
|
|
it { expect(subject['geo']['type']).to eq('Polygon') }
|
|
|
|
it { expect(subject['geo']['coordinates']).to eq([coordinates]) }
|
2015-11-23 18:41:48 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|