demarches-normaliennes/spec/models/geo_area_spec.rb

148 lines
4.8 KiB
Ruby
Raw Normal View History

RSpec.describe GeoArea, type: :model do
describe '#area' do
let(:geo_area) { build(:geo_area, :polygon, champ: nil) }
2020-10-01 11:32:56 +02:00
it { expect(geo_area.area).to eq(103.6) }
end
describe '#area (hourglass polygon)' do
let(:geo_area) { build(:geo_area, :hourglass_polygon, champ: nil) }
2020-10-01 11:32:56 +02:00
it { expect(geo_area.area).to eq(32.4) }
end
describe '#length' do
let(:geo_area) { build(:geo_area, :line_string, champ: nil) }
2020-10-01 11:33:15 +02:00
it { expect(geo_area.length).to eq(21.2) }
end
describe '#location' do
let(:geo_area) { build(:geo_area, :point, champ: nil) }
2020-09-23 11:34:10 +02:00
it { expect(geo_area.location).to eq("46°32'19\"N 2°25'42\"E") }
end
describe '#rgeo_geometry' do
let(:geo_area) { build(:geo_area, :polygon, champ: nil) }
let(:polygon) do
{
"type" => "Polygon",
"coordinates" => [
[
[2.428439855575562, 46.538476837725796],
[2.4284291267395024, 46.53842148758162],
[2.4282521009445195, 46.53841410755813],
[2.42824137210846, 46.53847314771794],
[2.428284287452698, 46.53847314771794],
[2.428364753723145, 46.538487907747864],
[2.4284291267395024, 46.538491597754714],
[2.428439855575562, 46.538476837725796]
]
]
}
end
it { expect(geo_area.geometry).to eq(polygon) }
context 'polygon_with_extra_coordinate' do
let(:geo_area) { build(:geo_area, :polygon_with_extra_coordinate, champ: nil) }
it { expect(geo_area.geometry).not_to eq(polygon) }
it { expect(geo_area.safe_geometry).to eq(polygon) }
end
end
2021-03-16 10:38:56 +01:00
describe 'validations' do
context 'geometry' do
subject! { geo_area.validate }
2021-03-16 10:38:56 +01:00
context 'polygon' do
let(:geo_area) { build(:geo_area, :polygon, champ: nil) }
it { expect(geo_area.errors).not_to have_key(:geometry) }
end
2021-03-16 10:38:56 +01:00
context 'hourglass_polygon' do
let(:geo_area) { build(:geo_area, :hourglass_polygon, champ: nil) }
it { expect(geo_area.errors).to have_key(:geometry) }
end
2021-03-16 10:38:56 +01:00
context 'line_string' do
let(:geo_area) { build(:geo_area, :line_string, champ: nil) }
it { expect(geo_area.errors).not_to have_key(:geometry) }
end
2021-03-16 10:38:56 +01:00
context 'point' do
let(:geo_area) { build(:geo_area, :point, champ: nil) }
it { expect(geo_area.errors).not_to have_key(:geometry) }
end
2021-03-16 10:38:56 +01:00
context 'invalid_right_hand_rule_polygon' do
let(:geo_area) { build(:geo_area, :invalid_right_hand_rule_polygon, champ: nil) }
it { expect(geo_area.errors).to have_key(:geometry) }
end
2021-03-16 10:38:56 +01:00
end
end
describe "cadastre properties" do
let(:geo_area) { build(:geo_area, :cadastre, champ: nil) }
let(:legacy_geo_area) { build(:geo_area, :legacy_cadastre, champ: nil) }
it "should be backward compatible" do
expect("#{geo_area.code_dep}#{geo_area.code_com}").to eq(geo_area.commune)
expect(geo_area.code_arr).to eq(geo_area.prefixe)
expect(geo_area.surface_parcelle).to eq(geo_area.surface)
end
context "(legacy)" do
it "should be forward compatible" do
expect("#{legacy_geo_area.code_dep}#{legacy_geo_area.code_com}").to eq(legacy_geo_area.commune)
expect(legacy_geo_area.code_arr).to eq(legacy_geo_area.prefixe)
expect(legacy_geo_area.surface_parcelle).to eq(legacy_geo_area.surface)
expect(legacy_geo_area.cid).to eq(geo_area.cid)
end
end
end
2021-05-26 12:22:35 +02:00
describe 'description' do
context 'when properties is nil' do
let(:geo_area) { build(:geo_area, properties: nil, champ: nil) }
2021-05-26 12:22:35 +02:00
it { expect(geo_area.description).to be_nil }
end
end
2022-08-31 13:09:00 +02:00
describe "#label" do
context "when geo is a line" do
let(:geo_area) { build(:geo_area, :selection_utilisateur, :line_string, champ: nil) }
it "should return the label" do
expect(geo_area.label).to eq("Une ligne longue de 21,2 m")
end
it "should return unknown length" do
geo_area.geometry["coordinates"] = []
expect(geo_area.label).to eq("Une ligne de longueur inconnue")
end
end
context "when geo is a polygon" do
let(:geo_area) { build(:geo_area, :selection_utilisateur, :polygon, champ: nil) }
it "should return the label" do
expect(geo_area.label).to eq("Une aire de surface 103,6 ")
end
it "should return unknown surface" do
geo_area.geometry["coordinates"] = []
expect(geo_area.label).to eq("Une aire de surface inconnue")
end
end
context "when geo is a cadastre parcelle" do
let(:geo_area) { build(:geo_area, :selection_utilisateur, :cadastre, champ: nil) }
it "should return the label" do
expect(geo_area.label).to eq("Parcelle n° 42 - Feuille 000 A11 - 123  commune 75127")
2022-08-31 13:09:00 +02:00
end
end
end
end