105 changed files with 3743 additions and 884 deletions
@ -0,0 +1,5 @@
|
||||
module DerivedVariables::SalesLogVariables |
||||
def set_derived_fields! |
||||
self.ethnic = 17 if ethnic_refused? |
||||
end |
||||
end |
@ -0,0 +1,19 @@
|
||||
class Form::Sales::Pages::Age2 < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "buyer_2_age" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
@depends_on = [{ |
||||
"jointpur" => 1, |
||||
}] |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::Buyer2AgeKnown.new(nil, nil, self), |
||||
Form::Sales::Questions::Age2.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,15 @@
|
||||
class Form::Sales::Pages::BuildingType < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "builtype" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::BuildingType.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,18 @@
|
||||
class Form::Sales::Pages::Buyer1EthnicBackgroundArab < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "buyer_1_ethnic_background_arab" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
@depends_on = [{ |
||||
"ethnic_group" => 4, |
||||
}] |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::Buyer1EthnicBackgroundArab.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,18 @@
|
||||
class Form::Sales::Pages::Buyer1EthnicBackgroundAsian < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "buyer_1_ethnic_background_asian" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
@depends_on = [{ |
||||
"ethnic_group" => 2, |
||||
}] |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::Buyer1EthnicBackgroundAsian.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,18 @@
|
||||
class Form::Sales::Pages::Buyer1EthnicBackgroundBlack < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "buyer_1_ethnic_background_black" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
@depends_on = [{ |
||||
"ethnic_group" => 3, |
||||
}] |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::Buyer1EthnicBackgroundBlack.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,18 @@
|
||||
class Form::Sales::Pages::Buyer1EthnicBackgroundMixed < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "buyer_1_ethnic_background_mixed" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
@depends_on = [{ |
||||
"ethnic_group" => 1, |
||||
}] |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::Buyer1EthnicBackgroundMixed.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,18 @@
|
||||
class Form::Sales::Pages::Buyer1EthnicBackgroundWhite < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "buyer_1_ethnic_background_white" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
@depends_on = [{ |
||||
"ethnic_group" => 0, |
||||
}] |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::Buyer1EthnicBackgroundWhite.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,15 @@
|
||||
class Form::Sales::Pages::Buyer1EthnicGroup < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "buyer_1_ethnic_group" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::Buyer1EthnicGroup.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -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,15 @@
|
||||
class Form::Sales::Pages::BuyerCompany < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "buyer_company" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::BuyerCompany.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,15 @@
|
||||
class Form::Sales::Pages::BuyerInterview < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "buyer_interview" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::BuyerInterview.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,18 @@
|
||||
class Form::Sales::Pages::GenderIdentity2 < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "buyer_2_gender_identity" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
@depends_on = [{ |
||||
"jointpur" => 1, |
||||
}] |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::GenderIdentity2.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,15 @@
|
||||
class Form::Sales::Pages::PropertyUnitType < ::Form::Page |
||||
def initialize(id, hsh, subsection) |
||||
super |
||||
@id = "property_unit_type" |
||||
@header = "" |
||||
@description = "" |
||||
@subsection = subsection |
||||
end |
||||
|
||||
def questions |
||||
@questions ||= [ |
||||
Form::Sales::Questions::PropertyUnitType.new(nil, nil, self), |
||||
] |
||||
end |
||||
end |
@ -0,0 +1,11 @@
|
||||
class Form::Sales::Questions::Age2 < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "age2" |
||||
@check_answer_label = "Buyer 2’s age" |
||||
@header = "Age" |
||||
@type = "numeric" |
||||
@page = page |
||||
@width = 2 |
||||
end |
||||
end |
@ -0,0 +1,17 @@
|
||||
class Form::Sales::Questions::BuildingType < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "builtype" |
||||
@check_answer_label = "Type of building" |
||||
@header = "What type of building is the property?" |
||||
@type = "radio" |
||||
@answer_options = ANSWER_OPTIONS |
||||
@page = page |
||||
@hint_text = "" |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"1" => { "value" => "Purpose built" }, |
||||
"2" => { "value" => "Converted from previous residential or non-residential property" }, |
||||
}.freeze |
||||
end |
@ -0,0 +1,17 @@
|
||||
class Form::Sales::Questions::Buyer1EthnicBackgroundArab < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "ethnic" |
||||
@check_answer_label = "Buyer 1’s ethnic background" |
||||
@header = "Which of the following best describes the buyer 1’s Arab background?" |
||||
@type = "radio" |
||||
@answer_options = ANSWER_OPTIONS |
||||
@page = page |
||||
@hint_text = "Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest." |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"19" => { "value" => "Arab" }, |
||||
"16" => { "value" => "Other ethnic group" }, |
||||
}.freeze |
||||
end |
@ -0,0 +1,20 @@
|
||||
class Form::Sales::Questions::Buyer1EthnicBackgroundAsian < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "ethnic" |
||||
@check_answer_label = "Buyer 1’s ethnic background" |
||||
@header = "Which of the following best describes the buyer 1’s Asian or Asian British background?" |
||||
@type = "radio" |
||||
@answer_options = ANSWER_OPTIONS |
||||
@page = page |
||||
@hint_text = "Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest." |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"10" => { "value" => "Bangladeshi" }, |
||||
"15" => { "value" => "Chinese" }, |
||||
"8" => { "value" => "Indian" }, |
||||
"9" => { "value" => "Pakistani" }, |
||||
"11" => { "value" => "Any other Asian or Asian British background" }, |
||||
}.freeze |
||||
end |
@ -0,0 +1,18 @@
|
||||
class Form::Sales::Questions::Buyer1EthnicBackgroundBlack < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "ethnic" |
||||
@check_answer_label = "Buyer 1’s ethnic background" |
||||
@header = "Which of the following best describes the buyer 1’s Black, African, Caribbean or Black British background?" |
||||
@type = "radio" |
||||
@answer_options = ANSWER_OPTIONS |
||||
@page = page |
||||
@hint_text = "Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest." |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"13" => { "value" => "African" }, |
||||
"12" => { "value" => "Caribbean" }, |
||||
"14" => { "value" => "Any other Black, African or Caribbean background" }, |
||||
}.freeze |
||||
end |
@ -0,0 +1,19 @@
|
||||
class Form::Sales::Questions::Buyer1EthnicBackgroundMixed < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "ethnic" |
||||
@check_answer_label = "Buyer 1’s ethnic background" |
||||
@header = "Which of the following best describes the buyer 1’s Mixed or Multiple ethnic groups background?" |
||||
@type = "radio" |
||||
@answer_options = ANSWER_OPTIONS |
||||
@page = page |
||||
@hint_text = "Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest." |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"4" => { "value" => "White and Black Caribbean" }, |
||||
"5" => { "value" => "White and Black African" }, |
||||
"6" => { "value" => "White and Asian" }, |
||||
"7" => { "value" => "Any other Mixed or Multiple ethnic background" }, |
||||
}.freeze |
||||
end |
@ -0,0 +1,19 @@
|
||||
class Form::Sales::Questions::Buyer1EthnicBackgroundWhite < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "ethnic" |
||||
@check_answer_label = "Buyer 1’s ethnic background" |
||||
@header = "Which of the following best describes the buyer 1’s White background?" |
||||
@type = "radio" |
||||
@answer_options = ANSWER_OPTIONS |
||||
@page = page |
||||
@hint_text = "Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest." |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"1" => { "value" => "English, Welsh, Northern Irish, Scottish or British" }, |
||||
"2" => { "value" => "Irish" }, |
||||
"18" => { "value" => "Gypsy or Irish Traveller" }, |
||||
"3" => { "value" => "Any other White background" }, |
||||
}.freeze |
||||
end |
@ -0,0 +1,28 @@
|
||||
class Form::Sales::Questions::Buyer1EthnicGroup < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "ethnic_group" |
||||
@check_answer_label = "Buyer 1’s ethnic group" |
||||
@header = "What is buyer 1’s ethnic group?" |
||||
@type = "radio" |
||||
@answer_options = ANSWER_OPTIONS |
||||
@page = page |
||||
@hint_text = "Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest." |
||||
@inferred_check_answers_value = { |
||||
"condition" => { |
||||
"ethnic_group" => 17, |
||||
}, |
||||
"value" => "Prefers not to say", |
||||
} |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"0" => { "value" => "White" }, |
||||
"1" => { "value" => "Mixed or Multiple ethnic groups" }, |
||||
"2" => { "value" => "Asian or Asian British" }, |
||||
"3" => { "value" => "Black, African, Caribbean or Black British" }, |
||||
"4" => { "value" => "Arab or other ethnic group" }, |
||||
"divider" => { "value" => true }, |
||||
"17" => { "value" => "Buyer 1 prefers not to say" }, |
||||
}.freeze |
||||
end |
@ -0,0 +1,19 @@
|
||||
class Form::Sales::Questions::Buyer2AgeKnown < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "age2_known" |
||||
@check_answer_label = "Buyer 2’s age" |
||||
@header = "Do you know buyer 2’s age?" |
||||
@type = "radio" |
||||
@answer_options = ANSWER_OPTIONS |
||||
@page = page |
||||
@conditional_for = { |
||||
"age2" => [0], |
||||
} |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"0" => { "value" => "Yes" }, |
||||
"1" => { "value" => "No" }, |
||||
}.freeze |
||||
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,17 @@
|
||||
class Form::Sales::Questions::BuyerCompany < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "companybuy" |
||||
@check_answer_label = "Company buyer" |
||||
@header = "Is the buyer a company?" |
||||
@hint_text = "" |
||||
@type = "radio" |
||||
@answer_options = ANSWER_OPTIONS |
||||
@page = page |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"1" => { "value" => "Yes" }, |
||||
"2" => { "value" => "No" }, |
||||
}.freeze |
||||
end |
@ -0,0 +1,17 @@
|
||||
class Form::Sales::Questions::BuyerInterview < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "noint" |
||||
@check_answer_label = "Buyer interviewed in person?" |
||||
@header = "Was the buyer interviewed for any of the answers you will provide on this log?" |
||||
@type = "radio" |
||||
@hint_text = "You should still try to answer all questions even if the buyer wasn't interviewed in person" |
||||
@page = page |
||||
@answer_options = ANSWER_OPTIONS |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"1" => { "value" => "No" }, |
||||
"2" => { "value" => "Yes" }, |
||||
}.freeze |
||||
end |
@ -0,0 +1,18 @@
|
||||
class Form::Sales::Questions::GenderIdentity2 < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "sex2" |
||||
@check_answer_label = "Buyer 2’s gender identity" |
||||
@header = "Which of these best describes buyer 2’s gender identity?" |
||||
@type = "radio" |
||||
@page = page |
||||
@answer_options = ANSWER_OPTIONS |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"F" => { "value" => "Female" }, |
||||
"M" => { "value" => "Male" }, |
||||
"X" => { "value" => "Non-binary" }, |
||||
"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,19 @@
|
||||
class Form::Sales::Questions::PropertyUnitType < ::Form::Question |
||||
def initialize(id, hsh, page) |
||||
super |
||||
@id = "proptype" |
||||
@check_answer_label = "Type of unit" |
||||
@header = "What type of unit is the property?" |
||||
@type = "radio" |
||||
@answer_options = ANSWER_OPTIONS |
||||
@page = page |
||||
end |
||||
|
||||
ANSWER_OPTIONS = { |
||||
"1" => { "value" => "Flat or maisonette" }, |
||||
"2" => { "value" => "Bedsit" }, |
||||
"3" => { "value" => "House" }, |
||||
"4" => { "value" => "Bungalow" }, |
||||
"9" => { "value" => "Other" }, |
||||
}.freeze |
||||
end |
@ -0,0 +1,35 @@
|
||||
<% content_for :before_content do %> |
||||
<%= govuk_back_link( |
||||
text: "Back", |
||||
href: "/schemes/#{@scheme.id}/locations", |
||||
) %> |
||||
<% end %> |
||||
|
||||
<%= form_for(@location, method: :patch, url: location_path(location_id: @location.id, add_another_location: params[:add_another_location])) do |f| %> |
||||
<div class="govuk-grid-row"> |
||||
<div class="govuk-grid-column-two-thirds"> |
||||
<%= f.govuk_error_summary %> |
||||
|
||||
<%= render partial: "organisations/headings", locals: { main: "What is the local authority of #{@location.postcode}?", sub: @scheme.service_name } %> |
||||
|
||||
<% la_list = FormHandler.instance.current_lettings_form.get_question("la", nil).answer_options.values %> |
||||
|
||||
<% las = la_list.map { |la| OpenStruct.new(name: la) } %> |
||||
|
||||
<%= f.govuk_collection_select :location_admin_district, |
||||
las, |
||||
:name, |
||||
:name, |
||||
label: { hidden: true }, |
||||
"data-controller": %w[conditional-filter accessible-autocomplete] %> |
||||
|
||||
<%= f.hidden_field :page, value: "edit-local-authority" %> |
||||
|
||||
<div class="govuk-button-group"> |
||||
<%= f.govuk_submit "Save and continue" %> |
||||
|
||||
<%= govuk_link_to "Skip for now", "/schemes/#{@scheme.id}/check-answers#locations" %> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
<% end %> |
@ -0,0 +1,6 @@
|
||||
class AddBackgroundToSalesLog < ActiveRecord::Migration[7.0] |
||||
change_table :sales_logs, bulk: true do |t| |
||||
t.column :ethnic, :integer |
||||
t.column :ethnic_group, :integer |
||||
end |
||||
end |
@ -0,0 +1,5 @@
|
||||
class AddBuildingTypeToSalesLog < ActiveRecord::Migration[7.0] |
||||
def change |
||||
add_column :sales_logs, :builtype, :integer |
||||
end |
||||
end |
@ -0,0 +1,5 @@
|
||||
class AddPropTypeToSalesLog < ActiveRecord::Migration[7.0] |
||||
def change |
||||
add_column :sales_logs, :proptype, :integer |
||||
end |
||||
end |
@ -0,0 +1,8 @@
|
||||
class AddBuyer2AgeToSalesLog < ActiveRecord::Migration[7.0] |
||||
def change |
||||
change_table :sales_logs, bulk: true do |t| |
||||
t.column :age2, :integer |
||||
t.column :age2_known, :integer |
||||
end |
||||
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,5 @@
|
||||
class AddBuyer2SexToSalesLog < ActiveRecord::Migration[7.0] |
||||
def change |
||||
add_column :sales_logs, :sex2, :string |
||||
end |
||||
end |
@ -0,0 +1,7 @@
|
||||
class AddNointToSalesLog < ActiveRecord::Migration[7.0] |
||||
def change |
||||
change_table :sales_logs, bulk: true do |t| |
||||
t.column :noint, :int |
||||
end |
||||
end |
||||
end |
File diff suppressed because it is too large
Load Diff
@ -1,55 +1,57 @@
|
||||
{ |
||||
"form_type": "lettings", |
||||
"start_date": "2022-04-01T00:00:00.000+01:00", |
||||
"end_date": "2023-07-01T00:00:00.000+01:00", |
||||
"sections": { |
||||
"household": { |
||||
"label": "About the household", |
||||
"subsections": { |
||||
"household_characteristics": { |
||||
"label": "Household characteristics", |
||||
"pages": { |
||||
"tenant_code_test": { |
||||
"questions": { |
||||
"tenancycode": { |
||||
"check_answer_label": "Tenant code", |
||||
"header": "Different question header text for this year - 2023", |
||||
"type": "text", |
||||
"width": 10 |
||||
} |
||||
"form_type": "lettings", |
||||
"start_date": "2022-04-01T00:00:00.000+01:00", |
||||
"end_date": "2023-07-01T00:00:00.000+01:00", |
||||
"sections": { |
||||
"household": { |
||||
"label": "About the household", |
||||
"subsections": { |
||||
"household_characteristics": { |
||||
"label": "Household characteristics", |
||||
"pages": { |
||||
"tenant_code_test": { |
||||
"questions": { |
||||
"tenancycode": { |
||||
"check_answer_label": "Tenant code", |
||||
"header": "Different question header text for this year - 2023", |
||||
"type": "text", |
||||
"width": 10 |
||||
} |
||||
}, |
||||
"outstanding_amount_known": { |
||||
"header": "", |
||||
"description": "", |
||||
"questions": { |
||||
"tshortfall_known": { |
||||
"check_answer_label": "", |
||||
"header": "", |
||||
"hint_text": "", |
||||
"hidden_in_check_answers": true, |
||||
"type": "radio", |
||||
"derived": true, |
||||
"answer_options": { |
||||
"0": { |
||||
"value": "Yes" |
||||
}, |
||||
"1": { |
||||
"value": "No" |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
"depends_on": [false] |
||||
} |
||||
}, |
||||
"depends_on": [ |
||||
{ |
||||
"setup": "completed" |
||||
} |
||||
] |
||||
} |
||||
"outstanding_amount_known": { |
||||
"header": "", |
||||
"description": "", |
||||
"questions": { |
||||
"tshortfall_known": { |
||||
"check_answer_label": "", |
||||
"header": "", |
||||
"hint_text": "", |
||||
"hidden_in_check_answers": true, |
||||
"type": "radio", |
||||
"derived": true, |
||||
"answer_options": { |
||||
"0": { |
||||
"value": "Yes" |
||||
}, |
||||
"1": { |
||||
"value": "No" |
||||
} |
||||
} |
||||
} |
||||
}, |
||||
"depends_on": [ |
||||
false |
||||
] |
||||
} |
||||
}, |
||||
"depends_on": [ |
||||
{ |
||||
"setup": "completed" |
||||
} |
||||
] |
||||
} |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
@ -0,0 +1,35 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::Age2, 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[age2_known age2]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("buyer_2_age") |
||||
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,29 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::BuildingType, 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[builtype]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("builtype") |
||||
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 |
||||
end |
@ -0,0 +1,33 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::Buyer1EthnicBackgroundArab, 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[ethnic]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("buyer_1_ethnic_background_arab") |
||||
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([{ "ethnic_group" => 4 }]) |
||||
end |
||||
end |
@ -0,0 +1,33 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::Buyer1EthnicBackgroundAsian, 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[ethnic]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("buyer_1_ethnic_background_asian") |
||||
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([{ "ethnic_group" => 2 }]) |
||||
end |
||||
end |
@ -0,0 +1,33 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::Buyer1EthnicBackgroundBlack, 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[ethnic]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("buyer_1_ethnic_background_black") |
||||
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([{ "ethnic_group" => 3 }]) |
||||
end |
||||
end |
@ -0,0 +1,33 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::Buyer1EthnicBackgroundMixed, 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[ethnic]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("buyer_1_ethnic_background_mixed") |
||||
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([{ "ethnic_group" => 1 }]) |
||||
end |
||||
end |
@ -0,0 +1,29 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::Buyer1EthnicBackgroundWhite, 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[ethnic]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("buyer_1_ethnic_background_white") |
||||
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 |
||||
end |
@ -0,0 +1,33 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::Buyer1EthnicGroup, 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[ethnic_group]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("buyer_1_ethnic_group") |
||||
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 be_nil |
||||
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,29 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::BuyerCompany, 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[companybuy]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("buyer_company") |
||||
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 |
||||
end |
@ -0,0 +1,29 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::BuyerInterview, 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[noint]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("buyer_interview") |
||||
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 |
||||
end |
@ -0,0 +1,35 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::GenderIdentity2, 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[sex2]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("buyer_2_gender_identity") |
||||
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,29 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Pages::PropertyUnitType, 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[proptype]) |
||||
end |
||||
|
||||
it "has the correct id" do |
||||
expect(page.id).to eq("property_unit_type") |
||||
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 |
||||
end |
@ -0,0 +1,41 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::Age2, 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("age2") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("Age") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer 2’s age") |
||||
end |
||||
|
||||
it "has the correct type" do |
||||
expect(question.type).to eq("numeric") |
||||
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 the correct width" do |
||||
expect(question.width).to eq(2) |
||||
end |
||||
end |
@ -0,0 +1,44 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::BuildingType, 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("builtype") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("What type of building is the property?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Type of building") |
||||
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_text" do |
||||
expect(question.hint_text).to eq("") |
||||
end |
||||
|
||||
it "has the correct answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"1" => { "value" => "Purpose built" }, |
||||
"2" => { "value" => "Converted from previous residential or non-residential property" }, |
||||
}) |
||||
end |
||||
end |
@ -0,0 +1,44 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::Buyer1EthnicBackgroundArab, 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("ethnic") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("Which of the following best describes the buyer 1’s Arab background?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer 1’s ethnic background") |
||||
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_text" do |
||||
expect(question.hint_text).to eq("Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest.") |
||||
end |
||||
|
||||
it "has the correct answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"16" => { "value" => "Other ethnic group" }, |
||||
"19" => { "value" => "Arab" }, |
||||
}) |
||||
end |
||||
end |
@ -0,0 +1,47 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::Buyer1EthnicBackgroundAsian, 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("ethnic") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("Which of the following best describes the buyer 1’s Asian or Asian British background?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer 1’s ethnic background") |
||||
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_text" do |
||||
expect(question.hint_text).to eq("Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest.") |
||||
end |
||||
|
||||
it "has the correct answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"10" => { "value" => "Bangladeshi" }, |
||||
"11" => { "value" => "Any other Asian or Asian British background" }, |
||||
"15" => { "value" => "Chinese" }, |
||||
"8" => { "value" => "Indian" }, |
||||
"9" => { "value" => "Pakistani" }, |
||||
}) |
||||
end |
||||
end |
@ -0,0 +1,45 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::Buyer1EthnicBackgroundBlack, 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("ethnic") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("Which of the following best describes the buyer 1’s Black, African, Caribbean or Black British background?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer 1’s ethnic background") |
||||
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_text" do |
||||
expect(question.hint_text).to eq("Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest.") |
||||
end |
||||
|
||||
it "has the correct answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"12" => { "value" => "Caribbean" }, |
||||
"13" => { "value" => "African" }, |
||||
"14" => { "value" => "Any other Black, African or Caribbean background" }, |
||||
}) |
||||
end |
||||
end |
@ -0,0 +1,46 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::Buyer1EthnicBackgroundMixed, 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("ethnic") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("Which of the following best describes the buyer 1’s Mixed or Multiple ethnic groups background?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer 1’s ethnic background") |
||||
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_text" do |
||||
expect(question.hint_text).to eq("Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest.") |
||||
end |
||||
|
||||
it "has the correct answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"4" => { "value" => "White and Black Caribbean" }, |
||||
"5" => { "value" => "White and Black African" }, |
||||
"6" => { "value" => "White and Asian" }, |
||||
"7" => { "value" => "Any other Mixed or Multiple ethnic background" }, |
||||
}) |
||||
end |
||||
end |
@ -0,0 +1,46 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::Buyer1EthnicBackgroundWhite, 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("ethnic") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("Which of the following best describes the buyer 1’s White background?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer 1’s ethnic background") |
||||
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_text" do |
||||
expect(question.hint_text).to eq("Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest.") |
||||
end |
||||
|
||||
it "has the correct answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"1" => { "value" => "English, Welsh, Northern Irish, Scottish or British" }, |
||||
"18" => { "value" => "Gypsy or Irish Traveller" }, |
||||
"2" => { "value" => "Irish" }, |
||||
"3" => { "value" => "Any other White background" }, |
||||
}) |
||||
end |
||||
end |
@ -0,0 +1,49 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::Buyer1EthnicGroup, 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("ethnic_group") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("What is buyer 1’s ethnic group?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer 1’s ethnic group") |
||||
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_text" do |
||||
expect(question.hint_text).to eq("Buyer 1 is the person in the household who does the most paid work. If it’s a joint purchase and the buyers do the same amount of paid work, buyer 1 is whoever is the oldest.") |
||||
end |
||||
|
||||
it "has the correct answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"0" => { "value" => "White" }, |
||||
"1" => { "value" => "Mixed or Multiple ethnic groups" }, |
||||
"17" => { "value" => "Buyer 1 prefers not to say" }, |
||||
"2" => { "value" => "Asian or Asian British" }, |
||||
"3" => { "value" => "Black, African, Caribbean or Black British" }, |
||||
"4" => { "value" => "Arab or other ethnic group" }, |
||||
"divider" => { "value" => true }, |
||||
}) |
||||
end |
||||
end |
@ -0,0 +1,46 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::Buyer2AgeKnown, 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("age2_known") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("Do you know buyer 2’s age?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer 2’s age") |
||||
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 answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"0" => { "value" => "Yes" }, |
||||
"1" => { "value" => "No" }, |
||||
}) |
||||
end |
||||
|
||||
it "has correct conditional for" do |
||||
expect(question.conditional_for).to eq({ |
||||
"age2" => [0], |
||||
}) |
||||
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,40 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::BuyerCompany, 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("companybuy") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("Is the buyer a company?") |
||||
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_text" do |
||||
expect(question.hint_text).to eq("") |
||||
end |
||||
|
||||
it "has the correct answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"1" => { "value" => "Yes" }, |
||||
"2" => { "value" => "No" }, |
||||
}) |
||||
end |
||||
end |
@ -0,0 +1,44 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::BuyerInterview, 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("noint") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("Was the buyer interviewed for any of the answers you will provide on this log?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer interviewed in person?") |
||||
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("You should still try to answer all questions even if the buyer wasn't interviewed in person") |
||||
end |
||||
|
||||
it "has the correct answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"1" => { "value" => "No" }, |
||||
"2" => { "value" => "Yes" }, |
||||
}) |
||||
end |
||||
end |
@ -0,0 +1,42 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::GenderIdentity2, 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("sex2") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("Which of these best describes buyer 2’s gender identity?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Buyer 2’s gender identity") |
||||
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 answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"F" => { "value" => "Female" }, |
||||
"M" => { "value" => "Male" }, |
||||
"X" => { "value" => "Non-binary" }, |
||||
"R" => { "value" => "Buyer prefers not to say" }, |
||||
}) |
||||
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 |
@ -0,0 +1,43 @@
|
||||
require "rails_helper" |
||||
|
||||
RSpec.describe Form::Sales::Questions::PropertyUnitType, 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("proptype") |
||||
end |
||||
|
||||
it "has the correct header" do |
||||
expect(question.header).to eq("What type of unit is the property?") |
||||
end |
||||
|
||||
it "has the correct check_answer_label" do |
||||
expect(question.check_answer_label).to eq("Type of unit") |
||||
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 answer_options" do |
||||
expect(question.answer_options).to eq({ |
||||
"1" => { "value" => "Flat or maisonette" }, |
||||
"2" => { "value" => "Bedsit" }, |
||||
"3" => { "value" => "House" }, |
||||
"4" => { "value" => "Bungalow" }, |
||||
"9" => { "value" => "Other" }, |
||||
}) |
||||
end |
||||
end |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue