Skip to content

Commit 41fca27

Browse files
committedMay 13, 2024·
feat(csv-issues-esm): issue 411 reproductible 2nd attempt
1 parent 6c5cb5e commit 41fca27

File tree

2 files changed

+39
-34
lines changed

2 files changed

+39
-34
lines changed
 

‎demo/issues-esm/lib/411.csv

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
id,amount,timestamp
2-
1,$33.60,05/26/2022
3-
2,$91.47,08/24/2022
4-
3,$88.70,06/15/2022
5-
4,$46.97,06/11/2022,faulty
6-
5,$93.78,05/05/2022
7-
6,$56.80,05/07/2022
8-
7,$3.54,05/12/2022
9-
8,$57.59,07/05/2022
10-
9,$76.49,05/02/2022
1+
id,first_name,last_name,email,modified_at
2+
1,Ring,Grinyov,rgrinyov0@weebly.com,2022-02-14
3+
2,Kylie,Lauderdale,klauderdale1@wsj.com,2022-02-14,
4+
3,Cammi,Bendix,cbendix2@tuttocitta.it,2022-02-14

‎demo/issues-esm/lib/411.js

+35-24
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,38 @@
1-
import assert from 'node:assert';
2-
import { createReadStream } from 'node:fs';
3-
import { Writable } from 'node:stream'
4-
import { finished } from 'node:stream/promises';
1+
import path from 'path';
2+
import { pipeline } from 'stream/promises';
3+
import { parse as parseCSV } from 'csv-parse';
4+
import { Writable } from 'stream';
5+
import { createReadStream } from 'fs';
56
import desm from "desm";
6-
import { parse } from 'csv-parse';
7-
87
const __dirname = desm(import.meta.url);
9-
const errors = []
108

11-
const parser = parse({
12-
bom: true,
13-
skipRecordsWithError: true,
14-
});
15-
// Create a stream and consume its source
16-
const sink = new Writable ({objectMode: true, write: (_, __, callback) => callback()})
17-
const outStream = createReadStream(`${__dirname}/411.csv`).pipe(parser).pipe(sink);
18-
// Catch records with errors
19-
parser.on('skip', (e) => {
20-
errors.push(e);
21-
});
22-
// Wait for stream to be consumed
23-
await finished(outStream);
24-
// Catch error from skip event
25-
assert.deepStrictEqual(errors.map(e => e.message), [
26-
'Invalid Record Length: expect 3, got 4 on line 5'
27-
])
9+
async function testRecordsSkip() {
10+
const errors = [];
11+
const records = [];
12+
13+
const sink = new Writable({
14+
objectMode: true,
15+
write: (_, __, callback) => {
16+
records.push(_);
17+
callback();
18+
},
19+
});
20+
21+
const csvSource = createReadStream(path.join(__dirname, '411.csv'));
22+
const parser = parseCSV({
23+
skip_records_with_error: true,
24+
bom: true,
25+
});
26+
parser.on('skip', function (err) {
27+
errors.push(err);
28+
});
29+
30+
await pipeline(csvSource, parser, sink);
31+
32+
console.log({
33+
records,
34+
errors,
35+
});
36+
}
37+
38+
testRecordsSkip().catch(console.error);

0 commit comments

Comments
 (0)
Please sign in to comment.