You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.4 KiB
74 lines
2.4 KiB
require "rails_helper" |
|
require_relative "helpers" |
|
require_relative "../../request_helper" |
|
|
|
RSpec.describe "Checkboxes" do |
|
include Helpers |
|
let(:user) { FactoryBot.create(:user) } |
|
let(:lettings_log) do |
|
FactoryBot.create( |
|
:lettings_log, |
|
:in_progress, |
|
created_by: user, |
|
) |
|
end |
|
let(:id) { lettings_log.id } |
|
|
|
around do |example| |
|
Timecop.freeze(Time.zone.local(2022, 1, 1)) do |
|
Singleton.__init__(FormHandler) |
|
example.run |
|
end |
|
Timecop.return |
|
Singleton.__init__(FormHandler) |
|
end |
|
|
|
before do |
|
allow(lettings_log.form).to receive(:end_date).and_return(Time.zone.today + 1.day) |
|
RequestHelper.stub_http_requests |
|
sign_in user |
|
end |
|
|
|
context "when exclusive checkbox is selected", js: true do |
|
it "deselects all other checkboxes" do |
|
visit("/lettings-logs/#{id}/accessibility-requirements") |
|
page.check("lettings-log-accessibility-requirements-housingneeds-a-field", allow_label_click: true) |
|
click_button("Save and continue") |
|
|
|
lettings_log.reload |
|
expect(lettings_log["housingneeds_a"]).to eq(1) |
|
|
|
visit("/lettings-logs/#{id}/accessibility-requirements") |
|
page.check("lettings-log-accessibility-requirements-housingneeds-h-field", allow_label_click: true) |
|
click_button("Save and continue") |
|
|
|
lettings_log.reload |
|
expect(lettings_log["housingneeds_a"]).to eq(0) |
|
expect(lettings_log["housingneeds_h"]).to eq(1) |
|
end |
|
end |
|
|
|
context "when a checkbox question is submitted with invalid answers" do |
|
before do |
|
lettings_log.illness = 100 |
|
lettings_log.save!(validate: false) |
|
allow(lettings_log).to receive(:update).and_return(false) |
|
end |
|
|
|
it "shows an error summary" do |
|
visit("/lettings-logs/#{id}/condition-effects") |
|
page.check("lettings-log-condition-effects-illness-type-1-field") |
|
page.check("lettings-log-condition-effects-illness-type-2-field") |
|
click_button("Save and continue") |
|
expect(page).to have_title("Error") |
|
end |
|
|
|
it "persists the original selections" do |
|
visit("/lettings-logs/#{id}/condition-effects") |
|
page.check("lettings-log-condition-effects-illness-type-1-field") |
|
page.check("lettings-log-condition-effects-illness-type-2-field") |
|
click_button("Save and continue") |
|
expect(page).to have_checked_field("lettings-log-condition-effects-illness-type-2-field") |
|
end |
|
end |
|
end
|
|
|