fix(data): decimal number having spaces are no more exportable
This commit is contained in:
parent
476c7df160
commit
cfda807b66
3 changed files with 65 additions and 3 deletions
20
app/tasks/maintenance/fix_decimal_number_with_spaces_task.rb
Normal file
20
app/tasks/maintenance/fix_decimal_number_with_spaces_task.rb
Normal file
|
@ -0,0 +1,20 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
module Maintenance
|
||||
class FixDecimalNumberWithSpacesTask < MaintenanceTasks::Task
|
||||
ANY_SPACES = /[[:space:]]/
|
||||
def collection
|
||||
Champs::DecimalNumberChamp.where.not(value: nil)
|
||||
end
|
||||
|
||||
def process(element)
|
||||
if element.value.present? && ANY_SPACES.match?(element.value)
|
||||
element.update_column(:value, element.value.gsub(ANY_SPACES, ''))
|
||||
end
|
||||
end
|
||||
|
||||
def count
|
||||
# not really interested in counting because it raises PG Statement timeout
|
||||
end
|
||||
end
|
||||
end
|
|
@ -57,15 +57,15 @@ describe Champs::DecimalNumberChamp do
|
|||
subject { champ.for_export }
|
||||
context 'with nil' do
|
||||
let(:value) { 0 }
|
||||
it { is_expected.to be_nil }
|
||||
it { is_expected.to eq(0.0) }
|
||||
end
|
||||
context 'with simple number' do
|
||||
let(:value) { "120" }
|
||||
it { is_expected.to eq(120) }
|
||||
end
|
||||
context 'with nuber with space' do
|
||||
context 'with number having spaces' do
|
||||
let(:value) { " 120 " }
|
||||
it { is_expected.to eq(120) }
|
||||
it { is_expected.to be_nil }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -0,0 +1,42 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require "rails_helper"
|
||||
|
||||
module Maintenance
|
||||
RSpec.describe FixDecimalNumberWithSpacesTask do
|
||||
describe "#process" do
|
||||
subject(:process) { described_class.process(element) }
|
||||
let(:champ) { create(:champ_decimal_number, value:) }
|
||||
let(:element) { champ }
|
||||
|
||||
context 'with nil' do
|
||||
let(:value) { 0 }
|
||||
it { expect { process }.not_to change { champ.reload.valid_value } }
|
||||
end
|
||||
context 'with simple number' do
|
||||
let(:value) { "120" }
|
||||
it { expect { process }.not_to change { champ.reload.valid_value } }
|
||||
end
|
||||
context 'with number having leading spaces' do
|
||||
let(:value) { " 120" }
|
||||
it { expect { process }.to change { champ.reload.valid_value }.from(nil).to("120") }
|
||||
end
|
||||
context 'with number having trailing spaces' do
|
||||
let(:value) { "120 " }
|
||||
it { expect { process }.to change { champ.reload.valid_value }.from(nil).to("120") }
|
||||
end
|
||||
context 'with number having leading and trailing spaces' do
|
||||
let(:value) { " 120 " }
|
||||
it { expect { process }.to change { champ.reload.valid_value }.from(nil).to("120") }
|
||||
end
|
||||
context 'with number having in between spaces' do
|
||||
let(:value) { "1 2 0" }
|
||||
it { expect { process }.to change { champ.reload.valid_value }.from(nil).to("120") }
|
||||
end
|
||||
context 'with number having in between tab' do
|
||||
let(:value) { "\t120\t" }
|
||||
it { expect { process }.to change { champ.reload.valid_value }.from(nil).to("120") }
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue