You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.7 KiB
59 lines
1.7 KiB
require "rails_helper" |
|
require_relative "../request_helper" |
|
|
|
RSpec.describe SoftValidationsController, type: :request do |
|
let(:params) { { case_log_id: case_log.id } } |
|
let(:url) { "/logs/#{case_log.id}/net-income/soft-validations" } |
|
let(:user) { FactoryBot.create(:user) } |
|
|
|
before do |
|
RequestHelper.stub_http_requests |
|
end |
|
|
|
context "a not signed in user" do |
|
let(:case_log) { FactoryBot.create(:case_log, :in_progress) } |
|
|
|
describe "GET #show" do |
|
it "redirects to the sign in page" do |
|
get url, headers: headers, params: {} |
|
expect(response).to redirect_to("/users/sign-in") |
|
end |
|
end |
|
end |
|
|
|
context "a signed in user" do |
|
before do |
|
sign_in user |
|
get url, params: {} |
|
end |
|
|
|
describe "GET #show" do |
|
context "Soft validation overide required" do |
|
let(:case_log) { FactoryBot.create(:case_log, :soft_validations_triggered) } |
|
|
|
it "returns a success response" do |
|
expect(response).to be_successful |
|
end |
|
|
|
it "returns a json with the soft validation fields" do |
|
json_response = JSON.parse(response.body) |
|
expect(json_response["show"]).to eq(true) |
|
expect(json_response["label"]).to match(/Are you sure this is correct?/) |
|
end |
|
end |
|
|
|
context "Soft validation overide not required" do |
|
let(:case_log) { FactoryBot.create(:case_log, :in_progress) } |
|
|
|
it "returns a success response" do |
|
expect(response).to be_successful |
|
end |
|
|
|
it "returns a json with the soft validation fields" do |
|
json_response = JSON.parse(response.body) |
|
expect(json_response["show"]).to eq(false) |
|
end |
|
end |
|
end |
|
end |
|
end
|
|
|