@ -532,9 +532,17 @@ RSpec.describe CaseLog do
context " with two pages having the same question key, only one's dependency is met " do
context " with two pages having the same question key, only one's dependency is met " do
let ( :case_log ) { FactoryBot . create ( :case_log , :in_progress , cbl : " Yes " , preg_occ : " No " ) }
let ( :case_log ) { FactoryBot . create ( :case_log , :in_progress , cbl : " Yes " , preg_occ : " No " ) }
it " does not clear the answer " do
it " does not clear the value for answers that apply to both pages " do
expect ( case_log . cbl ) . to eq ( " Yes " )
expect ( case_log . cbl ) . to eq ( " Yes " )
end
end
it " does clear the value for answers that do not apply for invalidated page " do
case_log . update! ( { wchair : " Yes " , sex2 : " Female " , age2 : 33 } )
case_log . update! ( { cbl : " No " } )
case_log . update! ( { preg_occ : " Yes " } )
expect ( case_log . cbl ) . to eq ( nil )
end
end
end
context " when the case log does not have a valid form set yet " do
context " when the case log does not have a valid form set yet " do
@ -544,6 +552,35 @@ RSpec.describe CaseLog do
expect { case_log . update ( startdate : Time . zone . local ( 2015 , 1 , 1 ) ) } . not_to raise_error
expect { case_log . update ( startdate : Time . zone . local ( 2015 , 1 , 1 ) ) } . not_to raise_error
end
end
end
end
context " when it changes from a renewal to not a renewal " do
let ( :case_log ) { FactoryBot . create ( :case_log ) }
it " resets inferred layear value " do
case_log . update! ( { renewal : " Yes " } )
record_from_db = ActiveRecord :: Base . connection . execute ( " select layear from case_logs where id= #{ case_log . id } " ) . to_a [ 0 ]
expect ( record_from_db [ " layear " ] ) . to eq ( 2 )
expect ( case_log [ " layear " ] ) . to eq ( " Less than 1 year " )
case_log . update! ( { renewal : " No " } )
record_from_db = ActiveRecord :: Base . connection . execute ( " select layear from case_logs where id= #{ case_log . id } " ) . to_a [ 0 ]
expect ( record_from_db [ " layear " ] ) . to eq ( nil )
expect ( case_log [ " layear " ] ) . to eq ( nil )
end
end
context " when it is not a renewal " do
let ( :case_log ) { FactoryBot . create ( :case_log ) }
it " saves layear value " do
case_log . update! ( { renewal : " No " , layear : " 1 year but under 2 years " } )
record_from_db = ActiveRecord :: Base . connection . execute ( " select layear from case_logs where id= #{ case_log . id } " ) . to_a [ 0 ]
expect ( record_from_db [ " layear " ] ) . to eq ( 7 )
expect ( case_log [ " layear " ] ) . to eq ( " 1 year but under 2 years " )
end
end
end
end
describe " paper trail " do
describe " paper trail " do