demarches-normaliennes/spec/models/champs/mesri_champ_spec.rb
2024-08-22 09:26:48 +02:00

60 lines
1.3 KiB
Ruby

# frozen_string_literal: true
describe Champs::MesriChamp, type: :model do
let(:champ) { described_class.new }
describe 'INE' do
before do
champ.ine = '090601811AB'
end
it 'saves INE' do
expect(champ.ine).to eq('090601811AB')
end
end
describe 'external_id' do
context 'when no data is given' do
before do
champ.ine = ''
champ.save
end
it { expect(champ.external_id).to be_nil }
end
context 'when all data required for an external fetch are given' do
before do
champ.ine = '090601811AB'
champ.save
end
it { expect(JSON.parse(champ.external_id)).to eq("ine" => "090601811AB") }
end
end
describe '#validate' do
let(:procedure) { create(:procedure, types_de_champ_public: [{ type: :mesri, stable_id: 99 }]) }
let(:dossier) { create(:dossier, procedure:) }
let(:champ) { described_class.new(dossier:, stable_id: 99) }
let(:validation_context) { :create }
subject { champ.valid?(validation_context) }
before do
champ.ine = ine
end
context 'when INE is valid' do
let(:ine) { '090601811AB' }
it { is_expected.to be true }
end
context 'when INE is nil' do
let(:ine) { nil }
it { is_expected.to be true }
end
end
end