|
|
|
require "rails_helper"
|
|
|
|
require_relative "helpers"
|
|
|
|
require_relative "../../request_helper"
|
|
|
|
|
|
|
|
RSpec.describe "Form Saving Data" do
|
|
|
|
include Helpers
|
|
|
|
let(:user) { FactoryBot.create(:user) }
|
|
|
|
let(:case_log) do
|
|
|
|
FactoryBot.create(
|
|
|
|
:case_log,
|
|
|
|
:in_progress,
|
|
|
|
owning_organisation: user.organisation,
|
|
|
|
managing_organisation: user.organisation,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
let(:id) { case_log.id }
|
|
|
|
let(:case_log_with_checkbox_questions_answered) do
|
|
|
|
FactoryBot.create(
|
|
|
|
:case_log, :in_progress,
|
|
|
|
housingneeds_a: "Yes",
|
|
|
|
owning_organisation: user.organisation,
|
|
|
|
managing_organisation: user.organisation
|
|
|
|
)
|
|
|
|
end
|
|
|
|
let(:question_answers) do
|
|
|
|
{
|
|
|
|
tenant_code: { type: "text", answer: "BZ737", path: "tenant_code" },
|
|
|
|
age1: { type: "numeric", answer: 25, path: "person_1_age" },
|
|
|
|
sex1: { type: "radio", answer: "Female", path: "person_1_gender" },
|
|
|
|
other_hhmemb: { type: "numeric", answer: 2, path: "household_number_of_other_members" },
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
before do
|
|
|
|
RequestHelper.stub_http_requests
|
|
|
|
sign_in user
|
|
|
|
end
|
|
|
|
|
|
|
|
it "updates model attributes correctly for each question" do
|
|
|
|
question_answers.each do |question, hsh|
|
|
|
|
type = hsh[:type]
|
|
|
|
answer = hsh[:answer]
|
|
|
|
path = hsh[:path]
|
|
|
|
original_value = case_log.send(question)
|
|
|
|
visit("/logs/#{id}/#{path.to_s.dasherize}")
|
|
|
|
case type
|
|
|
|
when "text"
|
|
|
|
fill_in("case-log-#{question.to_s.dasherize}-field", with: answer)
|
|
|
|
when "radio"
|
|
|
|
choose("case-log-#{question.to_s.dasherize}-#{answer.parameterize}-field")
|
|
|
|
else
|
|
|
|
fill_in("case-log-#{question.to_s.dasherize}-field", with: answer)
|
|
|
|
end
|
|
|
|
expect { click_button("Save and continue") }.to change {
|
|
|
|
case_log.reload.send(question.to_s)
|
|
|
|
}.from(original_value).to(answer)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it "updates total value of the rent", js: true do
|
|
|
|
visit("/logs/#{id}/rent")
|
|
|
|
|
|
|
|
fill_in("case-log-brent-field", with: 3)
|
|
|
|
expect(page).to have_field("case-log-tcharge-field", with: "3")
|
|
|
|
|
|
|
|
fill_in("case-log-scharge-field", with: 2)
|
|
|
|
expect(page).to have_field("case-log-tcharge-field", with: "5")
|
|
|
|
|
|
|
|
fill_in("case-log-pscharge-field", with: 1)
|
|
|
|
expect(page).to have_field("case-log-tcharge-field", with: "6")
|
|
|
|
|
|
|
|
fill_in("case-log-supcharg-field", with: 4)
|
|
|
|
expect(page).to have_field("case-log-tcharge-field", with: "10")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "displays number answers in inputs if they are already saved" do
|
|
|
|
visit("/logs/#{id}/property-postcode")
|
|
|
|
expect(page).to have_field("case-log-property-postcode-field", with: "P0 5ST")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "displays text answers in inputs if they are already saved" do
|
|
|
|
visit("/logs/#{id}/person-1-age")
|
|
|
|
expect(page).to have_field("case-log-age1-field", with: "17")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "displays checkbox answers in inputs if they are already saved" do
|
|
|
|
visit("/logs/#{case_log_with_checkbox_questions_answered.id.to_s.dasherize}/accessibility-requirements")
|
|
|
|
# Something about our styling makes the selenium webdriver think the actual radio buttons are not visible so we pass false here
|
|
|
|
expect(page).to have_checked_field(
|
|
|
|
"case-log-accessibility-requirements-housingneeds-a-field",
|
|
|
|
visible: false,
|
|
|
|
)
|
|
|
|
expect(page).to have_unchecked_field(
|
|
|
|
"case-log-accessibility-requirements-housingneeds-b-field",
|
|
|
|
visible: false,
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|