csv-writer
Version:
Convert objects/arrays into a CSV string or write them into a CSV file
98 lines (76 loc) • 3.85 kB
text/typescript
import {resolveDelimiterChar} from './helper/delimiter';
import {createFieldStringifier} from '../lib/field-stringifier';
import {strictEqual} from 'assert';
describe('DefaultFieldStringifier', () => {
describe('When field delimiter is comma', generateTestCases(','));
describe('When field delimiter is semicolon', generateTestCases(';'));
describe('When all fields needs to be quoted', () => {
const stringifier = createFieldStringifier(',', true);
it('quotes a field', () => {
strictEqual(stringifier.stringify('VALUE'), '"VALUE"');
});
it('does not quote a field of value undefined', () => {
strictEqual(stringifier.stringify(), '');
});
it('does not quote a field of value null', () => {
strictEqual(stringifier.stringify(null), '');
});
it('does not quote a field of value empty string', () => {
strictEqual(stringifier.stringify(''), '');
});
});
function generateTestCases(fieldDelimiter: string) {
const delim = resolveDelimiterChar(fieldDelimiter);
return () => {
const stringifier = createFieldStringifier(fieldDelimiter);
it('returns the same string', () => {
strictEqual(stringifier.stringify('VALUE'), 'VALUE');
});
it('preserves the whitespace characters', () => {
strictEqual(stringifier.stringify(' VALUE\tA '), ' VALUE\tA ');
});
it(`wraps a field value with double quotes if the field contains "${delim}"`, () => {
strictEqual(stringifier.stringify(`VALUE${delim}A`), `"VALUE${delim}A"`);
});
it('wraps a field value with double quotes if the field contains newline', () => {
strictEqual(stringifier.stringify('VALUE\nA'), '"VALUE\nA"');
});
it('wraps a field value with double quotes and escape the double quotes if they are used in the field', () => {
strictEqual(stringifier.stringify('VALUE"A'), '"VALUE""A"');
});
it('escapes double quotes even if double quotes are only on the both edges of the field', () => {
strictEqual(stringifier.stringify('"VALUE"'), '"""VALUE"""');
});
it('converts a number into a string', () => {
strictEqual(stringifier.stringify(1), '1');
});
it('converts undefined into an empty string', () => {
strictEqual(stringifier.stringify(), '');
});
it('converts null into an empty string', () => {
strictEqual(stringifier.stringify(null), '');
});
it('converts an object into toString-ed value', () => {
const obj = {
name: 'OBJECT_NAME',
toString: function () { return `Name: ${this.name}`; }
};
strictEqual(stringifier.stringify(obj), 'Name: OBJECT_NAME');
});
it(`wraps a toString-ed field value with double quote if the value contains "${delim}"`, () => {
const obj = {
name: `OBJECT${delim}NAME`,
toString: function () { return `Name: ${this.name}`; }
};
strictEqual(stringifier.stringify(obj), `"Name: OBJECT${delim}NAME"`);
});
it('escapes double quotes in a toString-ed field value if the value has double quotes', () => {
const obj = {
name: 'OBJECT_NAME"',
toString: function () { return `Name: ${this.name}`; }
};
strictEqual(stringifier.stringify(obj), '"Name: OBJECT_NAME"""');
});
};
}
});