17 changed files with 25 additions and 274 deletions
@ -1,20 +0,0 @@ |
|||||||
class Form::Sales::Pages::BuyerPrevious < ::Form::Page |
|
||||||
def initialize(id, hsh, subsection, joint_purchase:) |
|
||||||
super(id, hsh, subsection) |
|
||||||
@joint_purchase = joint_purchase |
|
||||||
@copy_key = "sales.sale_information.soctenant.#{joint_purchase ? 'joint_purchase' : 'not_joint_purchase'}" |
|
||||||
@depends_on = [{ "joint_purchase?" => joint_purchase, "soctenant_is_inferred?" => false }] |
|
||||||
end |
|
||||||
|
|
||||||
def questions |
|
||||||
@questions ||= [ |
|
||||||
Form::Sales::Questions::BuyerPrevious.new(nil, nil, self, joint_purchase: @joint_purchase), |
|
||||||
] |
|
||||||
end |
|
||||||
|
|
||||||
def routed_to?(log, _current_user) |
|
||||||
return false if log.is_staircase? && form.start_year_2024_or_later? |
|
||||||
|
|
||||||
super |
|
||||||
end |
|
||||||
end |
|
||||||
@ -1,29 +0,0 @@ |
|||||||
class Form::Sales::Questions::BuyerPrevious < ::Form::Question |
|
||||||
def initialize(id, hsh, page, joint_purchase:) |
|
||||||
super(id, hsh, page) |
|
||||||
@id = "soctenant" |
|
||||||
@copy_key = "sales.sale_information.soctenant.#{joint_purchase ? 'joint_purchase' : 'not_joint_purchase'}" |
|
||||||
@type = "radio" |
|
||||||
@answer_options = ANSWER_OPTIONS |
|
||||||
@question_number = get_question_number_from_hash(QUESTION_NUMBER_FROM_YEAR) |
|
||||||
end |
|
||||||
|
|
||||||
ANSWER_OPTIONS = { |
|
||||||
"1" => { "value" => "Yes" }, |
|
||||||
"2" => { "value" => "No" }, |
|
||||||
"0" => { "value" => "Don’t know" }, |
|
||||||
}.freeze |
|
||||||
|
|
||||||
def displayed_answer_options(_log, _user = nil) |
|
||||||
{ |
|
||||||
"1" => { "value" => "Yes" }, |
|
||||||
"2" => { "value" => "No" }, |
|
||||||
} |
|
||||||
end |
|
||||||
|
|
||||||
def derived?(_log) |
|
||||||
form.start_year_2024_or_later? |
|
||||||
end |
|
||||||
|
|
||||||
QUESTION_NUMBER_FROM_YEAR = { 2023 => 84 }.freeze |
|
||||||
end |
|
||||||
@ -1,77 +0,0 @@ |
|||||||
require "rails_helper" |
|
||||||
|
|
||||||
RSpec.describe Form::Sales::Pages::BuyerPrevious, type: :model do |
|
||||||
subject(:page) { described_class.new(page_id, page_definition, subsection, joint_purchase:) } |
|
||||||
|
|
||||||
let(:log) { build(:sales_log, :completed) } |
|
||||||
|
|
||||||
let(:page_id) { "example" } |
|
||||||
let(:page_definition) { nil } |
|
||||||
let(:subsection) { instance_double(Form::Subsection, depends_on: nil, enabled?: true, form:) } |
|
||||||
let(:start_date_after_2024) { false } |
|
||||||
let(:form) { instance_double(Form, start_date: Time.zone.local(2023, 4, 1), start_year_2024_or_later?: start_date_after_2024, depends_on_met: true) } |
|
||||||
let(:joint_purchase) { false } |
|
||||||
|
|
||||||
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[soctenant]) |
|
||||||
end |
|
||||||
|
|
||||||
it "has the correct id" do |
|
||||||
expect(page.id).to eq("example") |
|
||||||
end |
|
||||||
|
|
||||||
it "has the correct description" do |
|
||||||
expect(page.description).to be_nil |
|
||||||
end |
|
||||||
|
|
||||||
context "when sales is a joint purchase" do |
|
||||||
let(:joint_purchase) { true } |
|
||||||
|
|
||||||
it "has the correct depends on" do |
|
||||||
expect(page.depends_on).to eq([{ "joint_purchase?" => true, "soctenant_is_inferred?" => false }]) |
|
||||||
end |
|
||||||
end |
|
||||||
|
|
||||||
context "when sales is not a joint purchase" do |
|
||||||
it "has the correct depends on" do |
|
||||||
expect(page.depends_on).to eq([{ "joint_purchase?" => false, "soctenant_is_inferred?" => false }]) |
|
||||||
end |
|
||||||
end |
|
||||||
|
|
||||||
context "with 23/24 log" do |
|
||||||
let(:start_date_after_2024) { false } |
|
||||||
|
|
||||||
it "has correct routed to" do |
|
||||||
log.staircase = 1 |
|
||||||
expect(page.routed_to?(log, nil)).to be(true) |
|
||||||
end |
|
||||||
end |
|
||||||
|
|
||||||
context "with 24/25 log" do |
|
||||||
let(:start_date_after_2024) { true } |
|
||||||
|
|
||||||
it "has correct routed to when staircase is yes" do |
|
||||||
log.staircase = 1 |
|
||||||
expect(page.routed_to?(log, nil)).to be(false) |
|
||||||
end |
|
||||||
|
|
||||||
it "has correct routed to when staircase is nil" do |
|
||||||
log.staircase = nil |
|
||||||
expect(page.routed_to?(log, nil)).to be(true) |
|
||||||
end |
|
||||||
|
|
||||||
it "has correct routed to when staircase is no" do |
|
||||||
log.staircase = 2 |
|
||||||
expect(page.routed_to?(log, nil)).to be(true) |
|
||||||
end |
|
||||||
|
|
||||||
it "has correct routed to when staircase is don't know" do |
|
||||||
log.staircase = 3 |
|
||||||
expect(page.routed_to?(log, nil)).to be(true) |
|
||||||
end |
|
||||||
end |
|
||||||
end |
|
||||||
@ -1,68 +0,0 @@ |
|||||||
require "rails_helper" |
|
||||||
|
|
||||||
RSpec.describe Form::Sales::Questions::BuyerPrevious, type: :model do |
|
||||||
subject(:question) { described_class.new(question_id, question_definition, page, joint_purchase:) } |
|
||||||
|
|
||||||
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.local(2023, 4, 1)) } |
|
||||||
let(:joint_purchase) { true } |
|
||||||
|
|
||||||
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("soctenant") |
|
||||||
end |
|
||||||
|
|
||||||
it "has the correct type" do |
|
||||||
expect(question.type).to eq("radio") |
|
||||||
end |
|
||||||
|
|
||||||
it "has the correct displayed_answer_options" do |
|
||||||
expect(question.displayed_answer_options(nil)).to eq({ |
|
||||||
"1" => { "value" => "Yes" }, |
|
||||||
"2" => { "value" => "No" }, |
|
||||||
}) |
|
||||||
end |
|
||||||
|
|
||||||
it "has the correct answer_options" do |
|
||||||
expect(question.answer_options).to eq({ |
|
||||||
"1" => { "value" => "Yes" }, |
|
||||||
"2" => { "value" => "No" }, |
|
||||||
"0" => { "value" => "Don’t know" }, |
|
||||||
}) |
|
||||||
end |
|
||||||
|
|
||||||
it "has correct conditional for" do |
|
||||||
expect(question.conditional_for).to be_nil |
|
||||||
end |
|
||||||
|
|
||||||
context "when form year is before 2024" do |
|
||||||
before do |
|
||||||
allow(form).to receive(:start_year_2024_or_later?).and_return(false) |
|
||||||
end |
|
||||||
|
|
||||||
it "is not marked as derived" do |
|
||||||
expect(question.derived?(nil)).to be false |
|
||||||
end |
|
||||||
end |
|
||||||
|
|
||||||
context "when form year is >= 2024" do |
|
||||||
before do |
|
||||||
allow(form).to receive(:start_year_2024_or_later?).and_return(true) |
|
||||||
end |
|
||||||
|
|
||||||
it "is marked as derived" do |
|
||||||
expect(question.derived?(nil)).to be true |
|
||||||
end |
|
||||||
end |
|
||||||
end |
|
||||||
Loading…
Reference in new issue