2018-11-30 13:19:19 +01:00
|
|
|
describe Champs::CarteChamp do
|
2020-04-14 10:24:30 +02:00
|
|
|
let(:champ) { Champs::CarteChamp.new(geo_areas: geo_areas, type_de_champ: create(:type_de_champ_carte)) }
|
2018-11-30 13:19:19 +01:00
|
|
|
let(:value) { '' }
|
2020-04-09 17:32:20 +02:00
|
|
|
let(:coordinates) { [[2.3859214782714844, 48.87442541960633], [2.3850631713867183, 48.87273183590832], [2.3809432983398438, 48.87081237174292], [2.3859214782714844, 48.87442541960633]] }
|
|
|
|
let(:geo_json) do
|
|
|
|
{
|
|
|
|
"type" => 'Polygon',
|
|
|
|
"coordinates" => coordinates
|
|
|
|
}
|
|
|
|
end
|
|
|
|
let(:legacy_geo_json) do
|
|
|
|
{
|
|
|
|
type: 'MultiPolygon',
|
|
|
|
coordinates: [coordinates]
|
|
|
|
}
|
|
|
|
end
|
2018-11-30 13:19:19 +01:00
|
|
|
|
2020-04-09 17:32:20 +02:00
|
|
|
describe '#to_feature_collection' do
|
|
|
|
subject { champ.to_feature_collection }
|
2018-12-03 12:49:03 +01:00
|
|
|
|
2020-04-09 17:32:20 +02:00
|
|
|
let(:feature_collection) {
|
|
|
|
{
|
|
|
|
type: 'FeatureCollection',
|
2020-04-14 10:24:30 +02:00
|
|
|
id: champ.type_de_champ.stable_id,
|
2020-04-09 17:32:20 +02:00
|
|
|
bbox: champ.bounding_box,
|
|
|
|
features: features
|
|
|
|
}
|
|
|
|
}
|
2018-12-03 12:49:03 +01:00
|
|
|
|
2020-04-09 17:32:20 +02:00
|
|
|
context 'when has no geo_areas' do
|
|
|
|
let(:geo_areas) { [] }
|
|
|
|
let(:features) { [] }
|
2018-12-03 12:49:03 +01:00
|
|
|
|
2020-04-09 17:32:20 +02:00
|
|
|
it { is_expected.to eq(feature_collection) }
|
2018-12-03 12:49:03 +01:00
|
|
|
end
|
|
|
|
|
2020-04-09 17:32:20 +02:00
|
|
|
context 'when has one geo_area' do
|
|
|
|
let(:geo_areas) { [build(:geo_area, :selection_utilisateur, geometry: geo_json)] }
|
|
|
|
let(:features) { geo_areas.map(&:to_feature) }
|
2018-12-03 12:49:03 +01:00
|
|
|
|
2020-04-09 17:32:20 +02:00
|
|
|
it { is_expected.to eq(feature_collection) }
|
2018-12-03 12:49:03 +01:00
|
|
|
end
|
|
|
|
end
|
2018-11-30 13:19:19 +01:00
|
|
|
end
|