From 09e828ff9a3d828abf7d66aeea8136e653b4de64 Mon Sep 17 00:00:00 2001 From: natdeanlewissoftwire Date: Thu, 13 Apr 2023 10:56:10 +0100 Subject: [PATCH] feat: add tests --- .../buyer1_income_value_check_spec.rb | 4 +- .../buyer2_income_value_check_spec.rb | 61 +++++++++++++++++++ .../combined_income_value_check_spec.rb | 61 +++++++++++++++++++ 3 files changed, 124 insertions(+), 2 deletions(-) create mode 100644 spec/models/form/sales/questions/buyer2_income_value_check_spec.rb create mode 100644 spec/models/form/sales/questions/combined_income_value_check_spec.rb diff --git a/spec/models/form/sales/questions/buyer1_income_value_check_spec.rb b/spec/models/form/sales/questions/buyer1_income_value_check_spec.rb index 89801a398..6ba8d23fe 100644 --- a/spec/models/form/sales/questions/buyer1_income_value_check_spec.rb +++ b/spec/models/form/sales/questions/buyer1_income_value_check_spec.rb @@ -1,7 +1,7 @@ require "rails_helper" RSpec.describe Form::Sales::Questions::Buyer1IncomeValueCheck, type: :model do - subject(:question) { described_class.new(question_id, question_definition, page) } + subject(:question) { described_class.new(question_id, question_definition, page, check_answers_card_number: 1) } let(:question_id) { nil } let(:question_definition) { nil } @@ -20,7 +20,7 @@ RSpec.describe Form::Sales::Questions::Buyer1IncomeValueCheck, type: :model do end it "has the correct check_answer_label" do - expect(question.check_answer_label).to eq("Income confirmation") + expect(question.check_answer_label).to eq("Buyer 1 income confirmation") end it "has the correct type" do diff --git a/spec/models/form/sales/questions/buyer2_income_value_check_spec.rb b/spec/models/form/sales/questions/buyer2_income_value_check_spec.rb new file mode 100644 index 000000000..ce82f2839 --- /dev/null +++ b/spec/models/form/sales/questions/buyer2_income_value_check_spec.rb @@ -0,0 +1,61 @@ +require "rails_helper" + +RSpec.describe Form::Sales::Questions::Buyer2IncomeValueCheck, type: :model do + subject(:question) { described_class.new(question_id, question_definition, page, check_answers_card_number: 2) } + + let(:question_id) { nil } + let(:question_definition) { nil } + let(:page) { instance_double(Form::Page) } + + it "has correct page" do + expect(question.page).to eq(page) + end + + it "has the correct id" do + expect(question.id).to eq("income2_value_check") + end + + it "has the correct header" do + expect(question.header).to eq("Are you sure this is correct?") + end + + it "has the correct check_answer_label" do + expect(question.check_answer_label).to eq("Buyer 2 income confirmation") + end + + it "has the correct type" do + expect(question.type).to eq("interruption_screen") + end + + it "is not marked as derived" do + expect(question.derived?).to be false + end + + it "has the correct hint" do + expect(question.hint_text).to be_nil + end + + it "has a correct check_answers_card_number" do + expect(question.check_answers_card_number).to eq(2) + end + + it "has the correct answer_options" do + expect(question.answer_options).to eq({ + "0" => { "value" => "Yes" }, + "1" => { "value" => "No" }, + }) + end + + it "has the correct hidden_in_check_answers" do + expect(question.hidden_in_check_answers).to eq({ + "depends_on" => [ + { + "income2_value_check" => 0, + }, + { + "income2_value_check" => 1, + }, + ], + }) + end +end diff --git a/spec/models/form/sales/questions/combined_income_value_check_spec.rb b/spec/models/form/sales/questions/combined_income_value_check_spec.rb new file mode 100644 index 000000000..df4d07849 --- /dev/null +++ b/spec/models/form/sales/questions/combined_income_value_check_spec.rb @@ -0,0 +1,61 @@ +require "rails_helper" + +RSpec.describe Form::Sales::Questions::CombinedIncomeValueCheck, type: :model do + subject(:question) { described_class.new(question_id, question_definition, page, check_answers_card_number: nil) } + + let(:question_id) { nil } + let(:question_definition) { nil } + let(:page) { instance_double(Form::Page) } + + it "has correct page" do + expect(question.page).to eq(page) + end + + it "has the correct id" do + expect(question.id).to eq("combined_income_value_check") + end + + it "has the correct header" do + expect(question.header).to eq("Are you sure this is correct?") + end + + it "has the correct check_answer_label" do + expect(question.check_answer_label).to eq("Combined income confirmation") + end + + it "has the correct type" do + expect(question.type).to eq("interruption_screen") + end + + it "is not marked as derived" do + expect(question.derived?).to be false + end + + it "has the correct hint" do + expect(question.hint_text).to be_nil + end + + it "has a correct check_answers_card_number" do + expect(question.check_answers_card_number).to eq(nil) + end + + it "has the correct answer_options" do + expect(question.answer_options).to eq({ + "0" => { "value" => "Yes" }, + "1" => { "value" => "No" }, + }) + end + + it "has the correct hidden_in_check_answers" do + expect(question.hidden_in_check_answers).to eq({ + "depends_on" => [ + { + "combined_income_value_check" => 0, + }, + { + "combined_income_value_check" => 1, + }, + ], + }) + end +end