demarches-normaliennes/spec/models/champs/dossier_link_champ_spec.rb
simon lehericey 10a1ae5534
Revert "Merge pull request #10771 from tchak/refactor-champs-revert"
This reverts commit c902061ebf, reversing
changes made to b4ed11c788.
2024-09-19 11:09:01 +02:00

69 lines
1.6 KiB
Ruby

# frozen_string_literal: true
describe Champs::DossierLinkChamp, type: :model do
describe 'prefilling validations' do
describe 'value' do
subject { described_class.new(value:, dossier: build(:dossier)).valid?(:prefill) }
context 'when nil' do
let(:value) { nil }
it { expect(subject).to eq(true) }
end
context 'when empty' do
let(:value) { '' }
it { expect(subject).to eq(true) }
end
context 'when an integer' do
let(:value) { 42 }
it { expect(subject).to eq(true) }
end
context 'when a string representing an integer' do
let(:value) { "42" }
it { expect(subject).to eq(true) }
end
context 'when it can be casted as integer' do
let(:value) { 'totoro' }
it { expect(subject).to eq(false) }
end
end
end
describe 'validation' do
let(:champ) { Champs::DossierLinkChamp.new(value:, dossier: build(:dossier)) }
before do
allow(champ).to receive(:type_de_champ).and_return(build(:type_de_champ_dossier_link, mandatory:))
champ.run_callbacks(:validation)
end
subject { champ.validate(:champs_public_value) }
context 'when not mandatory' do
let(:mandatory) { false }
let(:value) { nil }
it { is_expected.to be_truthy }
end
context 'when mandatory' do
let(:mandatory) { true }
context 'when valid id' do
let(:value) { create(:dossier).id }
it { is_expected.to be_truthy }
end
context 'when invalid id' do
let(:value) { 'kthxbye' }
it { is_expected.to be_falsey }
end
end
end
end