Merge pull request #2914 from betagouv/fix_2913_filter

ProcedurePresentation: rescue big int as a datetime value
This commit is contained in:
Frederic Merizen 2018-10-26 15:02:59 +02:00 committed by GitHub
commit 16a018d137
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 3 deletions

View file

@ -111,7 +111,7 @@ class ProcedurePresentation < ApplicationRecord
column = sanitized_column(filter)
case table
when 'self'
date = Time.zone.parse(filter['value'])
date = Time.zone.parse(filter['value']) rescue nil
if date.present?
dossiers.where("#{column} BETWEEN ? AND ?", date, date + 1.day)
else

View file

@ -406,9 +406,17 @@ describe ProcedurePresentation do
end
context 'for a malformed date' do
context 'when its a string' do
let(:filter) { [{ 'table' => 'self', 'column' => 'updated_at', 'value' => 'malformed date' }] }
it { is_expected.to match([]) }
end
context 'when its a number' do
let(:filter) { [{ 'table' => 'self', 'column' => 'updated_at', 'value' => '177500' }] }
it { is_expected.to match([]) }
end
end
end
context 'for type_de_champ table' do