This method is ambiguous. Sometimes we use it to set invalid data in tests (which can usually be done with `update_column`), and other times we use it instead of `update!`. I'm removing it because, even if sometimes it could make sense to use it, it's too similar to `update_attributes` (which is an alias for `update` and runs validations), making it confusing. However, there's one case where we're still using it: in the ActsAsParanoidAliases module, we need to invoke the callbacks, which `update_column` skips, but tests related to translations fail if we use `update!`. The reason for this is the tests check what happens if we restore a record without restoring its translations. But that will make the record invalid, since there's a validation rule checking it has at least one translation. I'm not blacklisting any other method which skips validations because we know they skip validations and use them anyway (hopefully with care).
59 lines
2.1 KiB
Ruby
59 lines
2.1 KiB
Ruby
require "rails_helper"
|
|
|
|
describe Legislation::AnswersController do
|
|
describe "POST create" do
|
|
let(:legal_process) do
|
|
create(:legislation_process, debate_start_date: Date.current - 3.days,
|
|
debate_end_date: Date.current + 2.days)
|
|
end
|
|
let(:question) { create(:legislation_question, process: legal_process, title: "Question 1") }
|
|
let(:question_option) { create(:legislation_question_option, question: question, value: "Yes") }
|
|
let(:user) { create(:user, :level_two) }
|
|
|
|
it "creates an ahoy event" do
|
|
sign_in user
|
|
|
|
post :create, params: {
|
|
process_id: legal_process.id,
|
|
question_id: question.id,
|
|
legislation_answer: {
|
|
legislation_question_option_id: question_option.id
|
|
}
|
|
}
|
|
expect(Ahoy::Event.where(name: :legislation_answer_created).count).to eq 1
|
|
expect(Ahoy::Event.last.properties["legislation_answer_id"]).to eq Legislation::Answer.last.id
|
|
end
|
|
|
|
it "creates an answer if the process debate phase is open" do
|
|
sign_in user
|
|
|
|
expect do
|
|
post :create, xhr: true,
|
|
params: {
|
|
process_id: legal_process.id,
|
|
question_id: question.id,
|
|
legislation_answer: {
|
|
legislation_question_option_id: question_option.id
|
|
}
|
|
}
|
|
end.to change { question.reload.answers_count }.by(1)
|
|
end
|
|
|
|
it "does not create an answer if the process debate phase is not open" do
|
|
sign_in user
|
|
legal_process.update!(debate_end_date: Date.current - 1.day)
|
|
|
|
expect do
|
|
post :create, xhr: true,
|
|
params: {
|
|
process_id: legal_process.id,
|
|
question_id: question.id,
|
|
legislation_answer: {
|
|
legislation_question_option_id: question_option.id
|
|
}
|
|
}
|
|
end.not_to change { question.reload.answers_count }
|
|
end
|
|
end
|
|
end
|