demarches-normaliennes/spec/models/champs/carte_champ_spec.rb

45 lines
1.2 KiB
Ruby
Raw Normal View History

2018-11-30 13:19:19 +01:00
describe Champs::CarteChamp do
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) { '' }
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
describe '#to_feature_collection' do
subject { champ.to_feature_collection }
let(:feature_collection) {
{
type: 'FeatureCollection',
id: champ.type_de_champ.stable_id,
bbox: champ.bounding_box,
features: features
}
}
context 'when has no geo_areas' do
let(:geo_areas) { [] }
let(:features) { [] }
it { is_expected.to eq(feature_collection) }
end
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) }
it { is_expected.to eq(feature_collection) }
end
end
2018-11-30 13:19:19 +01:00
end