Skip to content

Commit 61805c8

Browse files
tracyloiselpcreux
authored andcommitted
Fix issue with invisible chars (#107)
1 parent 97ec554 commit 61805c8

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

lib/csv_importer/header.rb

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ class Header
99

1010
def columns
1111
column_names.map do |column_name|
12+
# ensure column name escapes invisible characters
13+
column_name = column_name.gsub(/[^[:print:]]/, '')
14+
1215
Column.new(
1316
name: column_name,
1417
definition: find_column_definition(column_name)

spec/csv_importer_spec.rb

+13
Original file line numberDiff line numberDiff line change
@@ -425,6 +425,19 @@ class ImportUserCSVByFirstName
425425
expect { import.run! }.to_not raise_error
426426
end
427427

428+
it "supports invisible characters" do
429+
csv_content = "Email,Confirmed,First name,last_name
430+
[email protected] , true, bob ,,"
431+
432+
# insert invisible characters
433+
csv_content.insert(-1, "\u{FEFF}")
434+
435+
csv_io = StringIO.new(csv_content)
436+
import = ImportUserCSV.new(file: csv_io)
437+
438+
expect { import.run! }.to_not raise_error
439+
end
440+
428441
it "imports from a path" do
429442
import = ImportUserCSV.new(path: "spec/fixtures/valid_csv.csv")
430443

0 commit comments

Comments
 (0)