Files
openfoodnetwork/engines/dfc_provider/spec/services/address_builder_spec.rb
Maikel Linke 81165cd82b Replace country names with standard ISO code concepts
The DFC version 1.16.0 introduced this new standardisation.
2025-11-24 16:59:41 +11:00

50 lines
1.1 KiB
Ruby

# frozen_string_literal: true
require_relative "../spec_helper"
RSpec.describe AddressBuilder do
subject(:result) { described_class.address(address) }
let(:address) {
build(
:address,
id: 1, address1: "Paradise 15", zipcode: "0001", city: "Goosnargh",
latitude: -25.345376, longitude: 131.0312006,
state: build(:state, name: "Victoria")
)
}
describe ".address" do
it "assigns a semantic id" do
expect(result.semanticId).to eq(
"http://test.host/api/dfc/addresses/1"
)
end
it "assigns a street" do
expect(result.street).to eq "Paradise 15"
end
it "assigns a postal code" do
expect(result.postalCode).to eq "0001"
end
it "assigns a city" do
expect(result.city).to eq "Goosnargh"
end
it "assigns a country" do
expect(result.country)
.to eq "http://publications.europa.eu/resource/authority/country/AUS"
end
it "assigns a region" do
expect(result.region).to eq "Victoria"
end
it "assigns coordinates" do
expect(result.latitude).to eq(-25.345376)
expect(result.longitude).to eq 131.0312006
end
end
end