require "rails_helper" RSpec.describe Validations::Sales::PropertyValidations do include CollectionTimeHelper subject(:property_validator) { property_validator_class.new } let(:property_validator_class) { Class.new { include Validations::Sales::PropertyValidations } } describe "#validate_postcodes_match_if_discounted_ownership" do let(:record) { build(:sales_log, ownershipsch: 1, saledate: current_collection_start_date) } it "is not validated" do record.postcode_full = "SW1A 1AA" record.ppostcode_full = "SW1A 0AA" property_validator.validate_postcodes_match_if_discounted_ownership(record) expect(record.errors["postcode_full"]).to be_empty end end describe "#validate_property_unit_type" do context "when number of bedrooms is 1" do let(:record) { build(:sales_log, beds: 1, proptype: 2) } it "does not add an error if it's a bedsit" do property_validator.validate_bedsit_number_of_beds(record) expect(record.errors).not_to be_present end end context "when number of bedrooms is > 1" do let(:record) { build(:sales_log, beds: 2, proptype: 2) } it "does add an error if it's a bedsit" do property_validator.validate_bedsit_number_of_beds(record) expect(record.errors.added?(:proptype, "Answer cannot be 'Bedsit' if the property has 2 or more bedrooms.")).to be true expect(record.errors.added?(:beds, "Number of bedrooms must be 1 if the property is a bedsit.")).to be true end it "does not add an error if proptype is undefined" do record.update!(proptype: nil) property_validator.validate_bedsit_number_of_beds(record) expect(record.errors).not_to be_present end end context "when number of bedrooms is undefined" do let(:record) { build(:sales_log, beds: nil, proptype: 2) } it "does not add an error if it's a bedsit" do property_validator.validate_bedsit_number_of_beds(record) expect(record.errors).not_to be_present end end end describe "#validate_uprn" do context "when within length limit but alphanumeric" do let(:record) { build(:sales_log, uprn: "123abc") } it "adds an error" do property_validator.validate_uprn(record) expect(record.errors.added?(:uprn, "UPRN must be 12 digits or less.")).to be true end end context "when over the length limit" do let(:record) { build(:sales_log, uprn: "1234567890123") } it "adds an error" do property_validator.validate_uprn(record) expect(record.errors.added?(:uprn, "UPRN must be 12 digits or less.")).to be true end end context "when within the limit and only numeric" do let(:record) { build(:sales_log, uprn: "123456789012") } it "does not add an invalid UPRN error" do property_validator.validate_uprn(record) expect(record.errors.added?(:uprn, I18n.t("validations.sales.property_information.uprn.invalid"))).to be false end end end describe "#validate_la_in_england" do context "with a log on or after 2025" do before do allow(log.form).to receive(:start_year_2025_or_later?).and_return true end context "and the local authority is not in England" do let(:log) { build(:sales_log, la: "S12000019") } it "adds an error" do property_validator.validate_la_in_england(log) expect(log.errors["la"]).to include(I18n.t("validations.sales.property_information.la.not_in_england")) expect(log.errors["postcode_full"]).to include(I18n.t("validations.sales.property_information.postcode_full.not_in_england")) expect(log.errors["uprn"]).to include(I18n.t("validations.sales.property_information.uprn.not_in_england")) expect(log.errors["uprn_confirmation"]).to include(I18n.t("validations.sales.property_information.uprn_confirmation.not_in_england")) expect(log.errors["uprn_selection"]).to include(I18n.t("validations.sales.property_information.uprn_selection.not_in_england")) expect(log.errors["saledate"]).to include(I18n.t("validations.sales.property_information.saledate.postcode_not_in_england")) end end context "and the local authority is in England" do let(:log) { build(:sales_log, la: "E06000002") } it "does not add an error" do property_validator.validate_la_in_england(log) expect(log.errors["la"]).to be_empty expect(log.errors["postcode_full"]).to be_empty expect(log.errors["uprn"]).to be_empty expect(log.errors["uprn_confirmation"]).to be_empty expect(log.errors["uprn_selection"]).to be_empty expect(log.errors["saledate"]).to be_empty end end end context "with a log before 2025" do before do allow(log.form).to receive(:start_year_2025_or_later?).and_return false end context "and the local authority is not in England" do let(:log) { build(:sales_log, la: "S12000019") } it "does not add an error" do property_validator.validate_la_in_england(log) expect(log.errors["la"]).to be_empty expect(log.errors["postcode_full"]).to be_empty expect(log.errors["uprn"]).to be_empty expect(log.errors["uprn_confirmation"]).to be_empty expect(log.errors["uprn_selection"]).to be_empty expect(log.errors["saledate"]).to be_empty end end end end end