|
|
|
@ -7,18 +7,6 @@ RSpec.describe Validations::Sales::PropertyValidations do |
|
|
|
|
|
|
|
|
|
|
|
let(:property_validator_class) { Class.new { include Validations::Sales::PropertyValidations } } |
|
|
|
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 for years >= 2024" 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 |
|
|
|
describe "#validate_property_unit_type" do |
|
|
|
context "when number of bedrooms is 1" do |
|
|
|
context "when number of bedrooms is 1" do |
|
|
|
let(:record) { build(:sales_log, beds: 1, proptype: 2) } |
|
|
|
let(:record) { build(:sales_log, beds: 1, proptype: 2) } |
|
|
|
@ -85,11 +73,6 @@ RSpec.describe Validations::Sales::PropertyValidations do |
|
|
|
end |
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
describe "#validate_la_in_england" do |
|
|
|
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 |
|
|
|
context "and the local authority is not in England" do |
|
|
|
let(:log) { build(:sales_log, la: "S12000019") } |
|
|
|
let(:log) { build(:sales_log, la: "S12000019") } |
|
|
|
|
|
|
|
|
|
|
|
@ -117,33 +100,12 @@ RSpec.describe Validations::Sales::PropertyValidations do |
|
|
|
end |
|
|
|
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_selection"]).to be_empty |
|
|
|
|
|
|
|
expect(log.errors["saledate"]).to be_empty |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
describe "#validate_la_is_active" do |
|
|
|
describe "#validate_la_is_active" do |
|
|
|
let(:la_ecode_active) { "E09000033" } |
|
|
|
let(:la_ecode_active) { "E09000033" } |
|
|
|
let(:la_ecode_inactive) { "E07000156" } |
|
|
|
let(:la_ecode_inactive) { "E07000156" } |
|
|
|
let(:local_authority_active) { LocalAuthority.find_by(code: la_ecode_active) } |
|
|
|
let(:local_authority_active) { LocalAuthority.find_by(code: la_ecode_active) } |
|
|
|
let(:local_authority_inactive) { LocalAuthority.find_by(code: la_ecode_inactive) } |
|
|
|
let(:local_authority_inactive) { LocalAuthority.find_by(code: la_ecode_inactive) } |
|
|
|
|
|
|
|
|
|
|
|
context "with a log on or after 2025" do |
|
|
|
|
|
|
|
before do |
|
|
|
before do |
|
|
|
allow(log.form).to receive(:start_year_2025_or_later?).and_return true |
|
|
|
allow(log.form).to receive(:start_year_2025_or_later?).and_return true |
|
|
|
end |
|
|
|
end |
|
|
|
@ -174,24 +136,4 @@ RSpec.describe Validations::Sales::PropertyValidations do |
|
|
|
end |
|
|
|
end |
|
|
|
end |
|
|
|
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 inactive" do |
|
|
|
|
|
|
|
let(:log) { build(:sales_log, :completed, la: la_ecode_inactive) } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
it "does not add an error" do |
|
|
|
|
|
|
|
property_validator.validate_la_is_active(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_selection"]).to be_empty |
|
|
|
|
|
|
|
expect(log.errors["saledate"]).to be_empty |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
|
|
|
|
end |
|
|
|
end |
|
|
|
|