Browse Source
* feat: add buyer 2-1 relationship question and page (migration and schema to come in next commit) * feat: add buyer 2-1 migration and schema * feat: update schema * feat: add depends_on and tests * feat: add hint text * tests: add new tests * refactor: lint appeasingpull/921/head
natdeanlewissoftwire
2 years ago
committed by
GitHub
11 changed files with 204 additions and 2 deletions
@ -0,0 +1,19 @@
|
||||
class Form::Sales::Pages::Buyer2RelationshipToBuyer1 < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "buyer_2_relationship_to_buyer_1" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
@depends_on = [{ |
||||
"jointpur" => 1, |
||||
}] |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::Buyer2RelationshipToBuyer1.new(nil, nil, self), |
||||
Form::Sales::Questions::OtherBuyer2RelationshipToBuyer1.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,29 @@
|
||||
class Form::Sales::Questions::Buyer2RelationshipToBuyer1 < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "relat2" |
||||
@check_answer_label = "Buyer 2's relationship to buyer 1" |
||||
@header = "What is buyer 2's relationship to buyer 1?" |
||||
@type = "radio" |
||||
@hint_text = "" |
||||
@page = page |
||||
@answer_options = ANSWER_OPTIONS |
||||
@conditional_for = { |
||||
"otherrelat2" => %w[X], |
||||
} |
||||
@hidden_in_check_answers = { |
||||
"depends_on" => [ |
||||
{ |
||||
"relat2" => "X", |
||||
}, |
||||
], |
||||
} |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"P" => { "value" => "Parent" }, |
||||
"C" => { "value" => "Child", "hint" => "Must be eligible for child benefit, aged under 16 or under 20 if still in full-time education." }, |
||||
"X" => { "value" => "Other" }, |
||||
"R" => { "value" => "Buyer prefers not to say" }, |
||||
}.freeze |
||||
end |
@ -0,0 +1,10 @@
|
||||
class Form::Sales::Questions::OtherBuyer2RelationshipToBuyer1 < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "otherrelat2" |
||||
@check_answer_label = "Buyer 2's relationship to buyer 1" |
||||
@header = "Buyer 2's relationship to buyer 1" |
||||
@type = "text" |
||||
@page = page |
||||
end |
||||
end |
@ -0,0 +1,8 @@
|
||||
class AddBuyer2RelationshipToBuyer1Column < ActiveRecord::Migration[7.0] |
||||
def change |
||||
change_table :sales_logs, bulk: true do |t| |
||||
t.column :relat2, :string |
||||
t.column :otherrelat2, :string |
||||
end |
||||
end |
||||
end |
@ -0,0 +1,33 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::Buyer2RelationshipToBuyer1, 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) } |
||||
|
||||
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[relat2 otherrelat2]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("buyer_2_relationship_to_buyer_1") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(page.header).to eq("") |
||||
end |
||||
|
||||
it "has the correct description" do |
||||
expect(page.description).to eq("") |
||||
end |
||||
|
||||
it "has correct depends_on" do |
||||
expect(page.depends_on).to eq([{ "jointpur" => 1 }]) |
||||
end |
||||
end |
@ -0,0 +1,62 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::Buyer2RelationshipToBuyer1, 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) } |
||||
|
||||
it "has correct page" do |
||||
expect(question.page).to eq(page) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(question.id).to eq("relat2") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("What is buyer 2's relationship to buyer 1?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer 2's relationship to buyer 1") |
||||
end |
||||
|
||||
it "has the correct type" do |
||||
expect(question.type).to eq("radio") |
||||
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 eq("") |
||||
end |
||||
|
||||
it "has the correct answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"P" => { "value" => "Parent" }, |
||||
"C" => { "value" => "Child", "hint" => "Must be eligible for child benefit, aged under 16 or under 20 if still in full-time education." }, |
||||
"X" => { "value" => "Other" }, |
||||
"R" => { "value" => "Buyer prefers not to say" }, |
||||
}) |
||||
end |
||||
|
||||
it "has correct conditional for" do |
||||
expect(question.conditional_for).to eq({ |
||||
"otherrelat2" => %w[X], |
||||
}) |
||||
end |
||||
|
||||
it "has correct hidden in check answers" do |
||||
expect(question.hidden_in_check_answers).to eq({ |
||||
"depends_on" => [ |
||||
{ |
||||
"relat2" => "X", |
||||
}, |
||||
], |
||||
}) |
||||
end |
||||
end |
@ -0,0 +1,37 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::OtherBuyer2RelationshipToBuyer1, 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) } |
||||
|
||||
it "has correct page" do |
||||
expect(question.page).to eq(page) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(question.id).to eq("otherrelat2") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("Buyer 2's relationship to buyer 1") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer 2's relationship to buyer 1") |
||||
end |
||||
|
||||
it "has the correct type" do |
||||
expect(question.type).to eq("text") |
||||
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 |
||||
end |
Loading…
Reference in new issue