|
|
|
require "rails_helper"
|
|
|
|
|
|
|
|
RSpec.describe Validations::Sales::PropertyValidations do
|
|
|
|
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
|
|
|
|
context "when ownership scheme is not discounted ownership" do
|
|
|
|
let(:record) { build(:sales_log, ownershipsch: 1) }
|
|
|
|
|
|
|
|
it "when postcodes match no error is added" do
|
|
|
|
record.postcode_full = "SW1A 1AA"
|
|
|
|
record.ppostcode_full = "SW1A 1AA"
|
|
|
|
|
|
|
|
property_validator.validate_postcodes_match_if_discounted_ownership(record)
|
|
|
|
expect(record.errors["postcode_full"]).to be_empty
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when ownership scheme is discounted ownership" do
|
|
|
|
let(:record) { build(:sales_log, ownershipsch: 2, saledate: Time.zone.local(2023, 4, 5)) }
|
|
|
|
|
|
|
|
it "when ppostcode_full is not present no error is added" do
|
|
|
|
record.postcode_full = "SW1A 1AA"
|
|
|
|
property_validator.validate_postcodes_match_if_discounted_ownership(record)
|
|
|
|
expect(record.errors["postcode_full"]).to be_empty
|
|
|
|
expect(record.errors["ppostcode_full"]).to be_empty
|
|
|
|
expect(record.errors["ownershipsch"]).to be_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
it "when postcode_full is not present no error is added" do
|
|
|
|
record.ppostcode_full = "SW1A 1AA"
|
|
|
|
property_validator.validate_postcodes_match_if_discounted_ownership(record)
|
|
|
|
expect(record.errors["postcode_full"]).to be_empty
|
|
|
|
expect(record.errors["ppostcode_full"]).to be_empty
|
|
|
|
expect(record.errors["ownershipsch"]).to be_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
it "when postcodes match no error is added" do
|
|
|
|
record.postcode_full = "SW1A 1AA"
|
|
|
|
record.ppostcode_full = "SW1A 1AA"
|
|
|
|
property_validator.validate_postcodes_match_if_discounted_ownership(record)
|
|
|
|
expect(record.errors["postcode_full"]).to be_empty
|
|
|
|
expect(record.errors["ppostcode_full"]).to be_empty
|
|
|
|
expect(record.errors["ownershipsch"]).to be_empty
|
|
|
|
end
|
|
|
|
|
|
|
|
it "when postcodes do not match an error is added for joint purchase" do
|
|
|
|
record.postcode_full = "SW1A 1AA"
|
|
|
|
record.ppostcode_full = "SW1A 0AA"
|
|
|
|
record.jointpur = 1
|
|
|
|
property_validator.validate_postcodes_match_if_discounted_ownership(record)
|
|
|
|
expect(record.errors["postcode_full"]).to include("Buyers’ last accommodation and discounted ownership postcodes must match.")
|
|
|
|
expect(record.errors["ppostcode_full"]).to include("Buyers’ last accommodation and discounted ownership postcodes must match.")
|
|
|
|
expect(record.errors["ownershipsch"]).to include("Buyers’ last accommodation and discounted ownership postcodes must match.")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "when postcodes do not match an error is added for non joint purchase" do
|
|
|
|
record.postcode_full = "SW1A 1AA"
|
|
|
|
record.ppostcode_full = "SW1A 0AA"
|
|
|
|
record.jointpur = 2
|
|
|
|
property_validator.validate_postcodes_match_if_discounted_ownership(record)
|
|
|
|
expect(record.errors["postcode_full"]).to include("Buyer’s last accommodation and discounted ownership postcodes must match.")
|
|
|
|
expect(record.errors["ppostcode_full"]).to include("Buyer’s last accommodation and discounted ownership postcodes must match.")
|
|
|
|
expect(record.errors["ownershipsch"]).to include("Buyer’s last accommodation and discounted ownership postcodes must match.")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "does not add error for 2024 log" do
|
|
|
|
record.postcode_full = "SW1A 1AA"
|
|
|
|
record.ppostcode_full = "SW1A 0AA"
|
|
|
|
record.saledate = Time.zone.local(2024, 4, 5)
|
|
|
|
property_validator.validate_postcodes_match_if_discounted_ownership(record)
|
|
|
|
expect(record.errors["postcode_full"]).to be_empty
|
|
|
|
expect(record.errors["ppostcode_full"]).to be_empty
|
|
|
|
expect(record.errors["ownershipsch"]).to be_empty
|
|
|
|
end
|
|
|
|
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") }
|
|
|
|
|
CLDC-3787: Autocomplete address uprn search (#2967)
* Prototype
* Remove git from dockerfile
* UPRN search too
* Revert address client and use uprn client
* Add address search to lettings too
* Updates with lettings logs
* Update copy
* Move guidance to partial
* Fix uprn return
* Delete new db file, restore old
* Lint
* Remove old db file
* Lint
* Add new db file, remove old
* JS lint
* Update schema
* Add manual entry option
* Update derived variables
* Comment out old version of find address in 2024
* Remove db column
* Add new db columns
* Update guidance partial
* Add unless to migration
* Add migration files to remove and readd
* authenticate user
* Remove file
* Delete migration files
* Add search url
* Add search url
* Fix onConfirm
* Add manual entry button instead of change skip link
* Revert "Add manual entry button instead of change skip link"
This reverts commit 22577c801aca940acfc16caf94d3159071ea8258.
* Revert "Revert "Add manual entry button instead of change skip link""
This reverts commit 9f0a2111a58e933a28105e54aba6ca08c2d043b7.
* Replace uprn question
* Update question copy
* Allow changing the address search value
* Rename address autocomplete to address search
* Add buttons to switch between address questions
* Fix controller logic
* Enable adding question numbers to page headers
* Update skip links
* Add js disabled message to select
* Alternative way to handle js disabled users
* Revert "Alternative way to handle js disabled users"
This reverts commit 10da3d61e2f89ec29ef9f9071c63eb99aa2bb482.
* Fix typo
* Fix address options for address search question
* Reuse AddressDataPresenter where appropriate
* Lint
* Remove uprn selection question tests
* Reuse UprnDataPresenter where appropriate
* CSV export, exclude address_search
* Add address search to sales and lettings factory bots
* Exclude old address questions from routing, keep as exported values
* lint
* Update uprn value
* Add address search input boolean and switch between questions
* Reword copy, remove "Find" and "Search by"
* Align address questions, add question number and question text
* Remove old wip depends on
* Update some tests
* Update migration, move default value from db to model
* Update test
* Remove binding pry
* Lint
* Update test
* Lint
* Update test
* Update routes with underscores
* Remove debugging
* Limit visible logs to user
* Add manual address entry selected variable
* Change address search min length to 3chars
* Remove binding.pry
* Update factory bots, manual_address_entry_selected to true for preexisting tests
* Update model tests
* Update sales model tests excl E-code tests
* Update address search request test
* Reuse uprn id instead of address_search
* Set manual address entry selected as false when creating test logs
* Update model test
* Update request tests and remove old questions
* Add back test
* Update services
* Update more tests
Co-authored-by: kosiakkatrina <kosiakkatrina@users.noreply.github.com>
* Update request tests
* update model tests
* Also update sales log
* Update service csv uprn_selection values to 1
* Add tests for pages and questions
* Update test
* Update uprn_known
* Lint
* Add feature test
* Update test
* Update tests
* Remove test
* pre-consolidate migration files
* Indentation
* Controller method improvements
* Update question numbers for 2025/26
* Update question numbers tests
* consolidate and delete old migration files
* undo changes to schema.rb
* Update 2025 property information translation files
* Update answer options to show singular previously selected result if present
* Move buttons to bottom guidance partials
* Small improvements, make address search and existing search more similar
* Validate entered addresses as within England
* Update test
* Revert "Validate entered addresses as within England"
This reverts commit 2dbfbcc8a5188cde7fb0ac0dcdbc5919eefd6a12.
* Add missing button to sales address page
* Change error code
* Clear invalid options
* Edit no results message method
* Keep no result logic just change text
* Display uprn value with address value
* Still show no results message when characters entered is less than 3 rather than nothing
* Fix uprn result when query is ambiguous
* Reduce min match for address search
* Hide no result found message just before results are populated
* Prevent changing logs to 2025 with invalid addresses
* Correct attribute name
* Handle nil
* Remove custom error message
* Remove unused variables from factory
* Update tests, remove address and postcode from old find address
* Fix bug clearing uprn from see all answers
* Revert "Fix bug clearing uprn from see all answers"
This reverts commit a66c47a1abf7a429f25e0a016fedb0b92e92f15c.
* Undo changes to validation method
* Fix unchanged uprn_selection when clearing or changing uprn
* Undo a change
* Update bulk upload 2025
* Fix typo
* Remove redundant line
---------
Co-authored-by: Kat <54268893+kosiakkatrina@users.noreply.github.com>
Co-authored-by: kosiakkatrina <kosiakkatrina@users.noreply.github.com>
2 weeks ago
|
|
|
it "does not add an invalid UPRN error" do
|
|
|
|
property_validator.validate_uprn(record)
|
CLDC-3787: Autocomplete address uprn search (#2967)
* Prototype
* Remove git from dockerfile
* UPRN search too
* Revert address client and use uprn client
* Add address search to lettings too
* Updates with lettings logs
* Update copy
* Move guidance to partial
* Fix uprn return
* Delete new db file, restore old
* Lint
* Remove old db file
* Lint
* Add new db file, remove old
* JS lint
* Update schema
* Add manual entry option
* Update derived variables
* Comment out old version of find address in 2024
* Remove db column
* Add new db columns
* Update guidance partial
* Add unless to migration
* Add migration files to remove and readd
* authenticate user
* Remove file
* Delete migration files
* Add search url
* Add search url
* Fix onConfirm
* Add manual entry button instead of change skip link
* Revert "Add manual entry button instead of change skip link"
This reverts commit 22577c801aca940acfc16caf94d3159071ea8258.
* Revert "Revert "Add manual entry button instead of change skip link""
This reverts commit 9f0a2111a58e933a28105e54aba6ca08c2d043b7.
* Replace uprn question
* Update question copy
* Allow changing the address search value
* Rename address autocomplete to address search
* Add buttons to switch between address questions
* Fix controller logic
* Enable adding question numbers to page headers
* Update skip links
* Add js disabled message to select
* Alternative way to handle js disabled users
* Revert "Alternative way to handle js disabled users"
This reverts commit 10da3d61e2f89ec29ef9f9071c63eb99aa2bb482.
* Fix typo
* Fix address options for address search question
* Reuse AddressDataPresenter where appropriate
* Lint
* Remove uprn selection question tests
* Reuse UprnDataPresenter where appropriate
* CSV export, exclude address_search
* Add address search to sales and lettings factory bots
* Exclude old address questions from routing, keep as exported values
* lint
* Update uprn value
* Add address search input boolean and switch between questions
* Reword copy, remove "Find" and "Search by"
* Align address questions, add question number and question text
* Remove old wip depends on
* Update some tests
* Update migration, move default value from db to model
* Update test
* Remove binding pry
* Lint
* Update test
* Lint
* Update test
* Update routes with underscores
* Remove debugging
* Limit visible logs to user
* Add manual address entry selected variable
* Change address search min length to 3chars
* Remove binding.pry
* Update factory bots, manual_address_entry_selected to true for preexisting tests
* Update model tests
* Update sales model tests excl E-code tests
* Update address search request test
* Reuse uprn id instead of address_search
* Set manual address entry selected as false when creating test logs
* Update model test
* Update request tests and remove old questions
* Add back test
* Update services
* Update more tests
Co-authored-by: kosiakkatrina <kosiakkatrina@users.noreply.github.com>
* Update request tests
* update model tests
* Also update sales log
* Update service csv uprn_selection values to 1
* Add tests for pages and questions
* Update test
* Update uprn_known
* Lint
* Add feature test
* Update test
* Update tests
* Remove test
* pre-consolidate migration files
* Indentation
* Controller method improvements
* Update question numbers for 2025/26
* Update question numbers tests
* consolidate and delete old migration files
* undo changes to schema.rb
* Update 2025 property information translation files
* Update answer options to show singular previously selected result if present
* Move buttons to bottom guidance partials
* Small improvements, make address search and existing search more similar
* Validate entered addresses as within England
* Update test
* Revert "Validate entered addresses as within England"
This reverts commit 2dbfbcc8a5188cde7fb0ac0dcdbc5919eefd6a12.
* Add missing button to sales address page
* Change error code
* Clear invalid options
* Edit no results message method
* Keep no result logic just change text
* Display uprn value with address value
* Still show no results message when characters entered is less than 3 rather than nothing
* Fix uprn result when query is ambiguous
* Reduce min match for address search
* Hide no result found message just before results are populated
* Prevent changing logs to 2025 with invalid addresses
* Correct attribute name
* Handle nil
* Remove custom error message
* Remove unused variables from factory
* Update tests, remove address and postcode from old find address
* Fix bug clearing uprn from see all answers
* Revert "Fix bug clearing uprn from see all answers"
This reverts commit a66c47a1abf7a429f25e0a016fedb0b92e92f15c.
* Undo changes to validation method
* Fix unchanged uprn_selection when clearing or changing uprn
* Undo a change
* Update bulk upload 2025
* Fix typo
* Remove redundant line
---------
Co-authored-by: Kat <54268893+kosiakkatrina@users.noreply.github.com>
Co-authored-by: kosiakkatrina <kosiakkatrina@users.noreply.github.com>
2 weeks ago
|
|
|
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
|