From 21cf4c0f742642adf2f4795cbe2234548c4923b3 Mon Sep 17 00:00:00 2001 From: Samuel Young Date: Thu, 29 Jan 2026 17:19:44 +0000 Subject: [PATCH] CLDC-4151: Add model tests for new questions --- .../form/lettings/pages/referral_noms_spec.rb | 34 +++++++++++++ .../form/lettings/pages/referral_org_spec.rb | 34 +++++++++++++ .../lettings/pages/referral_register_spec.rb | 34 +++++++++++++ .../lettings/questions/referral_noms_spec.rb | 49 +++++++++++++++++++ .../lettings/questions/referral_org_spec.rb | 49 +++++++++++++++++++ .../questions/referral_register_spec.rb | 49 +++++++++++++++++++ 6 files changed, 249 insertions(+) create mode 100644 spec/models/form/lettings/pages/referral_noms_spec.rb create mode 100644 spec/models/form/lettings/pages/referral_org_spec.rb create mode 100644 spec/models/form/lettings/pages/referral_register_spec.rb create mode 100644 spec/models/form/lettings/questions/referral_noms_spec.rb create mode 100644 spec/models/form/lettings/questions/referral_org_spec.rb create mode 100644 spec/models/form/lettings/questions/referral_register_spec.rb diff --git a/spec/models/form/lettings/pages/referral_noms_spec.rb b/spec/models/form/lettings/pages/referral_noms_spec.rb new file mode 100644 index 000000000..256e4fb4a --- /dev/null +++ b/spec/models/form/lettings/pages/referral_noms_spec.rb @@ -0,0 +1,34 @@ +require "rails_helper" + +RSpec.describe Form::Lettings::Pages::ReferralNoms, type: :model do + subject(:page) { described_class.new(page_id, page_definition, subsection) } + + let(:page_id) { nil } + let(:page_definition) { nil } + let(:subsection) { instance_double(Form::Subsection, form:) } + let(:form) { instance_double(Form, start_date: Time.zone.today) } + + before do + allow(subsection).to receive(:form).and_return(form) + end + + it "has correct subsection" do + expect(page.subsection).to eq(subsection) + end + + it "has correct questions" do + expect(page.questions.map(&:id)).to eq(%w[referral_noms]) + end + + it "has the correct id" do + expect(page.id).to eq("referral_noms") + end + + it "has the correct description" do + expect(page.description).to be_nil + end + + it "has the correct depends_on" do + expect(page.depends_on).to be nil + end +end diff --git a/spec/models/form/lettings/pages/referral_org_spec.rb b/spec/models/form/lettings/pages/referral_org_spec.rb new file mode 100644 index 000000000..cb39c95ca --- /dev/null +++ b/spec/models/form/lettings/pages/referral_org_spec.rb @@ -0,0 +1,34 @@ +require "rails_helper" + +RSpec.describe Form::Lettings::Pages::ReferralOrg, type: :model do + subject(:page) { described_class.new(page_id, page_definition, subsection) } + + let(:page_id) { nil } + let(:page_definition) { nil } + let(:subsection) { instance_double(Form::Subsection, form:) } + let(:form) { instance_double(Form, start_date: Time.zone.today) } + + before do + allow(subsection).to receive(:form).and_return(form) + end + + it "has correct subsection" do + expect(page.subsection).to eq(subsection) + end + + it "has correct questions" do + expect(page.questions.map(&:id)).to eq(%w[referral_org]) + end + + it "has the correct id" do + expect(page.id).to eq("referral_org") + end + + it "has the correct description" do + expect(page.description).to be_nil + end + + it "has the correct depends_on" do + expect(page.depends_on).to be nil + end +end diff --git a/spec/models/form/lettings/pages/referral_register_spec.rb b/spec/models/form/lettings/pages/referral_register_spec.rb new file mode 100644 index 000000000..28981e03d --- /dev/null +++ b/spec/models/form/lettings/pages/referral_register_spec.rb @@ -0,0 +1,34 @@ +require "rails_helper" + +RSpec.describe Form::Lettings::Pages::ReferralRegister, type: :model do + subject(:page) { described_class.new(page_id, page_definition, subsection) } + + let(:page_id) { nil } + let(:page_definition) { nil } + let(:subsection) { instance_double(Form::Subsection, form:) } + let(:form) { instance_double(Form, start_date: Time.zone.today) } + + before do + allow(subsection).to receive(:form).and_return(form) + end + + it "has correct subsection" do + expect(page.subsection).to eq(subsection) + end + + it "has correct questions" do + expect(page.questions.map(&:id)).to eq(%w[referral_register]) + end + + it "has the correct id" do + expect(page.id).to eq("referral_register") + end + + it "has the correct description" do + expect(page.description).to be_nil + end + + it "has the correct depends_on" do + expect(page.depends_on).to be nil + end +end diff --git a/spec/models/form/lettings/questions/referral_noms_spec.rb b/spec/models/form/lettings/questions/referral_noms_spec.rb new file mode 100644 index 000000000..064c4fbe7 --- /dev/null +++ b/spec/models/form/lettings/questions/referral_noms_spec.rb @@ -0,0 +1,49 @@ +require "rails_helper" + +RSpec.describe Form::Lettings::Questions::ReferralNoms, type: :model do + subject(:question) { described_class.new(question_id, question_definition, page) } + + let(:question_id) { nil } + let(:question_definition) { nil } + let(:page) { instance_double(Form::Page) } + let(:subsection) { instance_double(Form::Subsection) } + let(:form) { instance_double(Form, start_date: Time.zone.today) } + + before do + allow(page).to receive(:subsection).and_return(subsection) + allow(subsection).to receive(:form).and_return(form) + end + + it "has correct page" do + expect(question.page).to eq(page) + end + + it "has the correct id" do + expect(question.id).to eq("referral_noms") + end + + it "has the correct type" do + expect(question.type).to eq("radio") + end + + it "is not marked as derived" do + expect(question.derived?(nil)).to be false + end + + it "has the correct answer_options" do + expect(question.answer_options).to eq( + { + "1" => { + "value" => "Answer A", + }, + "2" => { + "value" => "Answer B", + }, + }.freeze, + ) + end + + it "has the correct question_number" do + expect(question.question_number).to eq(84) + end +end diff --git a/spec/models/form/lettings/questions/referral_org_spec.rb b/spec/models/form/lettings/questions/referral_org_spec.rb new file mode 100644 index 000000000..0c01d972b --- /dev/null +++ b/spec/models/form/lettings/questions/referral_org_spec.rb @@ -0,0 +1,49 @@ +require "rails_helper" + +RSpec.describe Form::Lettings::Questions::ReferralOrg, type: :model do + subject(:question) { described_class.new(question_id, question_definition, page) } + + let(:question_id) { nil } + let(:question_definition) { nil } + let(:page) { instance_double(Form::Page) } + let(:subsection) { instance_double(Form::Subsection) } + let(:form) { instance_double(Form, start_date: Time.zone.today) } + + before do + allow(page).to receive(:subsection).and_return(subsection) + allow(subsection).to receive(:form).and_return(form) + end + + it "has correct page" do + expect(question.page).to eq(page) + end + + it "has the correct id" do + expect(question.id).to eq("referral_org") + end + + it "has the correct type" do + expect(question.type).to eq("radio") + end + + it "is not marked as derived" do + expect(question.derived?(nil)).to be false + end + + it "has the correct answer_options" do + expect(question.answer_options).to eq( + { + "1" => { + "value" => "Answer A", + }, + "2" => { + "value" => "Answer B", + }, + }.freeze, + ) + end + + it "has the correct question_number" do + expect(question.question_number).to eq(84) + end +end diff --git a/spec/models/form/lettings/questions/referral_register_spec.rb b/spec/models/form/lettings/questions/referral_register_spec.rb new file mode 100644 index 000000000..6d5ad3ffd --- /dev/null +++ b/spec/models/form/lettings/questions/referral_register_spec.rb @@ -0,0 +1,49 @@ +require "rails_helper" + +RSpec.describe Form::Lettings::Questions::ReferralRegister, type: :model do + subject(:question) { described_class.new(question_id, question_definition, page) } + + let(:question_id) { nil } + let(:question_definition) { nil } + let(:page) { instance_double(Form::Page) } + let(:subsection) { instance_double(Form::Subsection) } + let(:form) { instance_double(Form, start_date: Time.zone.today) } + + before do + allow(page).to receive(:subsection).and_return(subsection) + allow(subsection).to receive(:form).and_return(form) + end + + it "has correct page" do + expect(question.page).to eq(page) + end + + it "has the correct id" do + expect(question.id).to eq("referral_register") + end + + it "has the correct type" do + expect(question.type).to eq("radio") + end + + it "is not marked as derived" do + expect(question.derived?(nil)).to be false + end + + it "has the correct answer_options" do + expect(question.answer_options).to eq( + { + "1" => { + "value" => "Answer A", + }, + "2" => { + "value" => "Answer B", + }, + }.freeze, + ) + end + + it "has the correct question_number" do + expect(question.question_number).to eq(84) + end +end