@ -18,42 +18,42 @@ RSpec.describe Validations::SharedValidations do
record . age1 = " random "
record . age1 = " random "
shared_validator . validate_numeric_min_max ( record )
shared_validator . validate_numeric_min_max ( record )
expect ( record . errors [ " age1 " ] )
expect ( record . errors [ " age1 " ] )
. to include ( match I18n . t ( " validations.numeric.valid " , field : " Lead tenant’s age " , min : 16 , max : 120 ) )
. to include ( match I18n . t ( " validations.numeric.within_range " , field : " Lead tenant’s age " , min : 16 , max : 120 ) )
end
end
it " validates that other household member ages are a number " do
it " validates that other household member ages are a number " do
record . age2 = " random "
record . age2 = " random "
shared_validator . validate_numeric_min_max ( record )
shared_validator . validate_numeric_min_max ( record )
expect ( record . errors [ " age2 " ] )
expect ( record . errors [ " age2 " ] )
. to include ( match I18n . t ( " validations.numeric.valid " , field : " Person 2’s age " , min : 1 , max : 120 ) )
. to include ( match I18n . t ( " validations.numeric.within_range " , field : " Person 2’s age " , min : 1 , max : 120 ) )
end
end
it " validates that person 1's age is greater than 16 " do
it " validates that person 1's age is greater than 16 " do
record . age1 = 15
record . age1 = 15
shared_validator . validate_numeric_min_max ( record )
shared_validator . validate_numeric_min_max ( record )
expect ( record . errors [ " age1 " ] )
expect ( record . errors [ " age1 " ] )
. to include ( match I18n . t ( " validations.numeric.valid " , field : " Lead tenant’s age " , min : 16 , max : 120 ) )
. to include ( match I18n . t ( " validations.numeric.within_range " , field : " Lead tenant’s age " , min : 16 , max : 120 ) )
end
end
it " validates that other household member ages are greater than 1 " do
it " validates that other household member ages are greater than 1 " do
record . age2 = 0
record . age2 = 0
shared_validator . validate_numeric_min_max ( record )
shared_validator . validate_numeric_min_max ( record )
expect ( record . errors [ " age2 " ] )
expect ( record . errors [ " age2 " ] )
. to include ( match I18n . t ( " validations.numeric.valid " , field : " Person 2’s age " , min : 1 , max : 120 ) )
. to include ( match I18n . t ( " validations.numeric.within_range " , field : " Person 2’s age " , min : 1 , max : 120 ) )
end
end
it " validates that person 1's age is less than 121 " do
it " validates that person 1's age is less than 121 " do
record . age1 = 121
record . age1 = 121
shared_validator . validate_numeric_min_max ( record )
shared_validator . validate_numeric_min_max ( record )
expect ( record . errors [ " age1 " ] )
expect ( record . errors [ " age1 " ] )
. to include ( match I18n . t ( " validations.numeric.valid " , field : " Lead tenant’s age " , min : 16 , max : 120 ) )
. to include ( match I18n . t ( " validations.numeric.within_range " , field : " Lead tenant’s age " , min : 16 , max : 120 ) )
end
end
it " validates that other household member ages are greater than 121 " do
it " validates that other household member ages are greater than 121 " do
record . age2 = 123
record . age2 = 123
shared_validator . validate_numeric_min_max ( record )
shared_validator . validate_numeric_min_max ( record )
expect ( record . errors [ " age2 " ] )
expect ( record . errors [ " age2 " ] )
. to include ( match I18n . t ( " validations.numeric.valid " , field : " Person 2’s age " , min : 1 , max : 120 ) )
. to include ( match I18n . t ( " validations.numeric.within_range " , field : " Person 2’s age " , min : 1 , max : 120 ) )
end
end
it " validates that person 1's age is between 16 and 120 " do
it " validates that person 1's age is between 16 and 120 " do
@ -69,21 +69,27 @@ RSpec.describe Validations::SharedValidations do
end
end
end
end
it " adds the correct validation text when a question has a min but not a max " do
sales_record . savings = - 10
shared_validator . validate_numeric_min_max ( sales_record )
expect ( sales_record . errors [ " savings " ] ) . to include ( match I18n . t ( " validations.numeric.above_min " , field : " Buyer’s total savings (to nearest £10) before any deposit paid " , min : " £0 " ) )
end
context " when validating percent " do
context " when validating percent " do
it " validates that suffixes are added in the error message " do
it " validates that suffixes are added in the error message " do
sales_record . stairbought = 150
sales_record . stairbought = 150
shared_validator . validate_numeric_min_max ( sales_record )
shared_validator . validate_numeric_min_max ( sales_record )
expect ( sales_record . errors [ " stairbought " ] )
expect ( sales_record . errors [ " stairbought " ] )
. to include ( match I18n . t ( " validations.numeric.valid " , field : " Percentage bought in this staircasing transaction " , min : " 0% " , max : " 100% " ) )
. to include ( match I18n . t ( " validations.numeric.within_range " , field : " Percentage bought in this staircasing transaction " , min : " 0% " , max : " 100% " ) )
end
end
end
end
context " when validating price " do
context " when validating price " do
it " validates that £ prefix and , is added in the error message " do
it " validates that £ prefix and , is added in the error message " do
sales_record . income1 = " random "
sales_record . income1 = - 5
shared_validator . validate_numeric_min_max ( sales_record )
shared_validator . validate_numeric_min_max ( sales_record )
expect ( sales_record . errors [ " income1 " ] )
expect ( sales_record . errors [ " income1 " ] )
. to include ( match I18n . t ( " validations.numeric.valid " , field : " Buyer 1’s gross annual income " , min : " £0 " , max : " £999,999 " ) )
. to include ( match I18n . t ( " validations.numeric.within_range " , field : " Buyer 1’s gross annual income " , min : " £0 " , max : " £999,999 " ) )
end
end
end
end
end
end